2) create profile
3) install extensions
Thsts how I do it.
This is my syntax for creating the profile.
"%PROGRAMFILES%\Mozilla\Firefox\firefox.exe" -CreateProfile default "%USERPROFILE%\Mozilla\Firefox\Profiles"
Then my batch file to install extensions.
PUSHD %~dp0 FOR %%I IN (*.XPI) DO ( START /WAIT "" "%PROGRAMFILES%\Mozilla\Firefox\firefox.exe" -install-global-extension "%%~fI" ) POPDI recommend the START /WAIT option so you know all extensions get installed before the next.



Help


Back to top








