WIN10下右键添加选项“CmdHere”

由于最近使用cmd比较多,就想在某个文件夹下右键打开cmd,这样就省事多了。win10默认可以“shift+右键”打开cmd,但只能打开powershell。于是就多方查找,自己整了一个。

首先是新建一个reg_cmdhere.reg文档,右键,用notepad++打开,输入

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\cmdhere]
@="Cmd&Here"
[HKEY_CLASSES_ROOT\*\shell\cmdhere\command]
@="\"C:\\Windows\\System32\\cmd.exe\" "
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere]
@="Cmd&Here"
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere\command]
@="\"C:\\Windows\\System32\\cmd.exe\""



[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\cmd_here] 
@="在此处打开命令行"
"Icon"="cmd.exe"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\cmd_here\command] 
@="\"C:\\Windows\\System32\\cmd.exe\"" 
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\cmdPrompt] 
@="在此处打开命令行" 
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Folder\shell\cmdPrompt\command] 
@="\"C:\\Windows\\System32\\cmd.exe\" \"cd %1\""
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cmd_here]
@="在此处打开命令行"
"Icon"="cmd.exe"
 
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cmd_here\command]
@="\"C:\\Windows\\System32\\cmd.exe\""

然后双击就注册好了。在文件夹中右键和选中一个文件右键,都有cmdhere选项了。

如果要撤销呢,怎么办,可以参考如下代码

Windows Registry Editor Version 5.00

[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cmd_here]
[-HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cmd_here\command]

你可能感兴趣的:(WIN10下右键添加选项“CmdHere”)