7、SP1或者自动升级的补丁包产生的系统文件新的备份
建议这个就不用动了,留着吧最好。
8、Windows Vista 系统日志和事件日志
一般在Windows文件夹的System32文件夹下面的 LogFiles 文件夹里面,直接删除也ok的
二、C盘空间垃圾自动清除,扩大C盘空间
在两个月前,曾经给大家提供过一个删除系统垃圾的批处理文件:
@echo off
echo Vista123.com正在帮您清除系统垃圾文件,请稍等......
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 SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"
del /f /s /q "%userprofile%recent*.*"
echo Vista123.com报告:清除系统垃圾完成!
echo. & pause
大家可以把上面的这些代码保存成一个 cleantemp.bat,直接运行即可。
标签: