Win10系統(tǒng)可以通過(guò)SHIFT+右鍵的方式呼出右鍵菜單中的Powershell控制臺(tái)選項(xiàng),但是對(duì)于經(jīng)常需要操作的用戶來(lái)說(shuō)不免有些麻煩,下面小編分享的方法是不需要按Shift右鍵就可以的,下面一起來(lái)看看。
; 若原先有,先刪除原來(lái)的
[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
[-HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin]
;1.右鍵:命令行
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere]
@="在此處打開(kāi)命令行窗口"
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
@="cmd.exe -noexit -command Set-Location -literalPath \"%V\""
;2.右鍵:命令行(管理員)
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
@="在此處打開(kāi)命令行窗口(管理員)"
"ShowBasedOnVelocityId"=dword:00639bc8
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command]
@="cmd.exe /s /k pushd \"%V\""
;3.shift+右鍵:Powershell(管理員)
[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin]
@="在此處打開(kāi) Powershell 窗口(管理員)"
"Extended"=""
[HKEY_CLASSES_ROOT\Directory\Background\shell\PowershellAdmin\command]
@="\"C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe\" -windowstyle hidden -Command $stpath = pwd; Start-Process PowerShell -ArgumentList \\\"-NoExit\\\", \\\"-Command Set-Location -literalPath '%V'\\\" -verb RunAs"
;4.設(shè)置右鍵 管理員打開(kāi)cmd的另一種方法(可用來(lái)替換上面的2)
通過(guò)Powershell調(diào)起,會(huì)閃過(guò)一次Powershell的窗口,去掉下面幾行的[; ]可以取消注釋
[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin]
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin]
@="在此處打開(kāi)命令行窗口(管理員)"
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin\command]
@="PowerShell -windowstyle hidden -Command \"Start-Process cmd.exe -ArgumentList '/s,/k, pushd,%V' -Verb RunAs\""