<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Speed Up Slow Firefox 3.5 Windows Start-Ups</title>
	<atom:link href="http://www.lifehacker.com.au/2009/07/speed-up-slow-firefox-35-windows-start-ups/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lifehacker.com.au/2009/07/speed-up-slow-firefox-35-windows-start-ups/</link>
	<description>tips and downloads to help you at work and play</description>
	<lastBuildDate>Sun, 22 Nov 2009 01:13:58 +1100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Stephen Gore</title>
		<link>http://www.lifehacker.com.au/2009/07/speed-up-slow-firefox-35-windows-start-ups/comment-page-1/#comment-11715</link>
		<dc:creator>Stephen Gore</dc:creator>
		<pubDate>Tue, 21 Jul 2009 01:19:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifehacker.com.au/?p=337488#comment-11715</guid>
		<description>This bug is now resolved, just FYI. So no need to do this now.</description>
		<content:encoded><![CDATA[<p>This bug is now resolved, just FYI. So no need to do this now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Josh</title>
		<link>http://www.lifehacker.com.au/2009/07/speed-up-slow-firefox-35-windows-start-ups/comment-page-1/#comment-11615</link>
		<dc:creator>Josh</dc:creator>
		<pubDate>Fri, 17 Jul 2009 02:45:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifehacker.com.au/?p=337488#comment-11615</guid>
		<description>Here&#039;s a Windows script file I made by assembling various parts from around the web.  Open notepad, copy and paste the code, and save it as Firefox.vbs.  I tested it on Windows XP with no problems.  May require tweaks for other OS versions.  The script deletes the temp files and then loads Firefox for you.  It cut my load time from 3 minutes back down to 3 seconds.

(You will have to change the file type in the save dialog to &quot;All Files&quot; or notepad will change your filename to Firefox.vbs.txt which won&#039;t work!)




&#039;----- Begin Copy Here ----
 
SUB DeleteFiles(strDirectory)

on error resume next
                Dim oFSO
                Dim sDirectoryPath
                Dim oFolder
                Dim oDelFolder
                Dim oFileCollection
                Dim oFile
                Dim oFolderCollection

                Set oFSO = CreateObject(&quot;Scripting.FileSystemObject&quot;)
                set oFolder = oFSO.GetFolder(strDirectory)
                set oFolderCollection = oFolder.SubFolders
                set oFileCollection = oFolder.Files

                For each oFile in oFileCollection
                               oFile.Delete(True)
                Next

                For each oDelFolder in oFolderCollection
                                oDelFolder.Delete(True)
                Next

                Set oFSO = Nothing
                Set oFolder = Nothing
                Set oFileCollection = Nothing
                Set oFile = Nothing    
END SUB


Set wshShell = WScript.CreateObject (&quot;WScript.shell&quot;)
strUserName = wshShell.ExpandEnvironmentStrings( &quot;%USERNAME%&quot; )

DeleteFiles &quot;C:\Documents And Settings\&quot; &amp; strUserName &amp; &quot;\Recent&quot;
DeleteFiles &quot;C:\Documents And Settings\&quot; &amp; strUserName &amp; &quot;\Local Settings\Temp&quot;
DeleteFiles &quot;C:\Documents and Settings\&quot; &amp; strUserName &amp; &quot;\Local Settings\History&quot;

wshshell.run &quot;&quot;&quot;C:\Program Files\Mozilla Firefox\firefox.exe&quot;&quot;&quot;
set wshshell = nothing


&#039;--- End Copy Here ---</description>
		<content:encoded><![CDATA[<p>Here&#8217;s a Windows script file I made by assembling various parts from around the web.  Open notepad, copy and paste the code, and save it as Firefox.vbs.  I tested it on Windows XP with no problems.  May require tweaks for other OS versions.  The script deletes the temp files and then loads Firefox for you.  It cut my load time from 3 minutes back down to 3 seconds.</p>
<p>(You will have to change the file type in the save dialog to &#8220;All Files&#8221; or notepad will change your filename to Firefox.vbs.txt which won&#8217;t work!)</p>
<p>&#8216;&#8212;&#8211; Begin Copy Here &#8212;-</p>
<p>SUB DeleteFiles(strDirectory)</p>
<p>on error resume next<br />
                Dim oFSO<br />
                Dim sDirectoryPath<br />
                Dim oFolder<br />
                Dim oDelFolder<br />
                Dim oFileCollection<br />
                Dim oFile<br />
                Dim oFolderCollection</p>
<p>                Set oFSO = CreateObject(&#8221;Scripting.FileSystemObject&#8221;)<br />
                set oFolder = oFSO.GetFolder(strDirectory)<br />
                set oFolderCollection = oFolder.SubFolders<br />
                set oFileCollection = oFolder.Files</p>
<p>                For each oFile in oFileCollection<br />
                               oFile.Delete(True)<br />
                Next</p>
<p>                For each oDelFolder in oFolderCollection<br />
                                oDelFolder.Delete(True)<br />
                Next</p>
<p>                Set oFSO = Nothing<br />
                Set oFolder = Nothing<br />
                Set oFileCollection = Nothing<br />
                Set oFile = Nothing<br />
END SUB</p>
<p>Set wshShell = WScript.CreateObject (&#8221;WScript.shell&#8221;)<br />
strUserName = wshShell.ExpandEnvironmentStrings( &#8220;%USERNAME%&#8221; )</p>
<p>DeleteFiles &#8220;C:\Documents And Settings\&#8221; &amp; strUserName &amp; &#8220;\Recent&#8221;<br />
DeleteFiles &#8220;C:\Documents And Settings\&#8221; &amp; strUserName &amp; &#8220;\Local Settings\Temp&#8221;<br />
DeleteFiles &#8220;C:\Documents and Settings\&#8221; &amp; strUserName &amp; &#8220;\Local Settings\History&#8221;</p>
<p>wshshell.run &#8220;&#8221;"C:\Program Files\Mozilla Firefox\firefox.exe&#8221;"&#8221;<br />
set wshshell = nothing</p>
<p>&#8216;&#8212; End Copy Here &#8212;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ron</title>
		<link>http://www.lifehacker.com.au/2009/07/speed-up-slow-firefox-35-windows-start-ups/comment-page-1/#comment-11372</link>
		<dc:creator>Ron</dc:creator>
		<pubDate>Sat, 11 Jul 2009 01:40:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.lifehacker.com.au/?p=337488#comment-11372</guid>
		<description>CCLEANER appears to clean out all those directories.
Has an option to Put in Start Up</description>
		<content:encoded><![CDATA[<p>CCLEANER appears to clean out all those directories.<br />
Has an option to Put in Start Up</p>
]]></content:encoded>
	</item>
</channel>
</rss>
