Skip to content

Instantly share code, notes, and snippets.

@leveled
Last active May 2, 2023 15:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leveled/003acc8f3ef5f0aec39da2b3c2a4925e to your computer and use it in GitHub Desktop.
Save leveled/003acc8f3ef5f0aec39da2b3c2a4925e to your computer and use it in GitHub Desktop.
Powershell Cheatsheet
#Create Powershell Profile
New-Item -Path $profile -ItemType File -Force
#Installing Vim movement
Get-Module PSReadLine -ListAvailable
Install-Module PSReadLine -Scope CurrentUser
Set-PSReadLineOption -EditMode Vi
notepad $profile
#Referencing environment variables
$env:PROGRAMDATA
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment