进入桌面后很久才响应,怎么解决?

来源:百度知道 编辑:UC知道 时间:2024/07/04 07:03:12
启动项里很少,用msconfig配置过,全面扫描过病毒,硬件配置也不低,就是启动很慢,优化大师以前用过没什么用,而且我不想在用它优化,每次把我必用的东西给我优化掉

是不是系统垃圾太多了?可以制作一个批处理文件进行清理。然后再进行硬盘碎片整理。
一键清理系统垃圾文件.bat 。双击立即清理,是一个安全又方便的批处理文件。以下是文件内容:(新建记事本或文件文件都可以,然后将后缀名改为.bat)
@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