windows7 桌面问题的解决,explorer.exe下载和替换
Posted by he; tagged with none
最近系统桌面经常崩溃,表现为桌面图标不能点击,鼠标漏斗状。到任务管理器结束explorer.exe然后重新开启,恢复正常。但是时间一久问题依旧,又需要重新操作一遍。
为了解决问题,首先想到的是替换explorer.exe。
以下脚本保存为bat文件,和explorer.exe放在同一目录,运行bat文件即可。
@echo off if exist "explorer.exe" ( taskkill /f /im explorer.exe move "%SystemRoot%\explorer.exe" "%SystemRoot%\explorer_bf.exe" move explorer.exe %SystemRoot%\explorer.exe start explorer.exe del %0 echo 替换完成 ) else ( echo 没有找到explorer.exe文件 pause >nul )