电脑开机和关机速度

来源:百度知道 编辑:UC知道 时间:2024/04/29 02:41:09
我的电脑最近不知道怎么啦 关机我等了好几分钟 还是现实保存文件中~

开机时候特别慢 进入界面后 还得等待最少2分钟~~

我用超级兔子优化了可是还是不行

我晚上看了关于这些原因。下面的方法根本就是无效的~
在〔开始〕→〔运行〕→键入〔Regedit〕
找到 HKEY_CURRENT_USER\Control Panel\Desktop 键,将右边窗口的 WaitToKillAppTimeout 改为 1000
( 原设定值:20000 )即关闭程序时仅等待1秒。
将键值 HungAppTimeout的数值改为:200( 原设定值:5000 ), 表示程序出错时等待0.5秒。
找到 HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control
将键值 WaitToKillServiceTimeout 设为:1000或更小。 ( 原设定值:20000 )
将键值〔HungAppTimeout〕的数值资料更改为〔200〕

哪位高手帮帮我

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

@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