Wednesday, July 15, 2009

How to Speed Up Firefox 3.5 Start-Up on Windows


I think this tutorial will improve your Firefox 3.5 performance by 20% Firefox 3.5 pulls data from certain file locations for randomized security purposes. Sometimes, though, that can lead to annoying slow start-ups in Windows. You can speed things up by cleaning out certain folder locations.


For whatever reason, having too many temporary, history, or recent document files sitting in your Windows locations slows down Firefox 3.5’s data generation processes, as has been reported as a bug. The Mozilla Links blog recommends cleaning out these folders to move the browser’s work along:

C:\Documents and Settings\*user*\Local Settings\History

C:\Documents and Settings\*user*\Local Settings\Temporary Internet Files

C:\Documents and Settings\*user*\My Recent Documents

C:\Documents and Settings\*user*\Temp\


On Vista or Windows 7 systems, simply replace “Documents and Settings” with “Users.” Setting up Firefox to automatically clean out your temporary files after browsing, as explained at the link below, helps prevent the accumulation from building again, but users who trade browsing time with Internet Explorer may have to occasionally work this manual method to wipe out those files.
Simple batch script to do weekly/monthly cleanup on MS-Windows:
del /s /q %TEMP%\*.*
del /s /q %TMP%\*.*
del /s /q
%SystemDrive%\temp\*.*
REM del /s /q %SystemDrive%\tmp\*.*
del /s /q
%windir%\prefetch\*.*
del /s /q %windir%\Temp\*.*
pause

No comments:

Post a Comment