为什么每次做完系统以后c盘空间总是在不知不觉中慢慢减少。而内存使用量却缓缓增加

来源:百度知道 编辑:UC知道 时间:2024/06/15 17:14:18
为什么每次做完系统以后c盘空间总是在不知不觉中慢慢减少。而内存使用量却缓缓增加?(往往2,3个月就不得不在重做系统,因为这个时候速度就已经很慢了)

下载WINDOWS优化大师,不定期对硬盘进行垃圾文件扫描并清理,内存使用量增加是否是因为你内存太少?增加虚拟内存试试!

经常清理系统垃圾文件(我基本1-2天清理一次)

清理系统垃圾文件的方法:

将下面这段命令复制,粘贴到记事本中,然后将记事本的扩展名 .txt重命名为 .bat,双击即可:

@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%&