批处理脚本重启资源管理器

将以下代码写入文本文件,然后改后缀名为.bat,然后就可以执行了。

执行过程是:
1.杀掉资源管理器,explorer.exe进程
2.等待5秒
3.启动explorer.exe

taskkill -f -im explorer.exe
ping -n 5 127.0.0.1>nul
explorer.exe

你可能感兴趣的:(CommonSkills)