<?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: Password Protect Firefox</title> <atom:link href="http://techie-buzz.com/featured/password-protect-firefox.html/feed" rel="self" type="application/rss+xml" /><link>http://techie-buzz.com/featured/password-protect-firefox.html</link> <description>Know your technology head on</description> <lastBuildDate>Sun, 20 May 2012 16:11:09 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/><xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: tipsntricks</title><link>http://techie-buzz.com/featured/password-protect-firefox.html/comment-page-1#comment-266311</link> <dc:creator>tipsntricks</dc:creator> <pubDate>Thu, 17 Feb 2011 16:03:59 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/featured/password-protect-firefox.html#comment-266311</guid> <description>Cool apps! Now, I don&#039;t need to worry about my bookmarks and profile setup.</description> <content:encoded><![CDATA[<p>Cool apps! Now, I don&#8217;t need to worry about my bookmarks and profile setup.</p> ]]></content:encoded> </item> <item><title>By: Danniela</title><link>http://techie-buzz.com/featured/password-protect-firefox.html/comment-page-1#comment-225928</link> <dc:creator>Danniela</dc:creator> <pubDate>Tue, 28 Dec 2010 22:57:00 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/featured/password-protect-firefox.html#comment-225928</guid> <description>I&#039;m using a free encryption utility, Rohos Mini Drive, to password protect my Firefox.</description> <content:encoded><![CDATA[<p>I&#8217;m using a free encryption utility, Rohos Mini Drive, to password protect my Firefox.</p> ]]></content:encoded> </item> <item><title>By: xesh</title><link>http://techie-buzz.com/featured/password-protect-firefox.html/comment-page-1#comment-189363</link> <dc:creator>xesh</dc:creator> <pubDate>Wed, 17 Nov 2010 19:54:16 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/featured/password-protect-firefox.html#comment-189363</guid> <description>Guys use DiscoLock for this purpose, free and simple, download, that does not only password protect firefox but also chrome, internet explorer, and many important applications at just one click.http://discobytes.com/?page_id=87</description> <content:encoded><![CDATA[<p>Guys use DiscoLock for this purpose, free and simple, download, that does not only password protect firefox but also chrome, internet explorer, and many important applications at just one click.</p><p><a href="http://discobytes.com/?page_id=87" rel="nofollow">http://discobytes.com/?page_id=87</a></p> ]]></content:encoded> </item> <item><title>By: dbojan</title><link>http://techie-buzz.com/featured/password-protect-firefox.html/comment-page-1#comment-57635</link> <dc:creator>dbojan</dc:creator> <pubDate>Fri, 12 Feb 2010 17:05:33 +0000</pubDate> <guid isPermaLink="false">http://techie-buzz.com/featured/password-protect-firefox.html#comment-57635</guid> <description>mozilla firefox, password protect firefox-download firefox portable from http://portableapps.com/apps/internet/firefox_portable. -install it to say, d:\apps\firefoxportable. -download zip.exe and unzip.exe from http://stahlworks.com/dev/index.php?tool=zipunzip. -put them in d:\apps\firefoxportable dir. -copy 2 vbs files to d:\apps\firefoxportable dir (see end of this text). -Optional: make copy of your d:\apps\firefoxportable\data\profile dir, or rename it to d:\apps\firefoxportable\data\profile2-optional (warning this will delete your profile settings!!!): -rename or delete &quot;data\profile&quot; dir to data\profile2 or -start firefox portable &quot;tools&quot;\&quot;clear private data&quot;, select all, clear private data now.-restart firefox-login to your e-mail site. select &quot;keep me signed in&quot;. -click on &quot;never for this site&quot; in mozilla. -close firefox.start &quot;1_create_zip_backup.vbs&quot; enter password there should be backup.zip file in d:\apps\firefoxportable. Rename or delete Data\profile dir after you are done.-to start firefox start &quot;2_start___warning___will___delete___profile.vbs&quot; -you will be asked for password. -after you close firefox, Data\profile dir will be deleted.to keep changes in firefox unrem two lines in &quot;2_start___warning___will___delete___profile.vbs&quot;q: how to have vbs script not delete profile upon exit? a: terminate wscript process from task manager.q: backup.zip is not created in d:\apps\firefoxportable? a: do you have d:\apps\firefoxportable\data\profile? If not start firefoxportable.exe a: did you type the same password twice?1_create_zip_backup.vbs---beginning of the file---Set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;) Return = WshShell.Run(&quot;cmd /K del /q backup.zip &amp; exit&quot;, 1, true) Return = WshShell.Run(&quot;cmd /K zip -r -e backup.zip Data\profile &amp; exit&quot;, 1, true) Set WshShell = Nothing---end of the file---2_start___warning___will___delete___profile.vbs---beginning of the file---Set WshShell = WScript.CreateObject(&quot;WScript.Shell&quot;) Return = WshShell.Run(&quot;cmd /K rd /s /q Data\profile &amp; exit&quot;, 1, true) Return = WshShell.Run(&quot;cmd /K unzip backup.zip &amp; exit&quot;, 1, true) Return = WshShell.Run(&quot;FirefoxPortable.exe &quot;, 1, true)rem unrem two lines below to have profile saved/rezipped after surfing. rem Return = WshShell.Run(&quot;cmd /K del /q backup.zip &amp; exit&quot;, 1, true) rem Return = WshShell.Run(&quot;cmd /K zip -r -e backup.zip Data\profile &amp; exit&quot;, 1, true)Return = WshShell.Run(&quot;cmd /K rd /s /q Data\profile &amp; exit&quot;, 1, true) Set WshShell = Nothing---end of the file---</description> <content:encoded><![CDATA[<p>mozilla firefox, password protect firefox</p><p>-download firefox portable from <a href="http://portableapps.com/apps/internet/firefox_portable" rel="nofollow">http://portableapps.com/apps/internet/firefox_portable</a>.<br /> -install it to say, d:\apps\firefoxportable.<br /> -download zip.exe and unzip.exe from <a href="http://stahlworks.com/dev/index.php?tool=zipunzip" rel="nofollow">http://stahlworks.com/dev/index.php?tool=zipunzip</a>.<br /> -put them in d:\apps\firefoxportable dir.<br /> -copy 2 vbs files to d:\apps\firefoxportable dir (see end of this text).<br /> -Optional: make copy of your d:\apps\firefoxportable\data\profile dir, or rename it to d:\apps\firefoxportable\data\profile2</p><p>-optional (warning this will delete your profile settings!!!):<br /> -rename or delete &#8220;data\profile&#8221; dir to data\profile2<br /> or<br /> -start firefox portable<br /> &#8220;tools&#8221;\&#8221;clear private data&#8221;, select all, clear private data now.</p><p>-restart firefox</p><p>-login to your e-mail site. select &#8220;keep me signed in&#8221;.<br /> -click on &#8220;never for this site&#8221; in mozilla.<br /> -close firefox.</p><p>start &#8220;1_create_zip_backup.vbs&#8221;<br /> enter password<br /> there should be backup.zip file in d:\apps\firefoxportable.<br /> Rename or delete Data\profile dir after you are done.</p><p>-to start firefox start &#8220;2_start___warning___will___delete___profile.vbs&#8221;<br /> -you will be asked for password.<br /> -after you close firefox, Data\profile dir will be deleted.</p><p>to keep changes in firefox unrem two lines in &#8220;2_start___warning___will___delete___profile.vbs&#8221;</p><p>q: how to have vbs script not delete profile upon exit?<br /> a: terminate wscript process from task manager.</p><p>q: backup.zip is not created in d:\apps\firefoxportable?<br /> a: do you have d:\apps\firefoxportable\data\profile? If not start firefoxportable.exe<br /> a: did you type the same password twice?</p><p>1_create_zip_backup.vbs</p><p>&#8212;beginning of the file&#8212;</p><p>Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)<br /> Return = WshShell.Run(&#8220;cmd /K del /q backup.zip &amp; exit&#8221;, 1, true)<br /> Return = WshShell.Run(&#8220;cmd /K zip -r -e backup.zip Data\profile &amp; exit&#8221;, 1, true)<br /> Set WshShell = Nothing</p><p>&#8212;end of the file&#8212;</p><p>2_start___warning___will___delete___profile.vbs</p><p>&#8212;beginning of the file&#8212;</p><p>Set WshShell = WScript.CreateObject(&#8220;WScript.Shell&#8221;)<br /> Return = WshShell.Run(&#8220;cmd /K rd /s /q Data\profile &amp; exit&#8221;, 1, true)<br /> Return = WshShell.Run(&#8220;cmd /K unzip backup.zip &amp; exit&#8221;, 1, true)<br /> Return = WshShell.Run(&#8220;FirefoxPortable.exe &#8220;, 1, true)</p><p>rem unrem two lines below to have profile saved/rezipped after surfing.<br /> rem Return = WshShell.Run(&#8220;cmd /K del /q backup.zip &amp; exit&#8221;, 1, true)<br /> rem Return = WshShell.Run(&#8220;cmd /K zip -r -e backup.zip Data\profile &amp; exit&#8221;, 1, true)</p><p>Return = WshShell.Run(&#8220;cmd /K rd /s /q Data\profile &amp; exit&#8221;, 1, true)<br /> Set WshShell = Nothing</p><p>&#8212;end of the file&#8212;</p> ]]></content:encoded> </item> </channel> </rss>

<!-- W3 Total Cache: Minify debug info:
Engine:             disk: basic
Theme:              11546
Template:           single
-->
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Database Caching 3/15 queries in 0.036 seconds using memcached
Object Caching 638/645 objects using memcached
Content Delivery Network via cdn4.techie-buzz.com

Served from: www.techie-buzz.com @ 2012-05-20 17:16:36 -->

<!-- W3 Total Cache: Page cache debug info:
Engine:             disk: enhanced
Cache key:          featured/password-protect-firefox.html/feed/_index.xml_gzip
Caching:            enabled
Status:             not cached
Creation Time:      0.259s
Header info:
X-Pingback:         http://techie-buzz.com/xmlrpc.php
Link:               <http://wp.me/p4tVd-133>; rel=shortlink
Content-Type:       text/xml; charset=UTF-8
Last-Modified:      Sun, 20 May 2012 21:16:36 GMT
Vary:               Accept-Encoding, Cookie
Expires:            Sun, 20 May 2012 21:26:36 GMT
Pragma:             public
Cache-Control:      max-age=600, public, must-revalidate, proxy-revalidate
Etag:               2beea2f0e342de634e27dcab0979854e
X-Powered-By:       W3 Total Cache/0.9.2.4
Content-Encoding:   gzip
-->
