Hi Mathieu,
we're using simple PS scripts to update all our browsers daily:
if (Test-Path "C:\Program Files\Mozilla Firefox") {
$url = "
https://download.mozilla.org/?product=firefox-esr-msi-latest-ssl&os=win64&lang=de
"
$dest = "D:\FirefoxESR_x64_latest.msi"
Invoke-WebRequest -Uri $url -OutFile $dest
taskkill /IM firefox.exe /F
Start-Process -wait -FilePath "D:\FirefoxESR_x64_latest.msi"
-ArgumentList "/qn ALLUSERS=2 TASKBAR_SHORTCUT=false
DESKTOP_SHORTCUT=false START_MENU_SHORTCUT=false
INSTALL_MAINTENANCE_SERVICE=false OPTIONAL_EXTENSIONS=false"
}
Mit freundlichen Grüßen
Georg