使用批处理自动删除系统的垃圾文件

2007年5月25日 | 分类: 计算机与Internet | 标签: ,

编写BAT文件,拷入以下内容。保存退出直接运行即可。

?View Code JAVASCRIPT
@echo off echo 正在清除系统垃圾文件,请稍等......
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.log
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %systemdrive%\recycled\*.*
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\prefetch\*.* rd /s /q %windir%\temp & md %windir%\temp
del /f /q %userprofile%\cookies\*.*
del /f /q %userprofile%\recent\*.*
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
del /f /s /q "%userprofile%\recent\*.*"
echo 清除系统垃圾完成!
echo. & pause


直接下载该工具:http://disk.epcboy.com/viewfile.php?file_id=2


您可能感兴趣的文章:
  1. 2011版CAD病毒清除工具,算是最新版吧:)
  2. 关于“傲讯浏览器辅助工具”恶意程序的清除

目前还没有任何评论.