Win10系统右键添加Powershell和命令提示符方法

更新日期:2024-06-04 10:53

来源:互联网

提升Win10系统操作效率的技巧

Win10系统右键添加Powershell和命令提示符方法

在Win10系统中,我们经常需要使用Powershell控制台来进行操作,但是通过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. 另一种方法:通过Powershell调起管理员模式的cmd:

在注册表中添加以下内容:

```

[-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选项,提升操作效率,让你的工作更加便捷。