2009-04-22 12:39
清除系统垃圾文件的批处理文件
分类: 经验心得
作者: 晴空落叶
阅读: 1,461
暂无评论
@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。保存完定期运行一次就行了
转载注明: 转自左岸印象
本站遵循: 署名-非商业性使用-禁止演绎 3.0 共享协议
文章分享: Digg / Twitter / Facebook / GReader / 鲜果 / 豆瓣 / 人人网 / 开心网 / 新浪微博


