Skip to content

Instantly share code, notes, and snippets.

@yamamaya
Created September 9, 2019 10:04
Show Gist options
  • Save yamamaya/db7679d5cf4f1b0db5cd2450043d3729 to your computer and use it in GitHub Desktop.
Save yamamaya/db7679d5cf4f1b0db5cd2450043d3729 to your computer and use it in GitHub Desktop.
フォルダ右クリック+Shiftに「PowerShell(管理者)ウィンドウをここに開く」を追加する
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\runas]
"Extended"=""
"NoWorkingDirectory"=""
@="PowerShell(管理者)ウィンドウをここに開く(&A)"
[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
@="powershell.exe -noexit -command Set-Location -literalPath '%V'"
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
"Extended"=""
"NoWorkingDirectory"=""
@="PowerShell(管理者)ウィンドウをここに開く(&A)"
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command]
@="powershell.exe -noexit -command Set-Location -literalPath '%V'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment