Skip to content

Instantly share code, notes, and snippets.

@lidopaglia
Created September 20, 2014 15:10
Show Gist options
  • Save lidopaglia/878f29118d0fdc3009b4 to your computer and use it in GitHub Desktop.
Save lidopaglia/878f29118d0fdc3009b4 to your computer and use it in GitHub Desktop.
Adds 'Open PowerShell window here' via ConEmu to the Windows Explorer context menu (shift+right click).
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\powershell]
@="Open PowerShell window here"
"Extended"=""
[HKEY_CLASSES_ROOT\Directory\shell\powershell\command]
@="\"C:\\Program Files\\ConEmu\\ConEmu64.exe\" /cmd powershell -noexit -command cd '%V'"
[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell]
@="Open PowerShell window here"
"Extended"=""
[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell\command]
@="\"C:\\Program Files\\ConEmu\\ConEmu64.exe\" /cmd powershell -noexit -command cd '%V'"
[HKEY_CLASSES_ROOT\Drive\shell\powershell]
@="Open PowerShell window here"
"Extended"=""
[HKEY_CLASSES_ROOT\Drive\shell\powershell\command]
@="\"C:\\Program Files\\ConEmu\\ConEmu64.exe\" /cmd powershell -noexit -command cd '%V'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment