How do I add "Open with Pycharm" in my right click menu of windows.

Answered

I tried to add in regedit,

Computer\HKEY_CLASSES_ROOT\Directory\Background\shell\Pycharm in this I added default value as "Open with Pycharm" and Icon value as "D:\PyCharm Community Edition 2020.2.3\bin\pycharm64.exe" also in Computer\HKEY_CLASSES_ROOT\Directory\Background\shell\Pycharm\command  added default value as "D:\PyCharm Community Edition 2020.2.3\bin\pycharm64.exe" "%V" and did same things in Computer\HKEY_CLASSES_ROOT\Directory\shell folder. but nothing worked. Help me.

1
3 comments

Try this one https://intellij-support.jetbrains.com/hc/en-us/community/posts/207063935/comments/360000219520

You can also reinstall PyCharm and enable that option during installation.

0
Avatar
Permanently deleted user

I suggest you to download this open source software to add the right click management you want (just download the software directly, the software provides other languages than Chinese)
https://github.com/BluePointLilac/ContextMenuManager

If you want to be more powerful you can search for this <RightMenuMgr>

0

I created a `.reg` file with the following content.
And it worked!


 

Windows Registry Editor Version 5.00
;Adiciona PyCharm no menu de Contexto do Windows 11
;https://intellij-support.jetbrains.com/hc/en-us/community/posts/360010800999-How-do-I-add-Open-with-Pycharm-in-my-right-click-menu-of-windows
;Michel Metran
;Março de 2024

[HKEY_CLASSES_ROOT\Directory\background\shell\Pycharm]
"Icon"="\"C:\\Users\\michel\\AppData\\Local\\Programs\\PyCharm Professional\\bin\\pycharm64.exe\""
@="Open with PyCharm"

[HKEY_CLASSES_ROOT\Directory\background\shell\Pycharm\command]
@="\"C:\\Users\\michel\\AppData\\Local\\Programs\\PyCharm Professional\\bin\\pycharm64.exe\" \".\""
0

Please sign in to leave a comment.