You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just found your Update-MozillaFirefox script and just wanted to say it's great but I'd like to use this inside an enterprise environment using SCCM, to upgrade Firefox to 58.0.2 , to the machines that have other language versions of Firefox installed other than English and make it completley silent.
The difference here is that your script checks system local settings.
We usually achieve this through Appdeploytoolkit. For the en-US, de locale we used a based App Deploy Toolkit script. For the other machines is pretty time consuming to check their firefox installation language.
Does your script accept any quiet/silent switches?
Thank you.
The text was updated successfully, but these errors were encountered:
Oh, I think I misunderstood your initial issue (not trying to install English, but other language versions)...
"your script checks system local settings"
Yes, this is true, but those are not supposed to be used at all, if the pre-existing Firefox language has been identified. In a nutshell, the language preference selection was supposed to be:
(1) Use the language which was used in the previous Firefox installation: If ($firefox_enumeration.Locale -ne $null) $lang = [string]'&lang=' + $firefox_enumeration.Locale
(2) Try to figure out the system language and try to download that version of Firefox...
If that preference is not happening, it's a clear bug and should be investigated further.
Just for clarification: Update-MozillaFirefox is (...or should be) completely automated, if the script detects one previous Firefox installation. If there are multiple Firefox versions installed, the script will exit without touching any pre-existing Firefox files. If the script doesn't detect any Firefox installations, the "Admin Corner" is launched, where a certain version may manually be selected for installation.
About the quiet/silent mode: Text is inputted into the PowerShell console by this script and several files are generated to the $env:temp folder. Would you prefer to have no input at all in the PowerShell window with the quiet/silent switch?
Hi
Just found your Update-MozillaFirefox script and just wanted to say it's great but I'd like to use this inside an enterprise environment using SCCM, to upgrade Firefox to 58.0.2 , to the machines that have other language versions of Firefox installed other than English and make it completley silent.
The difference here is that your script checks system local settings.
We usually achieve this through Appdeploytoolkit. For the en-US, de locale we used a based App Deploy Toolkit script. For the other machines is pretty time consuming to check their firefox installation language.
Does your script accept any quiet/silent switches?
Thank you.
The text was updated successfully, but these errors were encountered: