Is it possible to create Firefox profiles via the command line? I need to programatically launch Firefox with different proxy settings. From my understanding, I can do this via creating a profile. However, I don't want to create these profiles manually.
Asked
Active
Viewed 1.3k times
1 Answers
16
You sure can!
example:
firefox -CreateProfile john
check out the rest of Firefox's command line arguments.
Once your profile is created and configured you can launch the profile by doing the following:
firefox -P john
-
3The `-CreateProfile` is not available in recent versions of Firefox anymore. Is there any manual way to simulate this command? – Amir Ali Akbari Aug 30 '14 at 19:16
-
4@AmirAliAkbari From a pseudo-answer by [jotomo](https://superuser.com/users/367072/jotomo) (who doesn't have enough rep to comment): "This still works in FF 31. If there is an instance of Firefox already running, the `-no-remote` option must be specified as well, otherwise the `-CreateProfile` argument is ignored and FF just opens another window." – gronostaj Sep 10 '14 at 19:50
-
To create a profile, you can also go to `about:profiles` and [do that](https://support.mozilla.org/en-US/kb/profile-manager-create-remove-switch-firefox-profiles). – Binar Web Apr 22 '22 at 07:26