If you want to add new profile, you have to start firefox from command line (cmd) with option -ProfileManager
. It will open a dialog box for you where you can manage your firefox profiles.
If you don't want to start firefox from command line every time, when you need to be loaded to some other than default profile, you need to create a batch file (with .bat
suffix).
You can do that for example in notepad. In this file you have to add the following line:START "" "%ProgramFiles%\Mozilla Firefox\firefox.exe" -P "yourNewProfile"
where:
Mozilla Firefox
- is directory where your Firefox is installedyourNewProfile
- is profile you want to be loadedWhen you open this file now (e.g. with double click), firefox will be opened and your profile loaded.