I'm Running Windows 8.1 and am having issues restarting Explore.exe with CMD. The code work in regards to killing explorer.exe and starting it up again,but once these 2 codes run I can't use windows explorer at all. To fix this issues I have to restart Explorer.exe in Task Manager by right clicking and selecting restart. I can also end the process and go up to 'run new task' and entering explorer.exe. If I don't I can't open any folder,copy, or move any files. I can modify my script, open Firefox, and open chrome. Excel runs my macro's at the same speed.
Why does after running these 2 codes (either one) make file explorer slow to open and operate in?
My Code:
REM ---------------------
REM TaskKill EXPLORER.EXE
REM ---------------------
FOR /F "tokens=1,2" %%A IN (
'TaskList /FI "IMAGENAME eq EXPLORER.EXE"'
) DO (
IF /I "%%A" == "EXPLORER.EXE" (
TaskKill /F /IM %%A >nul
)
)
REM ------------------
REM START EXPLORER.EXE
REM ------------------
START EXPLORER.EXE >NUL
The Same problem happens if I run this code
REM ---------------------
REM TaskKill EXPLORER.EXE
REM ---------------------
Taskkill /F /IM EXPLORER.EXE >nul
REM ------------------
REM START EXPLORER.EXE
REM ------------------
START EXPLORER.EXE >NUL
PS I HAVE THE REGISTRY SEPARATE PROCESS AS 1 TO DISTINGUISH BETWEEN EXPLORER.EXE THE SHELL AND THE FILE EXPLORER