Skip to content

Instantly share code, notes, and snippets.

@rogerwalt
Created November 4, 2013 10:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rogerwalt/7300568 to your computer and use it in GitHub Desktop.
Save rogerwalt/7300568 to your computer and use it in GitHub Desktop.
Windows PowerShell: Create Profile and add Alias to Notepad++ to it.
# create profile
New-Item -path $profile -type file -force
# open it with notepad
notepad $profile
# add alias to notepad++ to it
Set-Alias npp "C:\Program Files (x86)\Notepad++\notepad++.exe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment