最近系统桌面经常崩溃,表现为桌面图标不能点击,鼠标漏斗状。到任务管理器结束explorer.exe然后重新开启,恢复正常。但是时间一久问题依旧,又需要重新操作一遍。
为了解决问题,首先想到的是替换explorer.exe。

explorer 32位
explorer 64位

以下脚本保存为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
)

请为这篇文章评分:
( 已有 1 人评分, 平均得分: 1 分 )

Tags: none

Related Posts:
  • [尚无相关文章]

评论已关闭