为什么我的电脑会越来越慢?

来源:百度知道 编辑:UC知道 时间:2024/05/25 01:48:11
我的硬盘80G,内存512,双核,装了微点+360+保险箱,C盘用了24%,D盘装了几个800来M的游戏,用了48%,E盘和F盘用了很少。原来机器速度还是蛮快的,但过了一些日子,变得越来越慢了。

垃圾太多了,建议定期用超级兔子或者优化大师清理垃圾文件,清理注册表,卸除没用的东西,另外呢要对磁盘进行整理,一周以次就可以了就是整理磁盘碎片

如果你不是老鸟 给你个简单的方法 新建文本文档 粘贴以下内容
@echo off
pause
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 清理系统垃圾完成!
ech