Profile Multiple
From Fxp Wiki
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
Categories: Firefox | Batch | Browsers
