See [microsoft.com](https://learn.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_profiles?view=powershell-7.5) Some help setting up a powershell profile from Chatgpt: ```powershell echo $PROFILE # C:\Users\\Documents\PowerShell\Microsoft.PowerShell_profile.ps1 # To create if (!(Test-Path -Path $PROFILE)) { New-Item -ItemType File -Path $PROFILE -Force } # Then edit notepad $PROFILE # or whatever editor you use. ``` My clipboard shorthands ```powershell # Paste clipboard contents to standard output function pp { Get-Clipboard } # Copy standard input to clipboard function pc { param( [Parameter(ValueFromPipeline = $true)] $InputObject ) process { $InputObject | Set-Clipboard } } ```