Team OS : Your Only Destination To Custom OS !!

Welcome to TeamOS Community, Register or Login to the Community to Download Torrents, Get Access to Shoutbox, Post Replies, Use Search Engine and many more features. Register Today!

Tutorials How to replace Notepad with Notepad++ in Windows 10

Mr. Spacely

🤴 Super Admin
Uploader
Downloaded
153.9 GB
Uploaded
44 TB
Ratio
292.5
Seedbonus
12,628,300
Upload Count
11240 (11240)
Member for 8 years
This tutorial explains how to replace Notepad with Notepad++ in Windows 10

Using Notepad++ Plugin:

This is one of the safest methods to replace Notepad with Notepad++ completely in Windows 10. There is a handy Notepad++ plugin, named “NotepadStarterPlugin“, which lets you easily replace Notepad with Notepad++. You can install this plugin and restart Notepad++ to apply the changes.

NfpkR.png


Afer this, whenever you will open Notepad, Notepad++ will open. This plugin also works with previous versions of Windows.

Using a Batch File:

Step 1


Copy this code and save it whit this name “Notepad++replace.bat”


:CheckOS
IF EXIST "%PROGRAMFILES(X86)%" (GOTO 64BIT) ELSE (GOTO 32BIT)

:64BIT
echo @echo off^

start ^"^" ^"C:\Program Files (x86)\Notepad++\notepad++.exe^" %%2 %%3 %%4 %%5 %%6> "C:\Program Files (x86)\Notepad++\npplauncher.cmd"

reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /t REG_SZ /d "\"C:\Program Files (x86)\Notepad++\npplauncher.cmd\"" /f

reg add "HKLM\Software\Wow6432Node\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /t REG_SZ /d "\"C:\Program Files (x86)\Notepad++\npplauncher.cmd\"" /f
GOTO END

:32BIT
echo @echo off^

start ^"^" ^"C:\Program Files\Notepad++\notepad++.exe^" %%2 %%3 %%4 %%5 %%6> "C:\Program Files\Notepad++\npplauncher.cmd"

reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe" /v "Debugger" /t REG_SZ /d "\"C:\Program Files\Notepad++\npplauncher.cmd\"" /f
GOTO END

:END


Step 2:

Execute that bat file as administrator and done. It will add a new value to Notepad’s registry

Nf3Ve.png


Now try to open Notepad and you will notice that Notepad++ has opened instead of Notepad.

Step 3:

To revert the changes, you need to delete the value added in Notepad registry. For this, access notepad.exe folder in Registry Editor.

The default location is: “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\notepad.exe“. In that folder, you will find a Debugger value.

Nf41U.png


Delete that value and you will be able to access Notepad again.

Create a CMD File To Replace Notepad with Notepad++:

The above method can also be done manually by creating a *.cmd file and using the other steps:

Step 1:

Open Notepad or some other text editor to create a cmd file. You need to use two lines, mentioned below, to create that file.

@echo off
start "" "C:\Program Files (x86)\Notepad++\notepad++.exe" %2 %3 %4 %5 %6

NfS2n.png


Step 2:

When you have entered those two lines, save the file as “npplauncher.cmd”. After this, copy that file and paste it in the installation location of Notepad++ (C:\Program Files (x86)\Notepad++). It will replace original npplauncher.cmd file.

Nfseq.png


Step 3:

Now access notepad.exe folder/key in Registry Editor available under Image File Execution Options (see the step 3 of above method). If notepad.exe key doesn’t exist, you need to create it.

Step 4:

Add a string in notepad.exe key with the name “Debugger“. Double-click that string to add Value data.
The Value data must be “C:\Program Files (x86)\Notepad++\npplauncher.cmd“.

Nf1pQ.png


Add Value data and press OK to save the changes.

Now try to open Notepad and you will see that Notepad++ is opening.

If you want to use Notepad again, simply delete Debugger string.
 
Last edited by a moderator:

WhiteLocks

eXPerience
Power User
✅ Verified Member
Member
Downloaded
774.5 GB
Uploaded
7.8 TB
Ratio
10.32
Seedbonus
7
Upload Count
0 (0)
Member for 5 years
Love these tutorials. :)
 

icloudsr

Member
Downloaded
46.2 GB
Uploaded
169 GB
Ratio
3.66
Seedbonus
94
Upload Count
12 (12)
Member for 7 years
@Iceman96 nice tutorial for a must have program, thanks buddy :)
 

aiOrigins

Member
Downloaded
12.7 GB
Uploaded
25.1 GB
Ratio
1.98
Seedbonus
15,722
Upload Count
0 (0)
Member for 5 years
Thanks bro @Iceman96 outstanding in terms of explanation thanks you
At least I can say you're one of those sensible guys out here whom I really appreciate otherwise sometimes I had to deal with fools (as you might already know)
 

gpannaci

✅ Verified Member
Member
Downloaded
294.5 GB
Uploaded
134.2 TB
Ratio
466.51
Seedbonus
13,285
Upload Count
0 (0)
Member for 6 years
@Iceman96 Great tutorial for this handy tool!
 

Alessia_Amelia

Power User
✅ Verified Member
Member
Downloaded
1.7 TB
Uploaded
50.6 TB
Ratio
29.52
Seedbonus
377,303
Upload Count
0 (0)
Member for 6 years
Very detailed and easy to follow @Iceman96 . Thank you very much.
 

juanamm

Uploader
Uploader
Power User
✅ Verified Member
Member
Downloaded
5.7 GB
Uploaded
448.6 GB
Ratio
78.11
Seedbonus
134,973
Upload Count
217 (223)
Member for 5 years
Very interesting, although I see it very tedious to perform all those steps.
I have Notepadd++ installed on Windows 10 and I use it when I need it only.
Also, Windows allows you to change the default applications to open certain programs, 2-click process a little easier than this good tutorial.
Thank you very much buddy! :)
 

Mr. Spacely

🤴 Super Admin
Uploader
Downloaded
153.9 GB
Uploaded
44 TB
Ratio
292.5
Seedbonus
12,628,300
Upload Count
11240 (11240)
Member for 8 years
Very interesting, although I see it very tedious to perform all those steps.
I have Notepadd++ installed on Windows 10 and I use it when I need it only.
Also, Windows allows you to change the default applications to open certain programs, 2-click process a little easier than this good tutorial.
Thank you very much buddy! :)

It took me less then 5 minutes to test that ;)
 

Smokes

Member
Downloaded
45.1 GB
Uploaded
118.6 GB
Ratio
2.63
Seedbonus
273
Upload Count
0 (0)
Member for 7 years
Good Tut, Thank you
 
Top