可以优化程序,缓存,降低CPU使用率的软件,大家有什么好的介绍发?占CPU小的
參考答案:超级兔子 他的优化效果我感觉绝对胜过优化大师 你可以下载绿色版也可以下载安装版本
绿色版地址:
安装版官方地址:
另外请配合那个快速清除系统垃圾的MS-DOS程序
具体方法如下:
新建文本文档,把下边程序复制进去,保存. 然后把文档的扩展名.txt更改为.bat 就可以了 这个程序在网上很流行,可以保证不会对机器产生危害
~~~~~~~~~~~~请复制下边的程序~~~~~~~~从"@echo off "开始~~~
@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 清除系统LJ完成!
echo. & pause