We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Pomoc přepytać

Hladajće so wobšudstwa pomocy. Njenamołwimy was ženje, telefonowe čisło zawołać, SMS pósłać abo wosobinske informacije přeradźić. Prošu zdźělće podhladnu aktiwitu z pomocu nastajenja „Znjewužiwanje zdźělić“.

Dalše informacije

How to disable plugins out of date notification, on more then one computer.

  • 2 wotmołwje
  • 2 matej tutón problem
  • 2 napohladaj
  • Poslednja wotmołwa wot cor-el

more options

Hello

I need to disable out of date notification in firefox. It would be simple to do it in about:config, but i need to do it at 100 pc at once.

Any script, bat, gpo will be awesome

Hello I need to disable out of date notification in firefox. It would be simple to do it in about:config, but i need to do it at 100 pc at once. Any script, bat, gpo will be awesome

Wšě wotmołwy (2)

more options

Hi,

One way you could try is to take a modified prefs.js file and copy/overwrite it on the PCs using a logon script.

more options

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

Place a file local-settings.js in the defaultspref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

Set the plugins.update.url pref to an empty string and set the plugins.hide_infobar_for_outdated_plugin pref to true on the about:config page.