Reset Explorer.exe?

Narcolepter

New member
Local time
12:55 PM
Messages
2
im looking for a program to reset just explorer.exe. i found a way to do it manually but it takes a little time. you open the start menu and ctrl shift right click the white space and select exit explorer and then you have to open it again with the task manager. i just want to know if anybody knows of a program that will function as a simple restart button for explorer.exe

thanks
 

My Computer

Computer Manufacturer/Model Number
Hewlett-Packard dv7 Notebook PC
OS
Windows 7 Home Premium 64bit
CPU
AMD Turion II Ultra Dual-Core Mobile M600
Memory
4 GB
Graphics Card(s)
ATI Mobility Radeon HD 4200
Sound Card
ATI High Definition Audio
Hard Drives
500 GB,
Open Bay
Make a .bat file called KILL EXPLORER OR WHATEVER.bat and enter this text
Code:
@echo off

taskkill /f /im explorer.exe
sleep 4
start explorer.exe
The 4 is adjustable, gives a slight sleep (4 is 3 secs, 6 is 5 secs etc.).
Then make yourself a .reg file called KILL EXPLORER OR WHATEVER.reg
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"="A:\\optional\\path to add\\an.ico"
"Position"="Top"

[HKEY_CLASSES_ROOT\Directory\Background\shell\Restart Explorer\command]
@="The:\\path\\to your\\KILL EXPLORER.BAT"
Then in any folder or on your desktop you will be able to right click and your "Kill Switch" is at the top of your context menu.

HTH.
 

My Computer

OS
Win7 HP 64bit
haha this is awesome! thank you so much bro
 

My Computer

Computer Manufacturer/Model Number
Hewlett-Packard dv7 Notebook PC
OS
Windows 7 Home Premium 64bit
CPU
AMD Turion II Ultra Dual-Core Mobile M600
Memory
4 GB
Graphics Card(s)
ATI Mobility Radeon HD 4200
Sound Card
ATI High Definition Audio
Hard Drives
500 GB,
Open Bay
Back
Top