Skip to content

Instantly share code, notes, and snippets.

View WaLkZa's full-sized avatar

Simeon Nikolov WaLkZa

View GitHub Profile
@WaLkZa
WaLkZa / open_folder_in_PhpStorm_2020.bat
Created April 28, 2021 16:07 — forked from ibrahimhajjaj/open_folder_in_PhpStorm_2020.bat
windows add context open folder in PhpStorm 2020 on right click..
@echo off
SET PhpStormPath=C:\Program Files\JetBrains\PhpStorm 2020.3.3\bin\phpstorm64.exe
echo Adding file entries
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_SZ /v "" /d "Open in PhpStorm" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_EXPAND_SZ /v "Icon" /d "%PhpStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm\command" /t REG_SZ /v "" /d "%PhpStormPath% \"%%1\"" /f
echo Adding within a folder entries