Profile Multiple

From Fxp Wiki

Jump to: navigation, search
Here is the .bat file to have two different firefox profiles run at the same time
 
@echo off
set MOZ_NO_REMOTE=1
start "" "C:\Program Files\Mozilla Firefox\firefox.exe" -p
set MOZ_NO_REMOTE=0
 
Of course, if you want a specific profile to be run by this program, you can simply add the profile name after the "-p" argument:


 
@echo off
set MOZ_NO_REMOTE=1
start "" "C:\Program Files\Mozilla Firefox\firefox.exe" -p MyProfile
set MOZ_NO_REMOTE=0
 
Personal tools