新电脑怎么这么卡!求救!

来源:百度知道 编辑:UC知道 时间:2024/05/29 15:07:46
我才配的一太新电脑,可是用了不久发现连打开那些文件都很卡,登QQ也卡,有时候很卡的时候连打字都卡,这和病毒有关吗~??如果没有,请问大概是什么原因呢??谢谢

推荐你建个批处理文件来清理垃圾.
内容如下:

@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

将上面的文字复制粘贴到记事本上,然后保存,文件的后缀从txt改为bat。
双击运行,能清理几百M的垃圾. <