Context menu (HKCR\*\shell\Open with Sublime Text)
Key Name
Type
Description
(Default)
REG_SZ
Label shown in the context menu
Icon
REG_SZ
Path to sublime_text.exe for the menu icon
command\(Default)
REG_SZ
"C:\...\sublime_text.exe" "%1"
📝 Notes
All user settings (key bindings, color schemes, packages) are in %APPDATA%\Sublime Text\Packages\User\, not the registry.
Sublime Text is a paid application but free to evaluate indefinitely (purchase removes the nag prompt). The registry structure is identical for licensed and unlicensed installs.
The portable version stores all settings in the Data\ folder alongside the executable and creates no registry entries.
Package Control (the third-party package manager) installs packages to %APPDATA%\Sublime Text\Packages\ — no registry involvement.
The context menu entry Open with Sublime Text is added to HKCR\*\shell (all file types) during installation.
🗑️ Cleanup
Remove-Item-Path"HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Sublime Text_is1"-Recurse-Force-ErrorActionSilentlyContinueRemove-Item-Path"HKCR:\sublime_auto_file"-Recurse-Force-ErrorActionSilentlyContinueRemove-Item-Path"HKCR:\*\shell\Open with Sublime Text"-Recurse-Force-ErrorActionSilentlyContinue