电脑出问题了,求电脑高手进来看下~非常感谢

来源:百度知道 编辑:UC知道 时间:2024/04/29 01:49:39
以前电脑反应很快双击什么都很快的,现在启动起来双击什么需要反应一段时间,刚重新装的系统,有时候反应不过来需要手动重起,我想问下这是什么原因?可能是人为破坏的原因吗 谢谢

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

@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