Is there a way to change PowerShell\'s default location?
How do you set PowerShell\'s default working directory?
You could specify the directory to open when starting PowerShell:
powershell.exe -NoExit -command "& {Set-Location $env:systemroot}"
Just use it in your shortcut.
Or use a profile to set a start directory.