How to restart explorer.exe with a batch file
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.