Search Support

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

disable auto update via sccm

  • 2 பதிலளிப்புகள்
  • 1 இந்த பிரச்சனை உள்ளது
  • 8 views
  • Last reply by yanezdave

we utilize sccm for all software updates and deployments. is there something we can package or script out for firefox to disable the auto update feature in firefox. I have tested the below but am coming up short:

I have the .exe and configuration.ini file containing the below:

MaintenanceService=false // disable updater lockPref("app.update.enabled", false); // make absolutely sure it is really off lockPref("app.update.auto", false)' lockPref("app.update.mode", 0)' lockPref("app.update.service.enabled", false);

I then have an install.bat that points to the .exe with Firefox Setup 35.0.exe /INI=configuration.ini

or perhaps there are switches I can add manually in the command line install like the -ms

thanks

we utilize sccm for all software updates and deployments. is there something we can package or script out for firefox to disable the auto update feature in firefox. I have tested the below but am coming up short: I have the .exe and configuration.ini file containing the below: MaintenanceService=false // disable updater lockPref("app.update.enabled", false); // make absolutely sure it is really off lockPref("app.update.auto", false)' lockPref("app.update.mode", 0)' lockPref("app.update.service.enabled", false); I then have an install.bat that points to the .exe with Firefox Setup 35.0.exe /INI=configuration.ini or perhaps there are switches I can add manually in the command line install like the -ms thanks

All Replies (2)

If you are deploying for many users? I'd suggest you check out Firefox ESR, https://www.mozilla.org/en-US/firefox/organizations/ which lets you only update major versions once a year but still keep your users secure. There is also a mailing list that will help you deploy Firefox.

yanezdave said

we utilize sccm for all software updates and deployments. is there something we can package or script out for firefox to disable the auto update feature in firefox. I have tested the below but am coming up short: I have the .exe and configuration.ini file containing the below: MaintenanceService=false // disable updater lockPref("app.update.enabled", false); // make absolutely sure it is really off lockPref("app.update.auto", false)' lockPref("app.update.mode", 0)' lockPref("app.update.service.enabled", false); I then have an install.bat that points to the .exe with Firefox Setup 35.0.exe /INI=configuration.ini or perhaps there are switches I can add manually in the command line install like the -ms thanks

i think we are ok with deploying the regular ff. i was just looking for a way to disable the auto update during deployment. perhaps i will keep digging. appreciate ur help.