登录 注册
当前位置:主页 > 资源下载 > 10 > 清除系统垃圾.bat下载

清除系统垃圾.bat下载

  • 更新:2024-10-13 17:37:08
  • 大小:1KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C - 后端
  • 格式:BAT

资源介绍

清除系统垃圾.bat @echo off echo 按Ctrl+C终止运行,按其他键开始 pause > nul setlocal enabledelayedexpansion taskkill /im explorer.exe /f cls echo explorer进程已被终止,按Ctrl+C终止运行,按其他键开始清除垃圾 pause > nul echo 清除备份DLL sfc /purgecache echo 删除最近打开文档纪录 del /f /s /q "%userprofile%\recent\*.*" echo 删除浏览器cookies del /f /s /q "%userprofile%\cookies\*.*" echo 删除浏览器临时文件 del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" echo 删除浏览器浏览纪录 del /f /s /q "%userprofile%\Local Settings\history\*.*" echo 删除浏览器地址栏输入纪录 echo y | reg delete "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\" reg add "HKCU\Software\Microsoft\Internet Explorer\TypedURLs\" /ve /f echo 删除系统临时文件 del /f /s /q "%userprofile%\Local Settings\Temp\*.*" del /f /s /q "%windir%\temp" echo 删除C盘和D盘回收站(NTFS格式) rd /s /q c:\RECYCLER rd /s /q d:\RECYCLER echo 重新启动Explorer进程 start %systemroot%\explorer.exe echo 系统垃圾已清除,按Ctrl+C终止运行,按其他键重启系统! pause > nul echo 重启 shutdown /r /t 0 echo 删除程序预取映像 del /f /s /q %windir%\prefetch\*.* 本脚本不能清除启动菜单的常用程序列表。