Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais
Arquivadas

how to skip initial setup for every local user?

cor-el replied
dbourgeois

I am publishing Firefox via Citrix Xenapp 6.5. I was wondering if there was a switch command that I could put on the end of the application path to start firefox without each user not having to go through the prompts such as "make firefox your default browser" and "import settings for ie"?

I am publishing Firefox via Citrix Xenapp 6.5. I was wondering if there was a switch command that I could put on the end of the application path to start firefox without each user not having to go through the prompts such as "make firefox your default browser" and "import settings for ie"?

Todas as respostas (4)

Type about:preferences#general<enter> in the address bar. Turn off Always Check Firefox Default Browser.

'import settings for ie' should only be asked once.

if i log on to the server as me and do this will it take effect for all user profiles on that server?

Each user has their own separate profile.

You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences.

A local-settings.js file needs to be placed in the "defaults/pref" folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

These functions can be used in the mozilla.cfg file:

defaultPref();	// set new default value
pref();		// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

The mozilla.cfg file needs to start with a comment line (//).

See Configuration:

See also:


You can place a file override.ini in the browser folder in the Firefox program folder to disable the profile migrator.

  • (64 bit Windows) "C:\Program Files (x86)\Mozilla Firefox\browser\override.ini"
[XRE]
EnableProfileMigrator=false