Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

disable auto update via sccm

  • 2 trả lời
  • 1 gặp vấn đề này
  • 7 lượt xem
  • Trả lời mới nhất được viết bởi 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

Tất cả các câu trả lời (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.