Created
March 18, 2016 08:14
-
-
Save Kidde82/d082fb5834d852c40e46 to your computer and use it in GitHub Desktop.
Remove context menu to Windows 7 to open file/folder in WebStorm
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
| REM This is just rewritten from https://gist.github.com/amnuts/162f6b03c5f94692fd6c to fit Webstorm | |
| REM Related gist: https://gist.github.com/Kidde82/e12496a53517daee87ce | |
| @echo off | |
| echo Removing file entries | |
| @reg delete "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" | |
| echo Removing folder entries | |
| @reg add "HKEY_CLASSES_ROOT\Directory\shell\Open directory in WebStorm" | |
| pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment