Win10系统右键添加Powershell和命令提示符方法
更新日期:2024-08-29 14:44
来源:互联网
在Win10系统中,我们经常需要使用Powershell控制台进行操作,但通过SHIFT+右键呼出右键菜单中的Powershell选项有些麻烦。下面我将分享一种不需要按Shift右键就可以调出Powershell选项的方法。
我们需要删除原来的注册表项,包括[-HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHere]、[-HKEY_CLASSES_ROOTDirectoryBackgroundshell unas]、[-HKEY_CLASSES_ROOTDirectoryBackgroundshellPowershellAdmin]。
接下来,我们按照以下步骤进行设置:
1. 右键:命令行
```
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHere]
@=“在此处打开命令行窗口”
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHerecommand]
@=“cmd.exe /k pushd ”%V“”
```
2. 右键:命令行(管理员)
```
[HKEY_CLASSES_ROOTDirectoryBackgroundshell unas]
@=“在此处打开命令行窗口(管理员)”
“ShowBasedOnVelocityId”=dword:00639bc8
[HKEY_CLASSES_ROOTDirectoryBackgroundshell unascommand]
@=“cmd.exe /s /k pushd ”%V“”
```
3. SHIFT+右键:Powershell(管理员)
```
[HKEY_CLASSES_ROOTDirectoryBackgroundshellPowershellAdmin]
@=“在此处打开Powershell窗口(管理员)”
“Extended”=“”
[HKEY_CLASSES_ROOTDirectoryBackgroundshellPowershellAdmincommand]
@=“”C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe“ -NoExit -Command Set-Location -literalPath ‘%V’ -verb RunAs”
```
4. 另一种方法:右键管理员打开cmd
```
[-HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHereAdmin]
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHereAdmin]
@=“在此处打开命令行窗口(管理员)”
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHereAdmincommand]
@=“PowerShell -windowstyle hidden -Command ”Start-Process cmd.exe -ArgumentList ‘/s,/k,pushd,%V’ -Verb RunAs“”
```
通过以上设置,我们可以更快捷地在Win10系统中调出Powershell控制台选项,提高操作效率。希望这些方法能帮助您更便捷地进行系统操作。