电脑用久了,就变慢了许多,如果是手动删除多余的垃圾文件该如何知道删除那一些垃圾文件呢?

来源:百度知道 编辑:UC知道 时间:2024/05/29 09:05:32
我说的是位置!比如:WIDOWS下的TEMP!
WIDOWS 优化大师?是电脑自带的程序吗/前几天弄了个超级兔子倒还不好使了,倒还慢了许多...

把下面的代码复制到记事本里。然后把记事本的后缀名TXT改成BAT
然后运行```就把你系统的临时文件和垃圾文件都清除了
@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

手动删除多余的垃圾文件的路径C:\Documents and Set