
6,961,709
Downloads
121,059
Downloads of v 53.0.3
5/19/2017
Last update
Bringing together all kinds of awesomeness to make browsing better for you.
Features
- Freedom is fast: Go anywhere you want on the Web — with a quickness.
- Freedom is personal: Enjoy the most built-in privacy tools of any browser.
- Freedom is yours: people, not profit.
Notes
- Looking for Firefox Developer Edition? Install the firefox-dev package.
- Looking for Firefox Extended Support Release? Install the FirefoxESR package.
- 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 file: https://releases.mozilla.org/pub/firefox/releases/latest/README.txt. - 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 fall back to “en-US”
This package installs Firefox in the first language which matches this list:
- Install arguments override parameter if present, e.g.
To install Mozilla Firefox, run the following command from the command line or from PowerShell:
C:\> choco install firefox
--version 53.0.3
To upgrade Mozilla Firefox, run the following command from the command line or from PowerShell:
C:\> choco upgrade firefox
--version 53.0.3
Files
Hide- tools\LanguageChecksums.csv
- tools\helpers.ps1
Show
function GetUninstallPath() { param( [Parameter(Mandatory = $true)] [string]$product ) $regUninstallDir = 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\' $regUninstallDirWow64 = 'HKLM:\SOFTWARE\Wow432Node\Microsoft\Windows\CurrentVersion\Uninstall\' $uninstallPaths = $(Get-ChildItem $regUninstallDir).Name if (Test-Path $regUninstallDirWow64) { $uninstallPaths += $(Get-ChildItem $regUninstallDirWow64).Name } $uninstallPath = $uninstallPaths -match "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | select -first 1 return $uninstallPath } function GetLocale { param( [Parameter(Mandatory = $true)] [string]$localeFile, [Parameter(Mandatory = $true)] [string]$product ) #$availableLocales = Get-WebContent $localeUrl 2>$null $availableLocales = Get-Content $localeFile | % { $_ -split '\|' | select -first 1 } | select -Unique $packageParameters = $env:chocolateyPackageParameters $packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" } $argumentMap = ConvertFrom-StringData $packageParameters $localeFromPackageParameters = $argumentMap.Item('l') $uninstallPath = GetUninstallPath -product $product $alreadyInstalledLocale = $uninstallPath -replace ".+\s([a-zA-Z\-]+)\)",'$1' $systemLocalizeAndCountry = (Get-Culture).Name $systemLocaleTwoLetter = (Get-Culture).TwoLetterISOLanguageName $fallbackLocale = 'en-US' $locales = $localeFromPackageParameters, $alreadyInstalledLocale, ` $systemLocalizeAndCountry, $systemLocaleTwoLetter, $fallbackLocale foreach ($locale in $locales) { $localeMatch = $availableLocales | ? { $_ -eq $locale } | select -first 1 if ($localeMatch -and $locale -ne $null) { break } } return $locale } function AlreadyInstalled() { param( [Parameter(Mandatory = $true)] [string]$product, [Parameter(Mandatory = $true)] [string]$version ) $uninstallEntry = $( "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*" ) $uninstallEntryWow64 = $( "HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\$product $version*" ) if ((Test-Path $uninstallEntry) -or (Test-Path $uninstallEntryWow64)) { return $true } return $false } function Get-32bitOnlyInstalled() { param( [Parameter(Mandatory = $true)] [string]$product ) $systemIs64bit = Get-ProcessorBits 64 if (-Not $systemIs64bit) { return $false } $registryPaths = @( 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall' 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall' ) $installedVersions = Get-ChildItem $registryPaths | ? { $_.Name -match "$product [\d\.]+ \(x(64|86)" } if ( $installedVersions -match 'x86' ` -and $installedVersions -notmatch 'x64' ` -and $systemIs64bit ) { return $true } } function GetChecksums() { param( [Parameter(Mandatory = $true)] [string]$language, [Parameter(Mandatory = $true)] $checksumFile ) Write-Debug "Loading checksums from: $checksumFile" $checksumContent = Get-Content $checksumFile $checksum32 = ($checksumContent -match "$language\|32") -split '\|' | select -last 1 $checksum64 = ($checksumContent -match "$language\|64") -split '\|' | select -last 1 return @{ "Win32" = $checksum32 "Win64" = $checksum64 } }
- tools\chocolateyUninstall.ps1
Show
$ErrorActionPreference = 'Stop'; $packageName = 'Firefox' $uninstalled = $false [array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Firefox*' | ? { $_.DisplayName -notmatch "ESR" } if ($key.Count -eq 1) { $key | % { $packageArgs = @{ packageName = $packageName fileType = 'exe' silentArgs = '-ms' validExitCodes= @(0) file = "$($_.UninstallString.Trim('"'))" } Uninstall-ChocolateyPackage @packageArgs Write-Warning "Auto Uninstaller may detect Mozilla Maintenance Service." Write-Warning "This should not be uninstalled if any other Mozilla product is installed." } } elseif ($key.Count -eq 0) { Write-Warning "$packageName has already been uninstalled by other means." } elseif ($key.Count -gt 1) { Write-Warning "$($key.Count) matches found!" Write-Warning "To prevent accidental data loss, no programs will be uninstalled." Write-Warning "Please alert package maintainer the following keys were matched:" $key | % {Write-Warning "- $($_.DisplayName)"} }
- tools\chocolateyInstall.ps1
Show
$ErrorActionPreference = 'Stop' # This is the general install script for Mozilla products (Firefox and Thunderbird). # This file must be identical for all Choco packages for Mozilla products in this repository. $toolsPath = Split-Path $MyInvocation.MyCommand.Definition . $toolsPath\helpers.ps1 $packageName = 'Firefox' $softwareName = 'Mozilla Firefox' $alreadyInstalled = (AlreadyInstalled -product $softwareName -version '53.0.3') if (Get-32bitOnlyInstalled -product $softwareName) { Write-Output $( 'Detected the 32-bit version of Firefox on a 64-bit system. ' + 'This package will continue to install the 32-bit version of Firefox ' + 'unless the 32-bit version is uninstalled.' ) } if ($alreadyInstalled -and ($env:ChocolateyForce -ne $true)) { Write-Output $( "Firefox is already installed. " + 'No need to download an re-install again.' ) } else { $locale = GetLocale -localeFile "$toolsPath\LanguageChecksums.csv" -product $softwareName $checksums = GetChecksums -language $locale -checksumFile "$toolsPath\LanguageChecksums.csv" $packageArgs = @{ packageName = $packageName fileType = 'exe' softwareName = "$softwareName*" Checksum = $checksums.Win32 ChecksumType = 'sha512' Url = "https://download.mozilla.org/?product=firefox-53.0.3-SSL&os=win&lang=${locale}" silentArgs = '-ms' validExitCodes = @(0) } if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-ProcessorBits 64)) { $packageArgs.Checksum64 = $checksums.Win64 $packageArgs.ChecksumType64 = 'sha512' $packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-53.0.3-SSL&os=win64&lang=${locale}" } Install-ChocolateyPackage @packageArgs }
Virus Scan Results
- Firefox.53.0.3.nupkg (050051006921) - ## / 58 - Log in or click on link to see number of positives
- Firefox Setup 53.0.3.exe (d0b71722ef6a) - ## / 60 - Log in or click on link to see number of positives
- Firefox Setup 53.0.3.exe (a4b38d1c53cf) - ## / 59 - Log in or click on link to see number of positives
Dependencies
-
- chocolatey-core.extension (≥ 1.0)
Package Maintainer(s)
Software Author(s)
Tags
Release Notes
https://www.mozilla.org/en-US/firefox/53.0.3/releasenotes/
Version History
Version | Downloads | Last updated | Status |
---|---|---|---|
Mozilla Firefox 65.0.1 | 77502 | Sunday, February 17, 2019 | approved |
Mozilla Firefox 65.0 | 132500 | Tuesday, January 29, 2019 | approved |
Mozilla Firefox 64.0.2 | 123380 | Thursday, January 10, 2019 | approved |
Mozilla Firefox 64.0 | 144772 | Tuesday, December 11, 2018 | approved |
Mozilla Firefox 63.0.3 | 157257 | Friday, November 16, 2018 | approved |
Mozilla Firefox 63.0.1 | 144573 | Thursday, November 1, 2018 | approved |
Mozilla Firefox 63.0 | 103398 | Tuesday, October 23, 2018 | approved |
Mozilla Firefox 62.0.3 | 148917 | Wednesday, October 3, 2018 | approved |
Mozilla Firefox 62.0.2 | 103849 | Saturday, September 22, 2018 | approved |
Mozilla Firefox 62.0 | 149956 | 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.