Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

setting global defaults in firefox 37.0.2

  • 1 reply
  • 4 have this problem
  • 98 views
  • Last reply by 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

Chosen solution

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
Read this answer in context 👍 3

All Replies (1)

more options

Chosen Solution

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