Win10系统右键添加Powershell和命令提示符方法
优化Win10系统中右键菜单的方法
在Win10系统中,我们可以通过按下Shift键加右键来呼出右键菜单中的Powershell控制台选项。然而,对于经常需要进行操作的用户来说,这种方式可能有些麻烦。下面我将分享一种方法,可以让你不需要按下Shift键就能方便地使用Powershell控制台选项。
首先,我们需要删除原先可能存在的一些注册表项,包括[-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]
@="在此处打开命令行窗口"
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHere\command]
@="cmd.exe /noexit /command Set-Location -literalPath \"%V\""
```
2. 右键点击空白处:命令行(管理员)
```
[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]
@="在此处打开命令行窗口(管理员)"
"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]
@="在此处打开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. 另一种方法:设置右键管理员打开cmd(可替换第2步)
通过Powershell调用,会有一次Powershell窗口闪过。去掉下面几行的[;]可以取消注释。
```
[-HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin]
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin]
@="在此处打开命令行窗口(管理员)"
[HKEY_CLASSES_ROOT\Directory\Background\shell\OpenCmdHereAdmin\command]
@="PowerShell -windowstyle hidden -Command \"Start-Process cmd.exe -ArgumentList '/s,/k,pushd,%V' -Verb RunAs\""
```
通过以上设置,你可以更加方便地在Win10系统中使用命令行和Powershell控制台,而无需按下Shift键。希望这些步骤能够帮助你提高操作效率!