批处理清除垃圾文件...经典

批处理指令如下:

 1 @echo off
 2 echo 正在清除系统垃圾文件,请稍等......
 3 @del /f /s /q %systemdrive%\*.tmp
 4 @del /f /s /q %systemdrive%\*._mp
 5 @del /f /s /q %systemdrive%\*.log
 6 @del /f /s /q %systemdrive%\*.gid
 7 @del /f /s /q %systemdrive%\*.chk
 8 @del /f /s /q %systemdrive%\*.old
 9 @del /f /s /q %systemdrive%\recycled\*.*
10 @del /f /s /q %windir%\*.bak
11 @del /f /s /q %windir%\prefetch\*.*
12 @rd /s /q %windir%\temp & md %windir%\temp
13 @del /f /q %userprofile%\cookies\*.*
14 @del /f /q %userprofile%\recent\*.*
15 @del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
16 @del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
17 @del /f /s /q "%userprofile%\recent\*.*"
18 echo 清除系统垃圾完成!

将以上的指令保存到事先定义好的文件上:clearsys.bat(可用记事本打开);也可以直接到这里下载:http://pan.baidu.com/share/link?shareid=154455&uk=2769149514

在windows XP环境下可以直接双击执行即可;而在windows 7以上版本须用管理员身份运行方可删除有权限的垃圾文件!!!

如果有不足之处请指教!!!

posted @ 2012-12-02 14:29  wolfxin2010  阅读(240)  评论(0编辑  收藏  举报