Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

setting global defaults in firefox 37.0.2

  • 1 отговор
  • 4 имат този проблем
  • 1 изглед
  • Последен отговор от 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

Избрано решение

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
Прочетете този отговор в контекста 👍 3

Всички отговори (1)

more options

Избрано решение

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