修改注册表实现在文件夹中右键以管理员身份运行CMD

时间:2024-03-24 21:32:41

新建一个txt文档,将以下内容复制进去,然后将文档后缀名改为.reg,双击运行.reg文件。

(也可以直接下载我写好的文件

Windows Registry Editor Version 5.00

; Created by: Shawn Brink

; http://www.sevenforums.com

; Tutorial: http://www.sevenforums.com/tutorials/47415-open-command-window-here-administrator.html

[-HKEY_CLASSES_ROOT\Directory\shell\runas]

[HKEY_CLASSES_ROOT\Directory\shell\runas]

@="openCMD"             #名称随意,此三处最好一致

"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\shell\runas\command]

@="cmd.exe /s /k pushd \"%V\""

[-HKEY_CLASSES_ROOT\Directory\Background\shell\runas]

[HKEY_CLASSES_ROOT\Directory\Background\shell\runas]

@="openCMD"           #同上,此三处最好一致

"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Directory\Background\shell\runas\command]

@="cmd.exe /s /k pushd \"%V\""

[-HKEY_CLASSES_ROOT\Drive\shell\runas]

[HKEY_CLASSES_ROOT\Drive\shell\runas]

@="openCMD"           #同上,此三处最好一致

"HasLUAShield"=""

[HKEY_CLASSES_ROOT\Drive\shell\runas\command]

@="cmd.exe /s /k pushd \"%V\""

任意打开一个文件夹,单击右键,菜单中就有“以管理员身份运行”这一项了。

修改注册表实现在文件夹中右键以管理员身份运行CMD

修改注册表实现在文件夹中右键以管理员身份运行CMD