**
Windows 11 鼠标右键可选择 cmd 命令行选项
**
在文件夹内打开命令行,只能使用 Windows 自带的 PowerShell ,
作为一个 cmd 重度使用用户来说很是折磨,需要打开 cmd 然后切换盘符再 cd 。。。
现在咱们自己创建一个可以打开 cmd 的方法、不用摁着 shift 也可以的那种!!!
方法一:
1、将下列文本复制到文件,保存为 cmd.reg 格式:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\background\shell\cmd_here]
@="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]
@="cmd_here"
[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]
@="cmd_here"
"Icon"="cmd.exe"
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Directory\shell\cmd_here\command]
@="\"C:\\Windows\\System32\\cmd.exe\""
2、双击打开 cmd.reg ,就把内容导入到注册表内。
3、右键选择任意文件夹。鼠标右键:“cmd_here”,就打开了 CMD 命令。
方法二:
1、WIN + R 打开运行,输入:notepad 确定,打开记事本。
2、输入以下内容:并另存为 cmd.reg 文件(编码格式为:ANSI)
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\打开命令提示符\com
mand]
@="cmd.exe /s /k pushd \"%V\""
3、双击打开 cmd.reg ,就把内容导入到注册表内。
4、右键选择任意文件夹。鼠标右键:“打开命令提示符”,就打开了 CMD 命令。
方法三:
1、WIN + R 打开运行,输入:regedit 确定,打开注册表。
2、依次打开 [HKEY_CLASSES_ROOT\Directory\Background\shell
或者: [HKEY_CLASSES_ROOT\Folder\shell
或者:[HKEY_CLASSES_ROOT\DesktopBackground\shell
3、在 shell 下,新建项,并命名为:Open CMD Here
4、在 Open CMD Here 下新建项 command 并双击打开:
5、在“数值数据”处输入:cmd.exe /s /k pushd \"%V\" 确定