请教各位,有什么批处理能实现关闭explorer.exe然后重启explorer.exe这样的效果。
就是在不关闭explorer的情况下刷新整个系统?
我知道有个rundll32.exe user32.dll等的批处理能刷新桌面,大家还有好的批处理吗?
以前收藏的一个小程序,能杀掉explorer进程。
然后你再使用start %SystemRoot%\explorer启动资源管理器。
重启explorer=先结束再启动explorer
批处理:
taskkill /f /im explorer.exe
start explorer
@echo off
reg add "HKCR\Directory\Background\shell\RestartExplorer" /ve /d "重启资源管理器" /f
reg add "HKCR\Directory\Background\shell\RestartExplorer\Command" /ve /d "cmd /c \"wmic process where \"caption='explorer.exe' and not commandline like '%%%%factory%%%%'\" call terminate\"" /f这个据说可以重启桌面不关闭资源管理器
thanks