Elmer BeFuddled
Resident eejit
- Joined
- Jun 12, 2010
- Messages
- 1,048
- Reaction score
- 251
If you're into modifying system files etc. you'll soon get fed up of logging out/in or using Task Manager to stop and re-start Explorer.exe all the time. Even if Explorer has died and you can r-click the desktop this will save you logging out/in.
Here's the handy alternative:-
How to Kill and Revive Explorer.exe using the Context Menu.
First, make yourself a .bat file (make a New Text Document.txt, then when you save it change .txt file extension to .bat) and call it KILL EXPLORER OR WHATEVER YOU WANT.bat and enter and save this text code:-
The 4 is adjustable, giving a slight sleep (4 is 3 secs, 6 is 5 secs, 2 is 1 secs etc. 1 is 0 secs but it makes your monitor look like it's popping!!(not advisable!)).
Then make yourself a .reg file (as above), call it KILL EXPLORER OR WHATEVER YOU WANT.reg and enter this text code and save it:-
Click and merge the .reg file into your registry.
Then in the background empty space of any Folder or your Desktop you will be able to right click and you will have an "Explorer Kill Switch" at the top of your context menu.
Hope that's of use to somebody. It's assisted me oooh, lost count of the times!
Here's the handy alternative:-
How to Kill and Revive Explorer.exe using the Context Menu.
First, make yourself a .bat file (make a New Text Document.txt, then when you save it change .txt file extension to .bat) and call it KILL EXPLORER OR WHATEVER YOU WANT.bat and enter and save this text code:-
Code:
@echo off
taskkill /f /im explorer.exe
sleep [B]4[/B]
start explorer.exe
Then make yourself a .reg file (as above), call it KILL EXPLORER OR WHATEVER YOU WANT.reg and enter this text code and save it:-
Code:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Restart Explorer]
@="Kill Explorer or whatever you want here to show in context menu"
"Icon"="An:\\optional\\path to\\add an.ico"
"Position"="Top"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Restart Explorer\command]
@="The:\\path\\to your\\KILL EXPLORER OR WHATEVER YOU WANT.BAT"
Then in the background empty space of any Folder or your Desktop you will be able to right click and you will have an "Explorer Kill Switch" at the top of your context menu.
Hope that's of use to somebody. It's assisted me oooh, lost count of the times!
Last edited: