Skip to content

Instantly share code, notes, and snippets.

@djraw
Created December 21, 2021 18:08
Show Gist options
  • Save djraw/f6e87817319555d1e46b312beda849f9 to your computer and use it in GitHub Desktop.
Save djraw/f6e87817319555d1e46b312beda849f9 to your computer and use it in GitHub Desktop.
Batch to replace notepad.exe withh Notepad++Portable, run from exe location
@echo off
cd /d "%~dp0"
echo.
echo.
pause
cd /d "%~dp0"
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /d "\"%~dp0Notepad++Portable.exe\" -notepadStyleCmdline -z" /f
cls
echo.
echo.
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment