Window 系统垃圾清理脚本

时间:2014-02-18 15:48:54   收藏:0   阅读:422
bubuko.com,布布扣
 1 @echo off
 2 pause
 3 echo 正在清理系统垃圾文件,请稍等......
 4 del /f /s /q %systemdrive%\*.tmp
 5 del /f /s /q %systemdrive%\*._mp
 6 del /f /s /q %systemdrive%\*.log
 7 del /f /s /q %systemdrive%\*.gid
 8 del /f /s /q %systemdrive%\*.chk
 9 del /f /s /q %systemdrive%\*.old
10 del /f /s /q %systemdrive%\recycled\*.*
11 del /f /s /q %windir%\*.bak
12 del /f /s /q %windir%\prefetch\*.*
13 rd /s /q %windir%\temp & md %windir%\temp
14 del /f /q %userprofile%\cookies\*.*
15 del /f /q %userprofile%\recent\*.*
16 del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
17 del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
18 del /f /s /q "%userprofile%\recent\*.*"
19 echo 清理系统垃圾完成!
20 echo. & pause 
bubuko.com,布布扣

原文:http://www.cnblogs.com/aishangxue/p/WindowsClean.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!