直接上码
比如把sublime添加到右键
代码如下:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\Shell\sublime_text]
[HKEY_CLASSES_ROOT\*\Shell\sublime_text\Command]
@="\"C:\\Sublime\\SublimeText3\\sublime_text.exe\" \"%1\""
先新建txt文件:
然后代码粘贴进去;
保存,文件修改后缀为reg
直接双击运行,即可。后续出现的提示全部同意。
代码解释:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT*\Shell\sublime_text] ======》名字修改为执行文件名字
[HKEY_CLASSES_ROOT*\Shell\sublime_text\Command] =====》名字修改为执行文件名字
@="“C:\Sublime\SublimeText3\sublime_text.exe” “%1"” ======》安装路径如果需要添加notepad++到右键,同样
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT*\Shell\notepad++]
[HKEY_CLASSES_ROOT*\Shell\notepad++\Command]
@="“notepad路径\notepad++.exe” “%1"”