 | |  | | 我用的绿色浏览器,基于IE的。前几天没这个问题。
主要是绿色的,不需安装。才用它。所有配置都在本地文件夹,放到USB里,方便到处跑。
ForexGG 发表于 2009-2-13 11:23
"前几天没这个问题。"..............
相信是系统内垃圾文件太多,试试这东西吧. 把以下的储成批次档执行就成.
@For /F "tokens=1,2,3,4 delims=/ " %%A in ('Date /t') do @(
Set Year=%%A
Set Month=%%B
Set Day=%%C
Set Week=%%D
)
@echo %Year%%Month%%Day%.log
@echo off
echo 建立清除记录档 %Year%%Month%%Day%.log
echo 正在清除系统垃圾文件,请稍等.......
echo dir %systemdrive% (清理前) > %Year%%Month%%Day%.log
echo. >> %Year%%Month%%Day%.log
dir %systemdrive% >> %Year%%Month%%Day%.log
echo. >> %Year%%Month%%Day%.log
echo =========================================================== >> %Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*.tmp >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*._mp >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*.log >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*.gid >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*.chk >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\*.old >>%Year%%Month%%Day%.log
del /f /s /q %systemdrive%\recycled\*.* >>%Year%%Month%%Day%.log
del /f /s /q %windir%\*.bak >>%Year%%Month%%Day%.log
del /f /s /q %windir%\prefetch\*.* >>%Year%%Month%%Day%.log
rd /s /q %windir%\temp & md %windir%\temp >>%Year%%Month%%Day%.log
del /f /q %userprofile%\cookies\*.* >>%Year%%Month%%Day%.log
del /f /q %userprofile%\recent\*.* >>%Year%%Month%%Day%.log
del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*" >>%Year%%Month%%Day%.log
del /f /s /q "%userprofile%\Local Settings\Temp\*.*" >>%Year%%Month%%Day%.log
del /f /s /q "%userprofile%\recent\*.*" >>%Year%%Month%%Day%.log
echo 清除系统垃圾文件完成!
echo 系统垃圾清除记录,请参阅 %Year%%Month%%Day%.log
echo. >> %Year%%Month%%Day%.log
echo =========================================================== >> %Year%%Month%%Day%.log
echo dir %systemdrive% (清理后) >> %Year%%Month%%Day%.log
echo. >> %Year%%Month%%Day%.log
dir %systemdrive% >> %Year%%Month%%Day%.log
echo. & pause |  |  |  |  |
|