Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla サポートの検索

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

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Turn off automatic updater prior to installing Firefox.

  • 3 件の返信
  • 2 人がこの問題に困っています
  • 4 回表示
  • 最後の返信者: cor-el

more options

I am about to deploy firefox to about 100 XP machines. I would like to turn off the Firefox automatic updater function prior to the install to the machine. I need to control what version of Firefox each user has.

I am about to deploy firefox to about 100 XP machines. I would like to turn off the Firefox automatic updater function prior to the install to the machine. I need to control what version of Firefox each user has.

すべての返信 (3)

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 defaults\pref 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
more options

Let's see If I understand your reply; 1st create a local-settings.js file and put it in the Mozilla firefox\defaults\pref folder.

It would have the following settings;
pref ("general.config.filename", "mozilla.cfg");
pref ("general.config.obscure_value", 0);

2nd create create a mozilla.cfg file and put it in the root folder c:\program files\Mozilla Firefox In this file what value tells the auto update to turn off?

defaultPref () ; // ?

pref (); // set pref, but allow changes in current sesson

lockPref () ; // lock pref, disallow changes

So once this is done save both files to there respective locations and restart Firefox?

Then I would need to create a batch file that would copy these files to the correct location?

more options

The mozilla.cfg file needs to start with a line that only contains a comment (//)

You can copy lines from prefs.js to the mozilla.cfg file and change the function name to what you want to use the pref for.

//
lock_pref("app.update.auto", false);
lock_pref("app.update.enabled", false);