
6,947,912
Downloads
3,018
Downloads of v 37.0.0.20150401
4/1/2015
Last update
Mozilla Firefox
37.0.0.20150401
Bringing together all kinds of awesomeness to make browsing better for you.
This package installs Firefox in the first language which matches this list:
- Install arguments override parameter if present, e.g.
choco install Firefox -packageParameters "l=en-GB"
. To get a list of all available locales have a look at this folder: http://releases.mozilla.org/pub/mozilla.org/firefox/releases/latest/win32/. - If Firefox is already installed: the same language as the already installed Firefox.
- The Windows system language where the Firefox package gets installed.
- If Firefox does not support the system language, it will fallback to “en-US”
Looking for Firefox Developer Edition? Install the firefox-dev package.
To install Mozilla Firefox, run the following command from the command line or from PowerShell:
C:\> choco install firefox
--version 37.0.0.20150401
To upgrade Mozilla Firefox, run the following command from the command line or from PowerShell:
C:\> choco upgrade firefox
--version 37.0.0.20150401
Files
Hide- tools\chocolateyInstall.ps1
Show
# ---------------- Function definitions ------------------ function GetUninstallPath () { $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\' $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name if (Test-Path $regUninstallDirWow64) { $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name } $uninstallPath = $uninstallPaths -match "Mozilla Firefox [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select -First 1 return $uninstallPath } function GetLocale() { $availableLocales = Get-Content "$env:TEMP\chocolatey\Firefox\availableLocales.html" # --- Get locale from installArgs if specified $packageParameters = $env:chocolateyPackageParameters $packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" } $argumentMap = ConvertFrom-StringData $packageParameters $localeFromPackageParameters = $argumentMap.Item('l') # --- # --- Get already installed locale if available $uninstallPath = GetUninstallPath($null) $alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)", '$1' # --- # --- Other locales $systemLocaleAndCountry = (Get-Culture).Name $systemLocaleTwoLetter = (Get-Culture).TwoLetterISOLanguageName $fallbackLocale = 'en-US' # --- $locales = $localeFromPackageParameters, $alreadyInstalledLocale, $systemLocaleAndCountry, $systemLocaleTwoLetter, $fallbackLocale foreach ($locale in $locales) { $localeMatch = $availableLocales -match "os=win&lang=$locale`"" | Select -First 1 if ($localeMatch -and $locale -ne $null) { break } } return $locale } function AlreadyInstalled($version) { $uninstallEntry = "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla Firefox ${version}*" $uninstallEntryWow64 = "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Mozilla Firefox ${version}*" if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) { return $true } else { return $false } } # ---------------------------------- $packageName = 'Firefox' $fileType = 'exe' $version = '37.0' $urlFile = 'https://www.mozilla.org/en-US/firefox/all/' $filePath = "$env:TEMP\chocolatey\$packageName" try { $alreadyInstalled = AlreadyInstalled($version) if ($alreadyInstalled) { Write-Host "Firefox $version is already installed." } else { if (-not (Test-Path $filePath)) { New-Item -ItemType directory -Path $filePath } Get-ChocolateyWebFile 'locales list for Firefox' "$env:TEMP\chocolatey\$packageName\availableLocales.html" $urlFile $locale = GetLocale $url = "http://download.mozilla.org/?product=firefox-$version&os=win&lang=$locale" Install-ChocolateyPackage $packageName $fileType '-ms' $url } } catch { Write-ChocolateyFailure $packageName $($_.Exception.Message) throw }
Virus Scan Results
- Firefox Setup 37.0.exe (325dbabb1180) - ## / 56 - Log in or click on link to see number of positives
- Firefox.37.0.0.20150401.nupkg (ae9cfe3ee402) - ## / 57 - Log in or click on link to see number of positives
Dependencies
This package has no dependencies.
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
37.0.0.20150401: Use packageParameters for locale override. Fix package vor Chocolatey ≥ 0.9.x.
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Mozilla Firefox 65.0.1 | 63899 | Sunday, February 17, 2019 | approved |
Mozilla Firefox 65.0 | 132479 | Tuesday, January 29, 2019 | approved |
Mozilla Firefox 64.0.2 | 123365 | Thursday, January 10, 2019 | approved |
Mozilla Firefox 64.0 | 144763 | Tuesday, December 11, 2018 | approved |
Mozilla Firefox 63.0.3 | 157214 | Friday, November 16, 2018 | approved |
Mozilla Firefox 63.0.1 | 144573 | Thursday, November 1, 2018 | approved |
Mozilla Firefox 63.0 | 103396 | Tuesday, October 23, 2018 | approved |
Mozilla Firefox 62.0.3 | 148910 | Wednesday, October 3, 2018 | approved |
Mozilla Firefox 62.0.2 | 103843 | Saturday, September 22, 2018 | approved |
Mozilla Firefox 62.0 | 149950 | Thursday, September 6, 2018 | approved |
Discussion for the Mozilla Firefox Package
Ground rules:
- This discussion is only about Mozilla Firefox and the Mozilla Firefox package. If you have feedback for Chocolatey, please contact the google group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Mozilla Firefox, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.