平时大家清理电脑系统垃圾经常会用到一些专门的软件,像某某电脑管家、某某安全卫士、某某安全软件等等。五花八门、铺天盖地、不仅操作起来麻烦,而且还不少占用系统内存,使系统越来越卡。
那么今天我来给大家介绍一个最最简单有效的清理系统垃圾的方法,我们只需要自己动手新建一个批处理程序双击一下就可以搞定。下面来看具体的操作方法。
1、在桌面上新建一个文本文档;
2、打开这个文本文档,输入以下代码:
@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