我的电脑开机后运行魔兽世界或是优化大师要等很久才能进这是怎么回事出有因

来源:百度知道 编辑:UC知道 时间:2024/05/16 01:15:10
但我开机后运行cs马上就能玩以前没有出现过这类问题啊
我查了下任务管理器好像运行了某个系统服务才能玩啊

高手帮忙搞定下啊

系统用久了,自然垃圾也就多了,变慢是很正常的事情,一般大家都会用优化大师来优化,
但是不会弄的就会往往把系统弄崩溃了.下面我就推荐你建个批处理文件来清理垃圾.
内容如下:

@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