エクスプローラの右クリックメニューをカスタマイズするを参考に、下記の内容で.regファイル
を作成した。
- 任意のフォルダを右クリックした時のメニューを追加
- 何もないところを右クリックした時のメニューを追加
powershell_here.reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\powershell_here]
@="Open PowerShell Here"
[HKEY_CLASSES_ROOT\Directory\shell\powershell_here\command]
@="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%L'"
[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell_here]
@="Open PowerShell Here"
[HKEY_CLASSES_ROOT\Directory\Background\shell\powershell_here\command]
@="C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -NoExit -Command Set-Location -LiteralPath '%V'"