TASKKILL でエクスプローラーを再起動
ファイル名を指定して実行
cmd /c C:\Windows\System32\taskkill.exe /f /im explorer.exe & start explorer.exe
cmd が必要。
コマンドプロンプト
C:\Windows\System32\taskkill.exe /f /im explorer.exe & start explorer.exe & exit
taskkill.exe のみは環境によって動作しない場合あり。
バッチファイル
@echo off
C:\Windows\System32\taskkill.exe /f /im explorer.exe
start explorer.exe
C:\Windows\System32\taskkill.exe /f /im explorer.exe
start explorer.exe
エクスプローラーの再起動 (TASKKILL を使って再起動)