Ko tenda hembiapoite sa’ivéta oñemba’apokuévo hese hembiapo porãve hag̃ua. Peteĩ jehaipyre nomoĩporãiramo ne apañuái ha eporanduséramo, roguerekohína ore nepytyvõ rekoha ikatútava ndeykeko @FirefoxSupport Twitter-pe ha avei /r/firefox Reddit-pe.

Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

Setting default user profiles for all users in Windows 7?

  • 2 Mbohovái
  • 2 oguereko ko apañuãi
  • 9 Hecha
  • Mbohovái ipaháva cor-el

more options

How can I set Firefox to have the same defaults for all users, the same homepage specifically, among other things?

Thanks!

How can I set Firefox to have the same defaults for all users, the same homepage specifically, among other things? Thanks!

Ñemoĩporã poravopyre

hi LarryMal, probably the best way to pre-set certain settings is with the way that's described in http://kb.mozillazine.org/Locking_preferences for the homepage especially, also refer to https://mike.kaply.com/2012/08/29/setting-the-default-firefox-homepage-with-autoconfig/

Emoñe’ẽ ko mbohavái ejeregua reheve 👍 1

Opaite Mbohovái (2)

more options

Ñemoĩporã poravopyre

hi LarryMal, probably the best way to pre-set certain settings is with the way that's described in http://kb.mozillazine.org/Locking_preferences for the homepage especially, also refer to https://mike.kaply.com/2012/08/29/setting-the-default-firefox-homepage-with-autoconfig/

more options

Place a local-settings.js file 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
Note that localized (complex) prefs need special treatment when you set the default value of such a pref.
Note that mozilla.cfg needs to start with a comment line (//) as this line will be skipped.
The mozilla.cfg file is evaluated as a JavaScript file with full chrome privileges and thus can contain advanced JavaScript, but this also means that any error in the file will throw an exception and prevents Firefox from starting.