Skip to content

Instantly share code, notes, and snippets.

@tshm
Last active May 31, 2017 11:34
Show Gist options
  • Save tshm/8790034ee4a0f3b9045d to your computer and use it in GitHub Desktop.
Save tshm/8790034ee4a0f3b9045d to your computer and use it in GitHub Desktop.
restarting explorer
@echo off
taskkill /f /IM explorer.exe
if ERRORLEVEL 1 goto :err
start "" "explorer.exe"
exit
:err
echo ----------- failed -----------
pause
exit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment