Installing multiple versions of Firefox
Lately, during our development process, we came across a situation wherein we had to test our application designs on Mozilla Firefox 1.5 and 2.0. This was causing a lot of problems as we had to keep checking on multiple machines, because each machine had only one version either 1.5 or 2.0.
I read many posts on how to install multiple versions of Firefox. But there as a catch, I could run only one instance at a time. That means, if I open a window for Firefox 1.5, I can’t open another window with Firefox 2.0
Below are the steps I followed with inputs from Hiveminds
- Download both the versions of Mozila Firefox (1.5/2.0) into a seperate directory
- Install both the versions into a seperate directory using the “Custom” option. For e.g. for 1.5, I used
C:\Program Files\Mozilla\Firefox1.5.x
and for 2.0, I used
C:\Program Files\Mozilla\Firefox2.0.x - After installing, open the profile manager. Go to Start > Run and paste the below code
"C:\Program Files\Mozilla\Firefox2.0.x" -ProfileManager - Create two new profiles viz – “Firefox1.5.x” and “Firefox2.0.x”. Doesn’t matter which directory it saves in
- Fire up your notepad and paste the following code for FF2.0
@echo off
set MOZ_NO_REMOTE=1
start "" "C:\Program Files\Mozilla\Firefox2.0.x\firefox.exe" -P "Firefox2.0.x"
set MOZ_NO_REMOTE=0save it as "FF2.0.x.bat"paste the below code for FF1.5
@echo off
set MOZ_NO_REMOTE=1
start "" "C:\Program Files\Mozilla\Firefox1.5.x\firefox.exe" -P "Firefox1.5.x"
set MOZ_NO_REMOTE=0save it as “FF1.5.x.bat“
- Save both the files on your desktop and you are done! Execute both files one by one and see the magic unfold
July 11th, 2007 at 10:40 pm
I know that this blog entry is a bit old, but I figured I may as well ask. Do you happen to know if this format works for the FF3 alphas too?
August 26th, 2007 at 7:31 pm
[...] to make all the magic happen, but it isn’t overly hard anyway. If you are on windows you can check out this page and if you’re on a mac go to this [...]
December 31st, 2008 at 3:57 am
Thanks Aadesh, this should allow me to keep multiple versions of firefox one machine, without firing up multiple virtual machines.
January 26th, 2010 at 8:23 am
[...] Click to enlarge [via]. [...]