Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

disable auto update via sccm

  • 2 Antworten
  • 1 hat dieses Problem
  • 11 Aufrufe
  • Letzte Antwort von yanezdave

more options

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

Alle Antworten (2)

more options

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.

more options

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.