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!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

What is the command line switch to disable the auto update feature?

  • 2 个回答
  • 15 人有此问题
  • 6 次查看
  • 最后回复者为 cor-el

more options

We have approximately 300 users and utilize SCCM to push out Firefox. The users do not have Admin rights so they are unable to update to the latest versions when Auto Update notifies them of this new update. How can I disable Auto Update? I know it can be done manually in the browser. Is there a command line switch I can add to the package we deploy that will disable auto update during installation?

Thanks

We have approximately 300 users and utilize SCCM to push out Firefox. The users do not have Admin rights so they are unable to update to the latest versions when Auto Update notifies them of this new update. How can I disable Auto Update? I know it can be done manually in the browser. Is there a command line switch I can add to the package we deploy that will disable auto update during installation? Thanks

所有回复 (2)

more options

This isn't a great fix but it's helped us out. We created an autoit script to edit the firefox.js file found in program files\mozilla firefox\default\pref. It searches for the line "pref("app.update.auto", true);" and changes it to "pref("app.update.auto", false);". It's a pain but it's the best we could come up with.

Note: We updated to 3.6.14 and even with the setting above FF still did an auto update to 3.6.15.

more options

See also:

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