清除所有的临时文件和系统垃圾 C:Documents and Settings用户名Local Settings下的两个临时文件夹Temporary Internet Files和Temp下的临时文件全部删除(可选用软件删除)下载一键清除系统垃圾.BAT的批处理来删除系统垃圾。

@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

文章知识点与官方知识档案匹配,可进一步学习相关知识C技能树首页概览113319 人正在系统学习中

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2011年5月13日
下一篇 2011年5月13日

相关推荐