Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

setting global defaults in firefox 37.0.2

  • 1 Antwort
  • 4 haben dieses Problem
  • 1 Aufruf
  • Letzte Antwort von 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

Ausgewählte Lösung

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
Diese Antwort im Kontext lesen 👍 3

Alle Antworten (1)

more options

Ausgewählte Lösung

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