Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Zjistit více

setting global defaults in firefox 37.0.2

  • 1 odpověď
  • 4 mají tento problém
  • 1 zobrazení
  • Poslední odpověď od cor-el

more options

Hey Team,

I am having issues setting the defaults of Firefox for all users within our Managed Desktop environment. I have read we can use a mozilla.cfg and a local-settings.js. THough it doesnt seem to be working. I also read about the grepref all.js file. But i cannot seem to see that on our install anywhere.

Can you please assist in helping us setup default preferences for all users who connect across our terminal servers. The links i have used as references are below: http://ilias.ca/blog/2005/03/locking-mozilla-firefox-settings/ http://kb.mozillazine.org/Locking_preferences

Any help would be great.

Regards Buddy Davies MHA Cloud Computing New Zealand

Hey Team, I am having issues setting the defaults of Firefox for all users within our Managed Desktop environment. I have read we can use a mozilla.cfg and a local-settings.js. THough it doesnt seem to be working. I also read about the grepref all.js file. But i cannot seem to see that on our install anywhere. Can you please assist in helping us setup default preferences for all users who connect across our terminal servers. The links i have used as references are below: http://ilias.ca/blog/2005/03/locking-mozilla-firefox-settings/ http://kb.mozillazine.org/Locking_preferences Any help would be great. Regards Buddy Davies MHA Cloud Computing New Zealand

Zvolené řešení

You can make the changes in Firefox via the user interface or directly on about:config and then check the prefs.js file after closing Firefox.

You can copy the user_pref lines to mozilla.cfg and change user_pref() to lockPref() calls. The mozilla.cfg file is run as a JavaScript file with full chrome privileges and thus can contain more than pref settings, but any error in the file will throw an exception and abort.

The mozilla.cfg file needs to start with a comment line (//) (this first line will be skipped).

use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

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
Přečíst dotaz v kontextu 👍 3

Všechny odpovědi (1)

more options

Zvolené řešení

You can make the changes in Firefox via the user interface or directly on about:config and then check the prefs.js file after closing Firefox.

You can copy the user_pref lines to mozilla.cfg and change user_pref() to lockPref() calls. The mozilla.cfg file is run as a JavaScript file with full chrome privileges and thus can contain more than pref settings, but any error in the file will throw an exception and abort.

The mozilla.cfg file needs to start with a comment line (//) (this first line will be skipped).

use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

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