Windows使用Jetbrains Toolbox安装的IDE文件夹右键菜单没有打开项目菜单的解决方案

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\""

参考资料

相关推荐
新智元11 天前
CS 博士求职 8 个月 0 offer,绝望转行!斯坦福入学停滞,全美仅增 0.2%
人工智能·openai·jetbrains
界面开发小八哥13 天前
JetBrains IDE v2025.1 升级,AI 智能+语言支持齐飞
ide·人工智能·pycharm·go·jetbrains
葱段18 天前
【Compose】Android Compose 监听TextField粘贴事件
android·kotlin·jetbrains
Jaising66622 天前
JetBrains AI 打零工(三)——Junie 常用交互模式分析
ai编程·intellij idea·jetbrains
Jaising66623 天前
JetBrains AI 打零工(二)——遗留系统维护第一步,重建 README
ai编程·jetbrains
龙智DevSecOps解决方案25 天前
游戏开发中的CI/CD优化案例:知名游戏公司Gearbox使用TeamCity简化CI/CD流程
ci/cd·游戏开发·jetbrains·teamcity
晓数2 个月前
“平价”微智码初尝试
人工智能·jetbrains
龙智DevSecOps解决方案2 个月前
CI/CD解决方案TeamCity在游戏开发中的应用价值与优势分析
ci/cd·游戏开发·jetbrains·持续集成·teamcity
晓数2 个月前
【硬核干货】JetBrains AI Assistant 干货笔记
人工智能·笔记·jetbrains·ai assistant
ForteScarlet3 个月前
Kotlin 中那些无法复现的 Java 写法
android·java·开发语言·kotlin·jetbrains