Skip to content

Instantly share code, notes, and snippets.

View pblanton's full-sized avatar
💭
All your base, ba, er, um... you know the thing.

Phillip H. Blanton pblanton

💭
All your base, ba, er, um... you know the thing.
View GitHub Profile
@mac2000
mac2000 / webstorm.cmd
Last active September 1, 2020 18:46 — forked from amnuts/phpstorm.bat
Open with WebStorm context menu
@ECHO OFF
REM Remove registry if any
REG DELETE "HKEY_CLASSES_ROOT\Directory\shell\WebStorm" /f
REM Get WebStorm executable path
FOR /F "usebackq tokens=3*" %%A IN (`REG QUERY "HKEY_CLASSES_ROOT\Applications\WebStorm.exe\shell\open\command"`) DO (
SET WEBSTORM=%%A %%B
)