enable "Open PowerShell window here" in right click context menu
06 Apr 2017In Windows 10 Anniversary Update and later Creators Update, if we press “shift” key and right click on desktop, drive, folder, folder blackground, we could see the menu “Open PowerShell window here”. It’s convenient for development. But how to reveal the menu?
After searching on the Internet for a while, I found the clear solution on TenForums and decided to note it down here.
In short:
- “Win + R”, run
regedit
to open Registry Editor. - Go to the locations respectively:
HKEY_CLASSES_ROOT\Directory\shell\Powershell HKEY_CLASSES_ROOT\Directory\Background\shell\Powershell HKEY_CLASSES_ROOT\Drive\shell\Powershell
For each key, right click the key on the left panel, “Permissions…”, “Advanced”, change the owner to “Admistrators”, then assign “Full Control” - “Allow” to “Admistrators”. Press “OK”.
- For each key, delete the “Extended” key on the right panel.
After doing these, right click without pressing “Shift” on desktop or blank space in folder in Explorer, we should see the desired “Open PowerShell window here”.
Bonus: Similarly, cmd
also have the similar keys. If we also want to show “Open command window here” with shift + right click, we just need to rename HideBasedOnVelocityId
to ShowBasedOnVelocityId
. If we want to show it without pressing shift key, delete “Extended” key as well.
Some other useful links: