精练谈不上,我都不知道到底哪些才是系统垃圾。
帖一段我自己用的上来看看。
:- @echo off
- echo 垃圾清理正在运行,请稍后…………
- rd /s /q %windir%\temp & md %windir%\temp
- del /f /s /q %windir%\*.bak
- del /f /q "%userprofile%\cookies\*.*"
- for %%a in (tmp _mp log gid chk old) do (
- del /f /s /q "%systemdrive%\*.%%a"
- )
- del /f /s /q "%systemdrive%\recycled\*.*"
- del /f /s /q "%windir%\prefetch\*.*"
- del /f /s /q "%userprofile%\recent\*.*"
- del /f /s /q "%userprofile%\Local Settings\Temp\*.*"
- del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*"
-
- ::清除文件缓存 XP系统是:C:\windows\system32\dllcache下的所有文件 清理系统缓存
- sfc /purgecache
- color 0a&echo 清除系统垃圾文件完成!
- echo\&pause&exit
复制代码
|