Zend certified PHP/Magento developer

Terminate & Restart Explorer.exe and it’s child process to make folders and apps open faster

Now this may sound whimsical, but I want to know, can a batch script be made, that kills the Explorer.exe and it’s child processes forcibly and then successfully starts the Explorer.exe process again, without having to run that Batch script again?

I tried the below code, but even after waiting for 10 mins, the Explorer.exe hasn’t started yet, so I am afraid to add /T to the taskkill.

start /wait taskkill /IM explorer.exe /F
start "" explorer.exe /wait

How can I acheive something like this with batch script, in autonomous manner?

taskkill /IM /F Explorer.exe /T
start /wait Explorer.exe