Windows – How to restart explorer.exe with a batch file

batchwindows 10windows-explorer

I need a batch file to stop and restart explorer.exe, but I don't know all the commands needed. I know if you select it from the task manager you can restart it, but I want a file on my desktop I can double-click. I'm using Windows 10 Professional.

Best Answer

Pretty simple to do this and pretty self-explanatory:

taskkill /im explorer.exe /f
start explorer.exe
exit

The /im makes it look for a process name. /f says to kill it forcefully, however your force is as powerful as the permissions you have.

Related Question