Is there a way to change PowerShell\'s default location?
How do you set PowerShell\'s default working directory?
Putting Set-Location into your profile will unconditionally change the current working directory, which might have unwanted consequences in regards to the working directory for scripts that you execute via "run with PowerShell".
An alternative solution is to change the working directory for the .lnk
files to PowerShell usually found in %USERPROFILE%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Windows PowerShell
. Right click on a link, and change the working directory from %HOMEDRIVE%%HOMEPATH%
to the directory you want.