帮我写个重启explorer.exe的批处理.

2025-06-20 13:09:50
推荐回答(4个)
回答1:

新建个文本文档
taskkill /im explorer.exe /f
然后就保存把文档后缀改成.bat就可以了..
启动explorer.exe 直接在运行中输入explorer.exe 就可以了

回答2:

taskkill /f /im explorer.exe
ping -n 3 127.1>nul
explorer.exe

回答3:

taskkill /im explorer.exe /f
explorer.exe

这样就可以了。

回答4:

@echo off
taskkill /f /im explorer.exe
start explorer.exe
exit