Total Pageviews

Tuesday 29 November 2011

清除系统垃圾文件的批处理文件

@echo off
title 清除系统垃圾文件工具,正在清理中…
echo 正在清除系统垃圾文件,请稍等……
del /f /s /q %systemdrive%\*.tmp
del /f /s /q %systemdrive%\*._mp
del /f /s /q %systemdrive%\*.gid
del /f /s /q %systemdrive%\*.chk
del /f /s /q %systemdrive%\*.old
del /f /s /q %windir%\*.bak
del /f /s /q %windir%\temp\*.*
del /f /a /q %systemdrive%\*.sqm
del /f /s /q %windir%\SoftwareDistribution\Download\*.*
del /f /s /q “%userprofile%\cookies\*.*”
del /f /s /q “%userprofile%\recent\*.*”
del /f /s /q “%userprofile%\local settings\temporary internet files\*.*”
del /f /s /q “%userprofile%\local settings\temp\*.*”
echo 清除系统垃圾文件完成!
echo. & pause
打开记事本,将上面的内容复制进去,保存文件名为“清除系统垃圾文件.bat”或者其他文件名也行,后缀要是bat。保存,定期运行一次就行了。

No comments:

Post a Comment