我的电脑桌面上的文件夹(像“我的电脑”,“IE7.0”等)而那些游戏,QQ都不是很慢

来源:百度知道 编辑:UC知道 时间:2024/06/09 04:39:43
像我‘我的电脑’和文件夹这样的打开时很慢 而那些游戏 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 清除系统