Notepad++ is a pretty useful editor for Windows - if you don’t know it - you may want to take a look at it here : notepad-plus-plus.org.
However, once you are used to notepad’s alternative, you may find that it annoying that it can be quite a challenge to make windows run your chosen editor in ALL Situations.
Here’s a possible Solution :
( Tested under Windows 7,8,8.1 x86 and x64 )
How to use
The Launcher functions by adding a registry key which causes Windows to intercept attempts to execute programs of a certain name.
In our case, we want to run our script whenever notepad.exe is about to be executed, so we can then run notepad++.exe instead.
INSTALL:
Install Notepad++ (portable or regular setup) onto a fixed,non-removable drive
Copy into the Folder containing the notepad++.exe and doubleclick ( with ADMINISTRATOR rights to write the registry )
( It probably makes sense to ensure sure nobody can replace or change this script, other than the Administrator )
UNINSTALL:
Doubleclick the script and let it remove the registry entry
Manual Uninstall:
Delete the registry key HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe
'// DISCLAIMER
'// THIS COMES WITH NO WARRANTY, IMPLIED OR OTHERWISE. USE AT YOUR OWN RISK
'// IF YOU ARE NOT COMFORTABLE EDITING THE REGISTRY THEN DO NOT USE THIS SCRIPT
'//
'// NOTES:
'// This affects all users.
'// This will execute for ANY notepad.exe being started on the computer,
'// but the script will try to only replace the 'standard' executables
'// This script also contains a workaround for the buggy HEX-EDITOR 0.9.5
'// Plugin, which crashes if .nfo files are opened.
'//
'// INSTALL:
'// Copy into the Folder containing the notepad++.exe and doubleclick
'// ( with ADMINISTRATOR rights)
'//
'// UNINSTALL:
'// Doubleclick
'//
'// Registry Key being modified
'// HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger
OptionExplicitDimsCmd,tCmd,x,sArgs,known_notepadDimWSSetWS=CreateObject("WScript.Shell")tCmd=LeftB(WScript.ScriptFullName,LenB(WScript.ScriptFullName)-LenB(WScript.ScriptName))&"notepad++.exe"sCmd=""""&tCmd&""""if(WScript.Arguments.Count>1)ThensArgs=" "&""""Forx=1ToWScript.Arguments.Count-1sArgs=sArgs&WScript.Arguments(x)if(x<WScript.Arguments.Count-1)thensArgs=sArgs&" "endifNextsArgs=sArgs&""""elsesArgs=""EndIf' Set known_notepad to 1 if the program called was in the original places. Add/change lines as needed.
known_notepad=0if(WScript.Arguments.Count>0)ThenIf(StrComp(WScript.Arguments(0),"C:\Windows\notepad.exe",vbTextCompare))Thenknown_notepad=1EndIfIf(StrComp(WScript.Arguments(0),"C:\Windows\System32\notepad.exe",vbTextCompare))Thenknown_notepad=1EndIfElse' If there are no Arguments, this script was double-clicked - so find out whether it should
' install or deinstall itself.
OnErrorResumeNext' Install (after asking for permission) if no registry entry exists , and notepad.exe exists
If(""=WS.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger"))ThenIf(CreateObject("Scripting.FileSystemObject").FileExists(tCmd))ThenIf(vbYES=MsgBox("Configure this script to replace notepad.exe ? ",vbYesNo))ThenWS.RegWrite"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger","wscript.exe "&WScript.ScriptFullName,"REG_SZ"MsgBox"Registry changed :"&vbNewLine&"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger"&vbNewLine&"to contain"&vbNewLine&WS.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger")ElseMsgBox"Nothing changed."EndIfElseMsgBox("File not found. "&sCmd&" Copy this script into the directory where notepad++.exe resides.")EndIfElse' Remove (after asking for permission) if the registry entry exists
If(vbYES=MsgBox("Remove the notepad.exe replacement ? ",vbYesNo))ThenWS.RegDelete"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger"MsgBox"Registry change failed :"&vbNewLine&"HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger"&vbNewLine&"still exists"&vbNewLine&WS.RegRead("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe\Debugger")ElseMsgBox"Nothing changed."EndIfEndIfOnErrorGoto0WScript.QuitEndIf' Work around crashing notepad++ when opening .nfo files
' (BUG in the HEX-Editor Plugin 0.9.5) by running notepad++ without a file first
If(notStrComp(Left(Right(sArgs,5),4),".nf0",vbTextCompare))ThenWS.RunsCmd,1,FalseEndIf' Run the replacement if an exe in the original places was called, else run the actual program
If(known_notepad)ThenWS.RunsCmd&sArgs,1,TrueElseWS.RunWScript.Arguments(0)&sArgs,1,TrueEndIf'MsgBox("Arg(0) " & WScript.Arguments(0))
WScript.Quit