Pomoc pśepytaś

Glědajśo se wobšudy pomocy. Njenapominajomy was nigda, telefonowy numer zawołaś, SMS pósłaś abo wósobinske informacije pśeraźiś. Pšosym dajśo suspektnu aktiwitu z pomocu nastajenja „Znjewužywanje k wěsći daś“ k wěsći.

Dalšne informacije

is there a way to tell firefox allow and remember the java plugin for all users via command line or script?

  • 5 wótegrona
  • 1 ma toś ten problem
  • 17 naglědow
  • Slědne wótegrono wót CLIVEBUCKWHEAT

more options

Hi

I have about 200 computers that i'd like to push the following setting to

allow and remember the java plugin for firefox for all users

is there a way to do this via a config file or script?

Hi I have about 200 computers that i'd like to push the following setting to allow and remember the java plugin for firefox for all users is there a way to do this via a config file or script?

Wubrane rozwězanje

You need to create both files in the Firefox program folder.

  • local-settings.js file in the defaults\pref folder where you find channel-prefs.js
  • mozilla.cfg in the main Firefox program folder
Toś to wótegrono w konteksće cytaś 👍 1

Wšykne wótegrona (5)

more options

Hi livebuckwheat, Please see: http://kb.mozillazine.org/Locking_preferences for more details.

more options

You can use this content in the mozilla.cfg file:

//
pref("plugin.state.java", 2);

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

See also:

more options

I do not see the mozilla.cfg file, where about is it located?

more options

Wubrane rozwězanje

You need to create both files in the Firefox program folder.

  • local-settings.js file in the defaults\pref folder where you find channel-prefs.js
  • mozilla.cfg in the main Firefox program folder
more options

Thanks. I finally figured that out. You've been an amazing help.