When you install PyCharm, they ask if you want to enable PyCharm context menu item but they don’t let you disable later if you don’t like it, so your only option is to uninstall and install it again. Not a convenient way, thankfully we can use the Registry method to accomplish this. Here’s how to do it:
- Right click “View raw” link at the bottom of the embedded file and click “Save link as”.
- Double click the saved file
remove.reg
. - (optional) You may get a UAC window, click Yes.
- You will get a dialog if you want to apply this file, click Yes again.
- Congrats, now you have successfully removed “Open with PyCharm” menu item.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\*\shell\Open with PyCharm] | |
[-HKEY_CLASSES_ROOT\*\shell\Open with PyCharm\command] |
If you want to restore this menu item, just do the same steps with the restore.reg
file below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\*\shell\Open with PyCharm] | |
"Icon"="C:\\Program Files\\JetBrains\\PyCharm 2020.1\\bin\\pycharm64.exe" | |
@="Edit with PyCharm" | |
[HKEY_CLASSES_ROOT\*\shell\Open with PyCharm\command] | |
@="\"C:\\Program Files\\JetBrains\\PyCharm 2020.1\\bin\\pycharm64.exe\" \"%1\"" |
Comments
Show comments this time only or Show comments for next 7 days