怎么样才可以让系统更快

来源:百度知道 编辑:UC知道 时间:2024/05/08 03:01:56
我的电脑也没毒
有的时候就是慢
512内存 是系统老了??

有没有什么方法可以让系统快点

系统用久了,自然垃圾也就多了,变慢是很正常的事情,一般大家都会用优化大师来优化,
但是不会弄的就会往往把系统弄崩溃了.下面我就推荐你建个批处理文件来清理垃圾.
内容如下:

@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