其他分享
首页 > 其他分享> > 添加xxx到右键菜单

添加xxx到右键菜单

作者:互联网

1. 添加notepad++到右键菜单[1]

添加到 右键菜单

将以下内容保存为 OpenWithNotepad++.reg 文件,双击运行即可(其中可执行文件路径和菜单项名称请自行替换):

注: 下面代码需把路径改为自己的路径.
改完后删除 //改完请删掉此注释

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\NotePad++]
@="Edit with NotePad++"
"Icon"="C:\\Program Files\\Notepad++\\notepad++.exe"   //改完请删掉此注释

[HKEY_CLASSES_ROOT\*\shell\NotePad++\Command]
@="\"C:\\Program Files\\Notepad++\\notepad++.exe\" \"%1\""   //改完请删掉此注释

从右键菜单删除[2]

如果要删除右键菜单,也是一样的道理:

将以下内容保存为 removeNotepad++Menu.reg 文件

Windows Registry Editor Version 5.00

[-HKEY_CLASSES_ROOT\*\shell\NotePad++]

.reg 文件简要说明(registry)[3]

Windows Registry Editor Version 5.00
;说明文件以下内容使用Windows注册表编辑器5.00 的版本来读取
[HKEY_CLASSES_ROOT\*\shell\NotePad++]
;这个[]里面的内容是注册表可识别的目录,如不存在则新建
@="Edit with NotePad++"
;这个是显示在鼠标右键菜单栏上的内容(实际上是一个省略名称的键值对或者说变量,对应下图中的(默认),可以在注册表编辑器中新建)
"Icon"="C:\\Program Files\\Notepad++\\notepad++.exe"
;这个是点击右键菜单栏实际打开的程序(名为"Icon"的键值对,可以在注册表编辑器中新建)

[HKEY_CLASSES_ROOT\*\shell\NotePad++\Command]
@="\"C:\\Program Files\\Notepad++\\notepad++.exe\" \"%1\""
;windows 字符串中的字符"\"和"""需要用"\"来转义,"%1" 指的是鼠标选中的内容,如左键选中"helloWord.py",
;右键选择"Edit with Notepad++"时,"helloWord.py"将会作为参数值传递,"%1"指的就是"helloWord.py",
;实际上,%1应该会包含绝对路径,比如"C:\\helloWord.py"。

reg语法参考:

   http://blog.sina.com.cn/s/blog_4b0ca6b101000718.html

bat脚本注释参考
  https://blog.csdn.net/wh_19910525/article/details/8125762

2. 把 VS Code 添加到右键菜单打开文件和文件夹[4]

新建文本 把下面代码放进去 改名为 vsCodeOpenFolder.reg .

注: 下面代码需把路径改为自己的路径.
改完后删除 //改完请删掉此注释

一切改完,运行此文件即可.

Windows Registry Editor Version 5.00   
   
; Open files   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code]   
@="Edit with VS Code"   
"Icon"="D:\\LENOVOE\\Microsoft VS Code\\Code.exe",0"     //改完请删掉此注释
   
[HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command]   
@="\"D:\\LENOVOE\\Microsoft VS Code\\Code.exe\" \"%1\""    //改完请删掉此注释
   
; This will make it appear when you right click ON a folder   
; The "Icon" line can be removed if you don't want the icon to appear   
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode]   
@="Open Folder as VS Code Project"   
"Icon"="D:\\LENOVOE\\Microsoft VS Code\\Code.exe",0"     //改完请删掉此注释
   
[HKEY_CLASSES_ROOT\Directory\shell\vscode\command]   
@="\"D:\\LENOVOE\\Microsoft VS Code\\Code.exe\" \"%1\""    //改完请删掉此注释
   
   
; This will make it appear when you right click INSIDE a folder   
; The "Icon" line can be removed if you don't want the icon to appear   
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode]   
@="Open Folder as VS Code Project"   
"Icon"="D:\\LENOVOE\\Microsoft VS Code\\Code.exe",0"      //改完请删掉此注释
   
[HKEY_CLASSES_ROOT\Directory\Background\shell\vscode\command]   
@="\"D:\\LENOVOE\\Microsoft VS Code\\Code.exe\" \"%1\""    //改完请删掉此注释

  1. 手动添加注册表,不推荐!不过可以参考下图片。添加notepad++到右键菜单 - 简书 (jianshu.com) ↩︎

  2. 添加 Notepad++ 至右键菜单的几种方法-xiaoerbuyu1233的博客 (archive.org) ↩︎

  3. Notepad++ 添加到右键菜单栏 快速打开文件 - 有你~你是美好滴 - 博客园 (archive.org) ↩︎

  4. 把 VS Code 添加到右键菜单打开文件和文件夹 ( 其他程序一样 ) - 简书 (archive.org) ↩︎

标签:Code,改完,++,xxx,VS,菜单,右键,ROOT
来源: https://www.cnblogs.com/yafey/p/add-to-menu.html