您的位置首页生活百科

清除系统垃圾

清除系统垃圾

的有关信息介绍如下:

清除系统垃圾

windows 系统用久了会产生很多缓存,所以应该对其清除,系统安全和正常运行。

新建一个TXT文档,粘贴一下文档。

@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%\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 清除系统LJ完成!现在可以继续玩电脑了,哈哈!

echo. & pause

保存改成.BAT文件,运行就可以啦!