Windows10如何添加自定义右键菜单呢?例如我想把VS Code放到右键菜单,实现右键单文件,可以使用vscode打开,右键文件夹,可以使用vscode打开,右键背景空白处,可以使用vscode打开。
Step 1 新建空白文件vscode.reg
在里面粘贴
代码语言:javascript复制Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT*shellVSCode]
@="Open with Code"
"Icon"="D:\Program\Microsoft VS Code\Code.exe"
[HKEY_CLASSES_ROOT*shellVSCodecommand]
@=""D:\Program\Microsoft VS Code\Code.exe" "%1""
[HKEY_CLASSES_ROOTDirectoryshellVSCode]
@="Open with Code"
"Icon"="D:\Program\Microsoft VS Code\Code.exe"
[HKEY_CLASSES_ROOTDirectoryshellVSCodecommand]
@=""D:\Program\Microsoft VS Code\Code.exe" "%V""
[HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCode]
@="Open with Code"
"Icon"="D:\Program\Microsoft VS Code\Code.exe"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellVSCodecommand]
@=""D:\Program\Microsoft VS Code\Code.exe" "%V""
参考链接1:
Step 2 替换文件位置
确认你的文件位置,并修改。
D:ABC.exe要变成D:\A\B\C.exe
Step 3 保存并双击打开
如题
题外话
如果修改其他程序也是一样的,不过除了要记得修改程序的路径之外,别忘了修改注册表的路径名称。 例如我们添加Sublime Text 3, 也可以把菜单名字稍微变化一下方便识别。
代码语言:javascript复制Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT*shellSublimeText3]
@="Edit with Sublime Text 3"
"Icon"="D:\Program\Sublime Text 3\sublime_text.exe"
[HKEY_CLASSES_ROOT*shellSublimeText3command]
@=""D:\Program\Sublime Text 3\sublime_text.exe" "%1""
[HKEY_CLASSES_ROOTDirectoryshellSublimeText3]
@="Edit with Sublime Text 3"
"Icon"="D:\Program\Sublime Text 3\sublime_text.exe"
[HKEY_CLASSES_ROOTDirectoryshellSublimeText3command]
@=""D:\Program\Sublime Text 3\sublime_text.exe" "%V""
[HKEY_CLASSES_ROOTDirectoryBackgroundshellSublimeText3]
@="Edit with Sublime Text 3"
"Icon"="D:\Program\Sublime Text 3\sublime_text.exe"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellSublimeText3command]
@=""D:\Program\Sublime Text 3\sublime_text.exe" "%V""