Win10添加右键在此处打开命令行
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Win10添加右键在此处打开命令行相关的知识,希望对你有一定的参考价值。
参考技术A通过添加注册表项,实现右击 “在此处打开命令行功能”
注册表位置:HKEY_CLASSES_ROOT\\Directory\\Background\\shell\\
win10系统用标识右键菜单打开命令行的键,键值639bc8(十六进制):
ShowBasedOnVelocityId(显示标识)
HideBasedOnVelocityId(隐藏标识)
效果
直接右键即可看到该选项,无需同时按住shift键。当然,按住右键也能显示,并且不影响右键打开powershell的功能。
一键自动导入设置。将以下内容保存成reg文件,如a.reg,双击该文件自动导入设置。
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\\Directory\\Background\\shell\\OpenCMDHere]
"ShowBasedOnVelocityId"=dword:00639bc8
[HKEY_CLASSES_ROOT\\Directory\\Background\\shell\\OpenCMDHere\\command]
@="cmd.exe /s /k pushd "%V""
1. 我们用regedit或者其他注册表编辑器定位到HKEY_CLASSES_ROOT\\Directory\\Background\\shell\\处,右击新建项“OpenCMDHere”,并在该项下,右击新建项“command”。
2.我们在右边OpenCMDHere项下,右击新建REG_DWORD类型整数值。设置键名为“ShowBasedOnVelocityId”,键值为“639bc8”。
3.进入command项下,设置键值为cmd.exe /s /k pushd "%V"
Win10在右键菜单添加“在此处打开命令窗口”设置项
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryshellOpenCmdHere]
@="在此处打开命令提示符"
"Icon"="cmd.exe"
[HKEY_CLASSES_ROOTDirectoryshellOpenCmdHerecommand]
@="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList ‘/s,/k, pushd,%V‘ -Verb RunAs""
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellOpenCmdHerecommand]
@="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList ‘/s,/k, pushd,%V‘ -Verb RunAs""
[HKEY_CLASSES_ROOTDriveshellOpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"
[HKEY_CLASSES_ROOTDriveshellOpenCmdHerecommand]
@="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList ‘/s,/k, pushd,%V‘ -Verb RunAs""
[HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHere]
@="在此处打开命令窗口"
"Icon"="cmd.exe"
[HKEY_CLASSES_ROOTLibraryFolderackgroundshellOpenCmdHerecommand]
@="PowerShell -windowstyle hidden -Command "Start-Process cmd.exe -ArgumentList ‘/s,/k, pushd,%V‘ -Verb RunAs""
复制到一个文本文件,另存为reg文件,双击打开reg,然后就可以出现在当前目录右键CMD的效果
以上是关于Win10添加右键在此处打开命令行的主要内容,如果未能解决你的问题,请参考以下文章