I need to remove the annoying shell integration of Notepad++.

enter image description here

How do I do that, please?

link|improve this question

62% accept rate
feedback

3 Answers

up vote 7 down vote accepted

If you are weary of editing the registry you can try Shexview which is a free application that allows editing of Shell Extensions.

link|improve this answer
+1 but ShellExView is the name. – harrymc Oct 19 '09 at 11:37
feedback

Open the registry editor (Start->Run) and type in "regedit".

Navigate to the following key:

HKEY_CLASSES_ROOT\*\ShellEx\ContextMenuHandlers

You will see the key "Notepad++". Simply delete it.

link|improve this answer
feedback

For Notepad++ specifically, here's the non-registry, non-download way to uninstall the shell extension. Using a command line in administrator mode:

C:\Windows\system32>cd "\Program Files (x86)\Notepad++"
C:\Program Files (x86)\Notepad++>regsvr32 /u NppShell_01.dll

You can also reinstall the extension (which is how I found it) and get customization options:

C:\Program Files (x86)\Notepad++>regsvr32 /i NppShell_01.dll

Source

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.