计算机使用一段时间后,会积压大量的临时文件和系统缓存,需要及时地删除这些垃圾文件来释放空间,使系统性能保持最佳状态。
新建一个记事本并输入以下的内容:
@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 Settings\Temporary Internet Files\*。
*"
del /f /s /q "%userprofile%\Local Settings\Temp\*。*"
del /f /s /q "%userprofile%\recent\*。*"
echo 清除系统垃圾完成!
echo。 & pause
第二步:点击“文件”—另存为”
第三步:保存类型中选择“所有文件”然后在文件名对话框中(随便起个名)扩展名为。
bat确定!你的垃圾清除器就这样制作成功了!
以后只要双击运行该文件,当屏幕提示“清除系统垃圾完成!就可以按任意键退出,到时候再看看你的电脑,是不是急速如飞呢?别忘了以后定期的清理系统垃圾!
注:这招比那些所谓的优化大师好用!不会破坏系统文件!。
全部