Skip to content

Instantly share code, notes, and snippets.

@hellsan631
Forked from nztim/OpenWithSublimeText3.bat
Last active January 8, 2018 08:05
Show Gist options
  • Save hellsan631/2f0f529d85fb34ebb327 to your computer and use it in GitHub Desktop.
Save hellsan631/2f0f529d85fb34ebb327 to your computer and use it in GitHub Desktop.
@echo off
SET st2Path=C:\Program Files\Sublime Text 3\sublime_text.exe
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%st2Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%st2Path% \"%%1\"" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /t REG_SZ /v "" /d "Open with Sublime Text" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text" /t REG_EXPAND_SZ /v "Icon" /d "%st2Path%,0" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text\command" /t REG_SZ /v "" /d "%st2Path% \"%%1\"" /f
pause
@Neo-Desktop
Copy link

++!!

@Qiuzhuang
Copy link

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment