Windows使用Jetbrains Toolbox安装的IDE文件夹右键菜单没有打开项目菜单的解决方案
Windows新装机使用JetBrains ToolBox全新安装了IDE全家桶,结果发现,右键菜单里面没有打开菜单。这个还是非常有用的功能,没有还是很不方便的。
从官网单独下载安装程序,安装程序里面是有此选项的,但是,JetBrains ToolBox因为是全自动安装,所以,默认就给叉掉了。
解决方案
要解决这个问题,只有自己修改注册表了,以下给出各个IDE的注册表,直接保存为.reg
后缀的文本文件即可,但是要注意,文本文件必须是GBK或者GB2312文本编码,否则会乱码。
需要把下面注册表脚本里面的
{USER}
替换成你的Windows账号名。如果安装路径有所不同,也请灵活修改。
GoLand
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\GoLang]
@="使用 GoLang 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\GoLand\\bin\\goland64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\GoLang\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\GoLand\\bin\\goland64.exe\" \"%v\""
WebStorm
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\WebStorm]
@="使用 WebStorm 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\WebStorm\\bin\\webstorm64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\WebStorm\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\WebStorm\\bin\\webstorm64.exe\" \"%v\""
Rider
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Rider]
@="使用 Rider 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\Rider\\bin\\rider64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Rider\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\Rider\\bin\\rider64.exe\" \"%v\""
IDEA
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\IntelliJ IDEA Ultimate]
@="使用 IntelliJ IDEA Ultimate 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\IntelliJ IDEA Ultimate\\bin\\idea64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\IntelliJ IDEA Ultimate\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\IntelliJ IDEA Ultimate\\bin\\idea64.exe\" \"%v\""
CLion
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\CLion]
@="使用 CLion 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\CLion\\bin\\clion64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\CLion\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\CLion\\bin\\clion64.exe\" \"%v\""
PyCharm
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\PyCharm Professional]
@="使用 PyCharm 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\PyCharm Professional\\bin\\pycharm64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\PyCharm Professional\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\PyCharm Professional\\bin\\pycharm64.exe\" \"%v\""
Android Studio
reg
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Android Studio]
@="使用 Android Studio 打开"
"Icon"="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\Android Studio\\bin\\studio64.exe\""
[HKEY_CLASSES_ROOT\Directory\Background\shell\Android Studio\command]
@="\"C:\\Users\\{USER}\\AppData\\Local\\Programs\\Android Studio\\bin\\studio64.exe\" \"%v\""