自制C盘垃圾清理程序
电脑使用久了,总会自动产生一些垃圾文件,进而影响电脑的运行速度,许多朋友总是报怨电脑用一段时间就慢了,却又不知道如何处理,使用下面的这个小批处理程序即可快速的清理C盘的垃圾文件。
需要提醒的是,现在很多人都使用VISTA或WINDOWS7了,这个程序还没有在这两套系统上测试过,希望朋友们在没有专业人士指导的情况下不要使用它,以免产生不可预料的后果。
自制C盘垃圾清理程序
@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 SettingsTemporary Internet Files*.*"
del /f /s /q "%userprofile%Local SettingsTemp*.*"
del /f /s /q "%userprofile%recent*.*"
echo 清除系统LJ完成!
echo. & pause
将以上代码做成BAT文件就可以执行啦!!
快乐男孩已经做好了一个批处理文件,欢迎下载使用。
点击此处下载软件-->>