Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

2,545,343

Downloads of v 102.14.0:

27,960

Last Update:

01 Aug 2023

Package Maintainer(s):

Software Author(s):

  • Mozilla

Tags:

browser mozilla firefox admin foss cross-platform

Mozilla Firefox

This is not the latest version of Mozilla Firefox available.

  • 1
  • 2
  • 3

102.14.0 | Updated: 01 Aug 2023

Downloads:

2,545,343

Downloads of v 102.14.0:

27,960

Maintainer(s):

Software Author(s):

  • Mozilla

Mozilla Firefox 102.14.0

This is not the latest version of Mozilla Firefox available.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install Mozilla Firefox, run the following command from the command line or from PowerShell:

>

To upgrade Mozilla Firefox, run the following command from the command line or from PowerShell:

>

To uninstall Mozilla Firefox, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade firefoxesr -y --source="'INTERNAL REPO URL'" --version="'102.14.0'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade firefoxesr -y --source="'INTERNAL REPO URL'" --version="'102.14.0'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install firefoxesr
  win_chocolatey:
    name: firefoxesr
    version: '102.14.0'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'firefoxesr' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '102.14.0'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller firefoxesr
{
    Name     = "firefoxesr"
    Version  = "102.14.0"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'firefoxesr':
  ensure   => '102.14.0',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

Package Approved

This package was approved as a trusted package on 01 Aug 2023.

Description

Bringing together all kinds of awesomeness to make browsing better for you.

Features

This Package installs Firefox ESR

  • A powerful, new engine that’s built for rapidfire performance.
  • Better, faster page loading that uses less computer memory.
  • Gorgeous design and smart features for intelligent browsing.
  • Instantly import your online info and favorites from any other browser.
  • The most powerful private browsing mode with added tracking protection.
  • Firefox Quantum features: screenshots, pocket, gaming & VR, library.
  • Customization Features - addons & extensions, themes, toolbar.
  • Synced across devices - passwords, bookmarks, tabs and more.
  • Ad tracker blocking

Package Parameters

  • /l:LOCALE - Install given Firefox locale. See the official page for a complete list of available locales. Note that by providing this parameter the package will not check mozilla.org for a locale.

Command-line options for installer configuration. See the official page for details and defaults.

  • /InstallDir:PATH
  • /NoTaskbarShortcut Do not create Taskbar Shortcut
  • /NoDesktopShortcut Do not create Desktop Shortcut
  • /NoStartMenuShortcut Do not create Start Menu Shortcut
  • /NoMaintenanceService Do not install Maintenance Service
  • /RemoveDistributionDir Remove Distribution directory on installation/update. (This is the default behavior of the Firefox Installer, but not for this Chocolatey Package)
  • /NoAutoUpdate Sets a policies.json file to not update Firefox and does not install the Maintenance Service
  • /UseMozillaFallback Makes a request to mozilla.org and reads the supported Language Culture code from the website

Examples

choco install Firefox --params "/l:en-GB"
choco install Firefox --params "/NoTaskbarShortcut /NoDesktopShortcut /NoAutoUpdate"
choco install Firefox --params "/l:en-GB /RemoveDistributionDir"

Notes

  • Looking for Firefox Developer Edition? Install the firefox-dev package.
  • Looking for Firefox for Personal Use? Install the Firefox package.
  • If locale package parameter is not present, this package installs Firefox ESR in the first language which matches this list:
    1. If Firefox ESR is already installed it uses the same language as the already installed one.
    2. The Windows system language.
    3. Language Culture code specified on Mozilla website (only when /UseMozillaFallback is specified).
    4. If Firefox ESR does not support the system language, it will fall back to en-US.
  • If the package is out of date please check Version History for the latest submitted version. If you have a question, please ask it in Chocolatey Community Package Discussions or raise an issue on the Chocolatey Community Packages Repository if you have problems with the package. Disqus comments will generally not be responded to.

tools\helpers.ps1
function GetUninstallPath() {
  param(
    [Parameter(Mandatory = $true)]
    [string]$product
  )
  $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 "$product [\d\.]+ \([^\s]+ [a-zA-Z\-]+\)" | Select-Object -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 | ForEach-Object { $_ -split '\|' | Select-Object -First 1 } | Select-Object -Unique
  Write-Debug "$($availableLocales.Count) locales are stored.`n$availableLocales"

  $PackageParameters = Get-PackageParameters

  if ($PackageParameters['l']) {
    $localeFromPackageParameters = $PackageParameters['l']
    Write-Verbose "User chooses '$localeFromPackageParameters' as a locale..."
    $localeFromPackageParametersTwoLetter = $localeFromPackageParameters -split '\-' | Select-Object -First 1
    Write-Verbose "With fallback to '$localeFromPackageParametersTwoLetter' as locale..."
  }

  $uninstallPath = GetUninstallPath -product $product

  $alreadyInstalledLocale = $uninstallPath -replace '.+\s([a-zA-Z\-]+)\)', '$1'
  Write-Verbose "Installed locale is: '$alreadyInstalledLocale'..."

  $systemLocalizeAndCountry = (Get-UICulture).Name
  $systemLocaleThreeLetter = (Get-UICulture).ThreeLetterWindowsLanguageName
  $systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName

  # Never change the fallback locale here, this is the absolute
  # value we always expect to fall back to when nothing else is
  # found.
  $fallbackLocale = $mozillaFallback = 'en-US'
  if ($PackageParameters['UseMozillaFallback']) {
    Write-Verbose "System locale is: '$systemLocalizeAndCountry'..."
    # We need to use web content instead of web headers here, due to
    # web header helper does not allow custom headers.
    $urlParts = @( 'htt', 'mozilla' )
    $Response = Get-WebContent -url "$($urlParts[0])ps://www.$($urlParts[1]).org/" -Options @{ Headers = @{ 'Accept-Language' = $systemLocalizeAndCountry } } -ErrorAction Ignore 2>$null
    # The lang attribute on the html element will be the closest
    # supported language when comparing to the system locale.
    # As such we use that as an additional fallback when possible.
    if ($Response -match 'lang="(?<locale>[^"]+)"') {
      $mozillaFallback = $Matches['locale']
      Write-Verbose "Mozilla fallback locale is: '$mozillaFallback'..."
    }
    else {
      Write-Warning 'No fallback found using the Mozilla website.'
    }
  }

  Write-Verbose "Absolute Fallback locale is: '$fallbackLocale'..."

  $locales = $localeFromPackageParameters, $localeFromPackageParametersTwoLetter, `
    $alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleThreeLetter, `
    $systemLocaleTwoLetter, $mozillaFallback, $fallbackLocale

  foreach ($locale in $locales) {
    Write-Debug "Testing locale $locale of whether we have the information or not"
    $localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -First 1
    if ($localeMatch -and $locale -ne $null) {
      Write-Host "Using locale '$locale'..."
      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-OSArchitectureWidth 64

  if (-Not $systemIs64bit) {
    return $false
  }

  $registryPaths = @(
    'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall'
    'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall'
  )

  $installedVersions = Get-ChildItem $registryPaths | Where-Object { $_.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-Object -Last 1
  $checksum64 = ($checksumContent -match "$language\|64") -split '\|' | Select-Object -Last 1

  return @{
    'Win32' = $checksum32
    'Win64' = $checksum64
  }
}
tools\chocolateyInstall.ps1
$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 = 'FirefoxESR'
$softwareName = 'Mozilla Firefox*ESR'

$pp = Get-PackageParameters

$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '102.14.0')

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.'
  )
}

$sa = ""

# Command Line Options from the Firefox installer
# https://firefox-source-docs.mozilla.org/browser/installer/windows/installer/FullConfig.html

# Always prevent Firefox installer to require a reboot
$sa += " /PreventRebootRequired=true"

# Prevent RemoveDistributionDir by default
$sa += " /RemoveDistributionDir=false"


$sa += if ($pp.InstallDir) { " /InstallDirectoryPath=" + $pp.InstallDir }

$sa += if ($pp.NoTaskbarShortcut) { " /TaskbarShortcut=false" }

$sa += if ($pp.NoDesktopShortcut) { " /DesktopShortcut=false" }

$sa += if ($pp.NoStartMenuShortcut) { " /StartMenuShortcut=false" }

$sa += if ($pp.NoMaintenanceService) { " /MaintenanceService=false" }

$sa += if ($pp.RemoveDistributionDir) { " /RemoveDistributionDir=true" }

$sa += if ($pp.NoAutoUpdate) { " /MaintenanceService=false" }

if ($alreadyInstalled -and !$env:ChocolateyForce) {
  Write-Output $(
    "Firefox is already installed. " +
    'No need to download and re-install.'
  )
}
else {
  $locale = 'en-US' #https://github.com/chocolatey/chocolatey-coreteampackages/issues/933
  $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-102.14.0esr-ssl&os=win&lang=${locale}"
    silentArgs     = "$sa /S"
    validExitCodes = @(0)
  }

  if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
    $packageArgs.Checksum64 = $checksums.Win64
    $packageArgs.ChecksumType64 = 'sha512'
    $packageArgs.Url64 = "https://download.mozilla.org/?product=firefox-102.14.0esr-ssl&os=win64&lang=${locale}"
  }

  Install-ChocolateyPackage @packageArgs
}

if ($pp.InstallDir) {
  $installPath = $pp.InstallDir
}
else {
  $installPath = Get-AppInstallLocation $softwareName
}

if (-Not(Test-Path ($installPath + "\distribution\policies.json") -ErrorAction SilentlyContinue) -and ($pp.NoAutoUpdate) ) {
  if (-Not(Test-Path ($installPath + "\distribution") -ErrorAction SilentlyContinue)) {
    New-Item ($installPath + "\distribution") -ItemType directory
  }

  $policies = @"
{
    "policies":  {
                     "DisableAppUpdate":  true
                 }
}
"@
  $policies | Out-File -FilePath ($installPath + "\distribution\policies.json") -Encoding ascii

}
tools\LanguageChecksums.csv
ach|32|0adb8b166cf3af9efcaea97af57b374613b65fa8db10fc86036e09a2265194a906371b62299117a867fd31596afa0ac71c2d6b00b583e889bdc59638ad6543b7
af|32|6646404b9916093eecc0b118fbce622ca5e0e0167248662e931c4fa9035db0a40495a865d2a14e2387f01616278b22d56e4e6ec2ddb60ab8e6ec1c6d4e1bd9f9
an|32|efe0134e6b5605113c0305db269a23665b48cab88c02dda0ab16d62c4676df090cb637fa8f9513a452d10e315eba2218d2baa42ae09af543c1a6292676042a76
ar|32|77955aaf61fd30384b74170ea1aafb9c5145c32f643851656c7a285c14d745835e173d11182bd5ed1a56bf928899ecdd2b7882f44c9a696e656712361c428b3a
ast|32|20db9488b39548d243c3ffd78e62df490d810c9e8e830d5a4a1522018764d1947b79c7fe7fc0d33326ed7b239581c1c805c73bb5f2d6cf625a48e47f5bf7f1e7
az|32|b17b7ff79a8fee8cea618cf2fdcb15e333981aad6492057c2767f9567cdd70c8904a3fc2442b834826ade8b8079925df2d0f60ec76dda5eaf8960033223c9ad2
be|32|abbdfbf51f01f7b58d7d2f912c72bd948b138f30a612bcfb2702d4ff601d0c139685df14f19f293feba78ac77fc99478d097d2e3cae56b885620f93a9e8f54fa
bg|32|8ecd0defb1709861ebcb92042ddc07407ddb8420b12c241dec57e679daba80eaf0bd1ba4bd6ac54dcf7814982d483bdc4c4913baabe093f7b1bd51f577d4c3ce
bn|32|86ca5155157e48e91c9e2893fc8477093a96950381c0f3e0272e92b733e5b668e81adaeb654596554378fa99e7b43189b2b1159c0f6b9b00120ebaefa9fccff0
br|32|736c974f75a03b445675b3e3dbb9ce771fd088d1123ba6b2707a9832c9657da97090f2890709af1dcdfd028210cd0c695bf47af5c73906b66dc9fb5028c8df7c
bs|32|3921be8150cba9037f2fb4ffb9c1980ada688041202bd4c4ddf7ef7bf05fcb471406c0ca24e9e9f204960d8ff103805c1e1cabe9101d3862cd4a05b94af565d8
ca-valencia|32|f77be9452ceaa731f0d898d72aa06bf974014bd358861ab4e4e036b92d8403e61265c96103a011ac18258a0c877e98ecf4c4451d5ee035c10bda30337e36a562
ca|32|313fc34200eb11dcdb9a08c4cc3bc30616f5a08e2904d72586855fb368abc1e8a498ef5e095bdb844b4c8b17985eb5579596226afae8b02ce9d38d7f93d7ab0f
cak|32|132b9aa792fea7718dd96f89396fff3bc1fb25989ab4cd60e58edb34f81129f29a88322b8638cee191c8c9eb1580e6e09625707d41de4cd488f9e8a18f02b100
cs|32|bcf3ec73f534c2cfba704659565d218c031f535753e95f9566f2909ccfb24a86dde048a03770c6b2cd24e38b65ffc13236298f87430271259a65c5ec7c5f5b84
cy|32|7f4630d2cc342290337b2c8c8f460ba1dc95cc35e371c38cca0956f7c48d6cc6be6808bda9f8a928a8538844ced0422eea5a1d11c04667d9bc77d3e05773d701
da|32|81b3263819c920b41f42c4c92fc0e36b8c4ca0b7c38400ffd64206caac744b231db96b6e2f0c2d90f63cd7fe7a3ece81e09c7cc2babb4ee331b03a687aa310c2
de|32|27f93185dfad976951f585145340d624a0877040f72933b2df84282a0345a8796a5381713b52743368b9e8e00266cd52ce53b26b8676d1dde0a0cbf857ddb917
dsb|32|d5a263ae5926dfc4eaa6f5d93f7d0a2729147ac12a0b403d6d4e70d2565e8f05867b971a071198cacf0fb60e0599f6db070c0df426f5d290b798909903e5abc0
el|32|bfdf63a64824411e7c9e469fd19d1d01dc6d1f56cd7091f8274227acf2d949248966c747e19f27404814546fc59b6ea0aea42d0b4cadadc6c4722882c629b3dd
en-CA|32|70ddd44a48100c241d9e28f345f5bb97ee4db0e5283cb1b545ec4547302fc4405df29383a468de429a3ee0a4a4c760696e569fd0168c2570231914edd47c8876
en-GB|32|9768c1f80157bd342b62a2e44e950b3bf0d301e533d4f91929f88b292ff9b0700f9e1431eb0594a41b372fe0032177a2b0c162654040ad8b5736dc94ad8994cc
en-US|32|2f3434ea70eae295191aa089ef04c964466f3d917da7fcd302356f6514e6f50c3991e3f114a70995daf7dbba872fe81a7f8af10877f8d766f7177cec08ca3928
eo|32|760e34f9130656d1e8c231125e96e1753556cfd11a3fcb0b5973a82c011abe60e36467cb5bcaa07874f9ce51a0873af838991237a754d3d6dd9284203d6463c6
es-AR|32|062a213766c47043e6feaf9d4f0437a03a4ed9ede02bac4c873c70f9574e3b196e4b73d87c2bb67be1d1e85abd1b4ff074d1da9310f7b8abf961f2efe889335f
es-CL|32|4e7ff97fa6cd4f0512769f7cbc5c915d9bc713447a3f5ee377a0b4b07f3a274a57006e4756212320274a7ae4eed69b66f59b18926a908ee3c5cfe9734304f4e7
es-ES|32|00c18b8da12cbef2529e8964fe63fdeb6941cd41556b97bbcf0e3011b12e2626d0fbf19706ca84549bb25b3bb4a5a4fa291767dd6286cb009c3263fb96315d5f
es-MX|32|ce46737320a48de61270c0af8c9abd0348d03578d4d93d25e0482f1b274cc0b335b68623326643c15cb153ca5fd38421b475b89dfc1d0b62588785928c116e91
et|32|884de7cb9be7f0ca1f2513f2dfd870ce5797d1e4689647abc32e90732b976e3b82537c6474b4fab89460ac363a7cdd3e940a50aeadc6afd3d2b35b927d4122e9
eu|32|8e2b2c0bbc24550d2d494f43cc10e7aa2822dbdb1b6e0f179e38716ea4b8015bcb92666d416ec8d5f406ea786f36663b249a041d3dc177ba144b40d3cc50ce1b
fa|32|51f0ec4a5d4238b8214a1a7b596384a365a689174a503db4ff4a5ac6ba64acd8b75ab443e61fc86e602e179893283b237933563b6870992e24f5c6a8032792d6
ff|32|1dee9575a02efeb7bcc92d2f0e93d17a37b16c83769601c38676a7213d8549d23e82c9300ff6ffff3ee3150429d9eee06810040cd62a5e4433bd699df47280fe
fi|32|4ba1166f7b46f8f7ac61c4a952d56ca2fa0f350e9fb349492949e8aae5e27a0330bf455615db75301d675d6cb61e3470d0883392656d1b8598a50f700452cfdb
fr|32|3567d1ad1eb6333fa34e703e8972074b8945d6dafb97bab9dcd933924aef6e2748eaf553d3730c430b51bf03dc5dfca1935f807b2d4204900d1ebac9817b40df
fy-NL|32|f739024aba55d7920fe80aa3c877b4ea9212a10d7ea85e773214f2176970de37a4bd685428c2b50f2096b579f512622b7d59e38cdb1087f486b475957f26ffbe
ga-IE|32|cef360bc6ee3b9142efe382151fadde4744394dddb76742f210ad974d7cefa02d13b1ec57d60db1efc0711f1317f53b62bb551d2daf4c376961c9922d8fce5b4
gd|32|e397efa277e5978718d6e6334abf8c01c883dd8ded2a40fc1a0b380d827c47781783e4a52de4bcdeb9c5fa86086ec3574dc82491c28b111422fdc4f47049cdc7
gl|32|fb57b710bf39772fc8e893a71887bb8c81be0a0c0d0e22c987ac52d5eecc01939e18a5e0add383c48d7f99cc44e0e952162d87a0fc5f59bb1ec2b06fbf186a32
gn|32|5eaa53fd4e1a07897472bdde831b5cb9a6bd264bf70f9c43afa32ae86f7ff51e47a99cf922f8641ad471a7e8994dfba979e92ae39c4228eeb8b8a26c2285f9ad
gu-IN|32|785fdc7f0204d5dff50349c318438eec1ad7189a4eff08a57847f80fb13470fef60f0b3bc27508f6415007b13ee7dcd48b30de26b3b962f3afeedee90e88062c
he|32|257a9aef247db656f3b39f5a8a576530db6c54c381147a19bb523b369ec2839f16bcab62dd8073585dbf153f51e6738dc50b40d8de75e7e412327a627608d506
hi-IN|32|da59f108698c7a5b8c60e5c4219e725cb549e83024028e53f27ca138bd3bdf6ace7cd59be8163af38b22f321166cb98c5bc01709dd6b425bf91f3fd6861305db
hr|32|5c38675bfc10e2a6498c09e8fb9e2133c22cd4849b9e71fc8ce1828e414388b6b793a419752537825e31676d3a1367890773be2dc17d2f60c63782eae6ead4d6
hsb|32|0a4f572e2e42f990b3c223bbc9b0b8e7d8bae92f23c39be26842a2617fc7d5d0c1f7e1fbaea933724f49a7b2f0e8a07d8ec39a6d82f47076a02e5636660b103d
hu|32|f431c91edfdbde4e7ff2e256a401e905a44eab0146ea883b7552150aa50866ebb5f7d7454400645bdbdca6b7674af038707303728bea82320b26cba4ef0a4564
hy-AM|32|fe9bdeb7c5664eed4b48b69e546bf41b206a54fda9d28ff5bfa39fcae36b9d4cb51392d885ab4afe029f4aef9dfb741d72548f8ce5c9411938ca3babdfcfe816
ia|32|9bc1bfe475b565b69c00f491e6f2f290e7f28f6230ed3c97e34a93c07831d795d5ba57c8906f48a1d02ee7640eb14518e0458efa11d4e57a64d69773a64d1f3b
id|32|e1ea30a9b5e112ff0dedcefcad68f17ffbe8e8e254a99d07b4ef1713abd9fcc5caecab25c9896fb466d641c12155f540b8fe4d77b27c8c34b9c37f74f1a51b63
is|32|7400a4fb9b214e4e2938821f599c4dbbfa062c94f91b22cbc83aa100ab4955514f8f0425ee63a3765e4554609206487bce698be05e48c071e556dd06d696e68b
it|32|0c12ebe65118e07cc5f051a007780d1385ec705e17a857bd13f09264e943c6a4fa15cdbd4ed0145543f497f69e170236729e74d90df29d7ee189006b6db5beb2
ja|32|31de93a9b92265ee3ce11759e9391ccfaac4ad6593fb961f6962e488aab3ce2b46a10c50dc591d7541e7043900b30fa00e2552eaf31b84c16451413578ca396f
ka|32|e51c0a14bdbe5fabc4631cc7c484a09bb4ad47ccdd0f566aa9590a4a80e9ef41340a28071df8f867ec0d3645f8320a168147df2d34ad84f56a75ca534454a589
kab|32|2691f300138b4f47add3305c56cbcf2920433db257f3740b2a6f6115c06e491491cc209dab297e226308ebbbf949d7e87f2454c0b68aa6eefdaef59f5b722953
kk|32|7157453ac932d2410c32fd063236546a1307cf476a35542d8b82369495cf8c560b0c541c58cdf26d889c24ede795c3427baf36bf23c5856eba2562d5f8e017d4
km|32|03c5f0bc270894d98a69f31c96d21157595ff2fc82dd44336f89079f0d1f7dd873ed741fb1bb331eb81cdfa4f08d8432e6c6fb7b4f84ffbe2f588c97924b6558
kn|32|bcf8ec26b11414e0aa9815fac851b4bc4d370a2892236c2f4594491e7f33569cb535f7d6f411cdd89385ee805280cdc54de67d707f0d7897da4bb1c292405fe4
ko|32|05a1eb8a272cbe5ccd15f16f44a5040da6820d250ec83ff16dd81f532407de543158afa3a22c6d4643a4b1f90650264fc46bcff1ed0c3f6d067097b5aa0e521f
lij|32|66557cb26f0fd457893da53ad818ecff4f0984fe8806078f2201c70bcb87443cc25d73d10a93d05ceff34323eac12bf00ca35c1f8c3e52ca3c8b50e370c31d24
lt|32|8c2362bcf30ebc6b786b67622b588bbafcf627546973b73e03c5d8fdfbdc558a61c05d79b1c1185e087554fae69a9a6d8ecdb8b3b20f200911f48256814e87d5
lv|32|984301c9ef6440ff3f89a5d5ce4aa16a61441266ae4fe9cd88dc49b60ff608ca8c622f7649db0f190161996c65e05df548475a0fc04ec6bd65919e42bcc3cb73
mk|32|000eefa71d7906cfe40c1f2412951f0d44b8da5e20219543805e009971fb1e0c1f581e55a39b71451f4fa6d3eb6ec9a6b16593463d574395a85eb8f0a3ae9438
mr|32|4eda1075370d16f846030f49c76eac6220bd7cd13bba7c7a1d33dd8244172e35984e53592c82f69fac1a45b0c09074f1a530aa0efdd0d8e65eba9993168f0b97
ms|32|3743892df4d30fa56aba321ffb1234cbca62648fb2521e276bb7c9352aa146917987ba75f7dd20d842dbae25623ba06510581271581b2327201100600b0e2ce3
my|32|9414c9e0070ea91c49686b2b3c0769c5741daab4cbbaf2bb397363303b02e5299d366144934303f4778ea1b6e45dcd1b9b1b7c4a135c5f55d7603811841b44d4
nb-NO|32|898133cf034ff8156c1cead2f9fec601eced5e566752582a724fc84272a42860ad37ee87d1c3e12996609affd2757cddc8c0fcf4f27d96f32fc7e64cd75751e8
ne-NP|32|ef9c61687149242ab4cc3d819a73ba0c7467cbf11d78368c3502558fa4b6e6236c338b8acd1407d1b073034907267924f0dc56643b86619fd8562703776ec0f0
nl|32|f8aa59c3bd464bf2b67910fa0d0a9eac3fe097fb18e4810aede57f7fa588a06faafb6f44436c01f636f7e01e587a02624f302cc566de7e197374683be7e71176
nn-NO|32|2387242263a6838f678f63d52d20b007d0ea5b667a635062ff8c49fc0fccbfbe09eab0ad3a3725e4276d0a73e01999a2eda5bbb4eabd842be0d82271937fdd01
oc|32|38c941ca2eeb6416a554f1b3f314a51fb65a89dcb035aab048f1a962308ec3c52fe883f89e192297f56e8058160e183e583d84ab0a5d3cc27a939964a67fa02e
pa-IN|32|789a86aa1ad49608a168e91514d3f67fd73ce3cb111531ec4dea89bf7b886a58b720b1471712e6ff01ca656d713422cab46ce4c3e62338e3f1fafa33bea7792b
pl|32|cf6d95c6e3d98bea50379820867b72e4a5d22f98bf24404c8594117d6b7de6bbef6eb088cec71ad02a745f4fb28984cc52d0f12c75141d74ab8a45b64ec28815
pt-BR|32|1e0980aa48f29ca76a92e445b90b66cc275ec33697aa698a3c7fc0558e704545128526c7702a4444d40e79c298eda202f5ad9a0ae01c4c80ff7aef30d3384ff0
pt-PT|32|8a6cea0f698827d85583ca43ccfaec38f4d0ebb1db103a746288653eb624e4de1da0c1c64747bf953c5d4cf01437dbd410f6c0668bf2a8dcdb4a2636993624f0
rm|32|a0d6c9667b1ca26b2b667b2c8b1530fa10925b6bd57e9499f97e01b76d76bacc71007470ebe6969b5e59a2cc241206bacd3afcac79780dba4baf1f636532f3d5
ro|32|5b9d84001125bc85fcaccde9ee1504e36fedb83aa4147cbde8ef867b3cab41492c8a5fc1d1e5ce0017fbe17f4eb8cfe380fe97b4cbcc8e0c89611711888fe9ac
ru|32|894c2d27a1f462dcafeec5e49b4ca5db63d34cd4929658ec49efcaf717f98bf193e30b363c53e56289f504c995a8352db3aeb92127d58a93b7bd0c3ed9f87220
sco|32|7e07be89f9df47a608714cc4a3d03d29660bc075180a685d0a49c17eab0538442ecf16fa5995919090adf96da5b344a2303f783979f6385b7efd3e42c90ae0d6
si|32|a999defae8218ce0dedd0930ed3f3540d57ef50995c3618777cd20a82a66df3da7d16f3549a652852b0a6594b78b3af7a7c0a719593994ed6a75802af05da9c9
sk|32|5ca4c6253a02acb15a317f39ea0a12320e6e2f09e5ac7d8c299ddddb9623c57f2c9192c98e8b363d61279ce98bc10d7b536e23a09919571e6452aa895ff7a0d6
sl|32|ade7ccb338e865272af1cf113c47e054490f4114fb1c2b929def7e6bede719ad457db79b6caf73df210188d3a4cc4d5d2fd3511a1e510d8bcf560fcd66b44552
son|32|e623493ae8c58ee4160cd9c96606d394e25e7b1a316febecc6119438110203cf056ce0082cef044f26b8da754d53ceac64d29723ce1dc8107843f4db54fb8502
sq|32|3929b90d3889e1c9b5d748bb83ed003c9ffa7a4454ea4626509081c9ff43499cbf88803b1cd9f6afbe61687d47e5ce1afbde40b6dd1d99b5655cb639a2db9f41
sr|32|d6e510ec9e7a6f1dc4ce59cb67486848236795e1727fb31b7e6d78fc5f3ba1fedf008ce38e7be70b00f9c35f42288cb6e99cdaf9a245514ae1bb39b36a2f7839
sv-SE|32|e3f83a6f4d4b56ad270bd05ba531b73c00622ee468910946eb6a9ca660927a6ac9f38353f1b988a72d005265086f3d69b8fd3dfb86cb4604d25bd7e2cfa3cf04
szl|32|ea6cb917d742754e041a01f973f0fbab9c6223f37eaa4a13a2a15de6f4f4b224d2112d784703ac9a0d311cd4a9a94a7152f1af30abe385645cde865dcacf827c
ta|32|768df202ea149bcea866c6995e12a2fa04762d72bbba28b2c793f44f5d78ae8ad6556bb5ae6317136e1e20297b35edb9115e8ba033ae25fe992b5589e364d369
te|32|3f7a145d8532a355ce1df7be38018ba79e584db6c7441ba4640d9b640adbd3f93d55cfe1178ea5c748767815bd98634abcf122b5ab01ab95d8047fac0b413432
th|32|e3b0d8d310d8b0eafd6396e84f537eef3efc799b37951b60b456c7bbde718e097f1a4f0b5c8ea5aae82f147488f7c1ee7bc8cab0252cf61cea011fa3e1fe6be1
tl|32|5e699229f19d273650f6335a50f15b70a521fda3d35e9992a0b56e1dc6c0007f00b095a34cda329ddc0b99c5f4a09faab69d727e37e371f9aabf8d31c9ae7e6e
tr|32|6f714df382bfa9a81d4d2579d3fef1a722c891540c7d4e45dfe3df6335001feb0c79532319f54374a0ecaa5f66507b946a7010e3949875e94c4f71ac89638a20
trs|32|e625d095cfb456836e3e1320bb27e908995e138c4056c3b933a192b228e1e3b1b1bf5fc105791a0110564fabd183c8ffa4394d1bb9493f65473467b21ced2b77
uk|32|88f15c13da65334832235a2243582e2c5df9e9f216b36c18e712e919ca8000193aa52f9ec3f0bd96b8c012917d9fec0e76e4176b532a4513d65d4252d82914f5
ur|32|2de20e1ff18ce68d7836ff34f6742e2674b8ecfc3b3695dbd0d228b47d087cd61e4ef4f05a1fe06a830199fd884ae4c6892d56ba64becebc5573990171bca6e4
uz|32|cdeaa6fb470d836b745a1d20a06cd6ba8eb6391b59a833806cb2ec8487705fb3ead56d7d16a8f3cf1c5428ba1ad8a9e2f4712a98046fd3fad06fbe08865839b4
vi|32|789e2d16e992356c0a468e52d19df934e7f778d3f0377d1ae830d2ab843c49ca0396213312cc3ff56d9864b7e8485e3efb99bb6eb5f63eb401bffaf1d7342b94
xh|32|4a8c2f72e8141ce1e31bdcd932e85e01c13190df086a3fe5b4c2789e534fc8d45bf45426111d8ab3c0bf6a2dd99930de98d6db430ccb3b27982793a520ddf6ff
zh-CN|32|816b1bb42b69f11674fa4d91a2b5df416ead12c951f406bcf0eebd813903e41ffdf54604a0fceb4825686a2719c3c34a770552f8f86202b30508d663fc073140
zh-TW|32|889046d17985377cb2e08a783636b3cabc8281399b21d21b9d085326001fd4e64491e08ecd8fbf6a0cb67cb5c2267455afac2e9d3adea5a1ad129c74b04e2d1f
ach|64|2895673a2bc0abbcb560a833c15e52293897df116042fd18b7695d66c38aaf5f1c1904440f60aa6c784be3efc2423c110ff52c80bd89c06da40ea382ae318538
af|64|4b9e9d2bb699d448dfa0a095c03b70366216c9a74d353b4f0871070b696d781cead2fd83e2f8af5c7ce1e3a0a42ac74fbfc32ee97f8e2328f35baf4ae046ecbf
an|64|3e9af3182a6cc281bc7ee58b1d789d86ad8e620b8c0c22ac5b8c25e02f6028ec4baf8db4738f4128ff1bd306e88ffb4bf40939d2063e0dd6a32ca020c712d1dd
ar|64|4c71f39d84fde1a23abef66a913fd0813544164c8f6fdc5a3cd30214c58ada01851bd45c0690c248a281c8dd85c97b6d7743d4fce7ad2ea6f4285df963f47e1d
ast|64|81542f155e466a3b6926aed722f38dedbb615db6b5bb18511bc0216117697049baf4d88b77f2754cd8bd6a91ed71746699db0ce00767ddff75ffd5d4e6c80dea
az|64|241f7111fb7653b21f1061944b7ccc602b4fd0598cf4492efc85bcb067c5db87f856eafb33acb8fe337f0a4a0665fd56e97387df06f1270384f2fd7609d84e95
be|64|68556f4a0584d887b13fe38e2c54eeade92dc9f15f1e9cc64c10de9130d42fe7d7f3375c5f26827feea842784bd79fee168bdbdbd98e51d7e87cde30e601afb8
bg|64|754319fd0c5e25413b1e011443b6692d607f54bee57c195b4fb15c1bb5d920d143dd684c6a42581e0e0f96f6330905431ae12cb9b4ecb107551a832f3e32fa68
bn|64|4c74e3dcc2f8006e142116474a5340d3b3d0f2d4b678c374baff291c7c5bde889a7a8581bbb81e9038d1885149b975d2e6988098e174cda701cac53e9b11977e
br|64|2c459a83fdc31591bb59165efbe154c637163c9f125969b0a3773be2e7b9adcf5a9f1942c226f040391e15d2cecf9fb359e7c9d172f0a35d01b7d941d0a07179
bs|64|d18946c5d24705f77f54b5f4da6f2f4444d7200d3273675138b16b0ce0f6ac75c6b394f7457fd085211c5d435741bf188243fc4db4f2a367b5c3e08750ef8d35
ca-valencia|64|ce309dd63003bf4715eaf3bb1a7b48c5547568198512b8fcab2ec8ef23ce02b0d5a05255ded72688542d14ad1b05b62812c8b9ad2d12158d0315ff74425ce67c
ca|64|2d45b8763ea6ab9b39eed3ce4a42fecba1435fdc8472f0a637141c8fa1d956263b3a4e62fdf897934a72a0b9a3f12bbd7604780b020ecd0feb2d08e1867fb5be
cak|64|aae2c91ef0d63fbcc8734a0f4e10d5ab24e16011ee0017709379df490a5e2d764db5b1f2d494b08bbfd17086428e362f97e2785dd9a821c74c23cbb5e761ce28
cs|64|51d255675f9012be5eee80f4e15dd30ff80726e4e744fb9a4f8d30135baa9a92122a02f27192b2fd47a264b01bef677bc8b6bb518a463a3be0bf6f8007401475
cy|64|93db077bf63e83725a8f94624640d522e0843f17f52cdf4a1f36c4fdf217f49b44a6ed269f7d2bb7ff6cc9e46cd64546b7daf2b5dfe7068557f136d61d01a536
da|64|10f7d0de68bccf7a3c882504091e3ac22894c311a5f7311471a84218623ec62b396cbbbd8e60ff9120688ede7d60de52b6337fe67ac1653ba7aefad4f7c0eb29
de|64|d2a7040fdc18c5117ba73d6a7b58ca47d4e979d96194910446d36a68cb98b924a8d8bd11bedf069f1d7487759b5610a705441489cdc4c9cdd618265071cbd982
dsb|64|8a427c3aeb0698788ed47e2877b78dd957fae57489c3dbe1b41c3adcb07a502c9eb4a64fade0c11ac7cd067056695bd512cf0b29406515e614a29ae0df944095
el|64|53edfd92021545ed32e1c4ce11e58171d2fc1c6d18b28c0889b0dd1be36379529f07d68d306c6c5d1a961a2fdae3099712db9b5b1f5fbba799f6711971e7937e
en-CA|64|e9aab0bf8d6af7f75439b1ed7e54d470f8db09ec6840f806866b52f4751278dade017fcffbbee75e27114035e05ed3cf941c2327f2eafe75bf88d35781190727
en-GB|64|42be982bd11849709e3aa8689b6b22a14858f2cd6f13b04889716f94ce06991da7fc11ab8c2238a72bb490bd15ea5c52d084adda7e0f1db078cc00c0108dc32c
en-US|64|8669095c20b9243a014c9f2b4a08ec9a746a35f255ddcac0eacb5d0b1b6ba17e7d419eb3f6e4d2a7ba2baef87f4d0316a9952fac3aa09143d2e03b519e3730ef
eo|64|8e17c7d5e137baba488d31bd6adc33301d0a09ee13f0b9e605ff14360b73428c28abd3b33aaa206ce4785e936022b50c2021bbaddbace04bbd7f5ed5ce700dca
es-AR|64|b21f7b3d488af3f0db5cad49fe3fc853f53c06fe540537c8fbafd25e02408e2d57a70e921fb406edb8eacc25cc723a9d1a7e11e922efa76c9a94206e41c0602d
es-CL|64|4ef75b5aac690354a08833481564b28a5aa3585a1c2839bfceda13943388385c596f997c94310e6bb108dad2e6341d5291dd0d801c9a87e1c94b351dca61420b
es-ES|64|d1e62de35d93f5ec1c842ded20ea84c62319237987687d9919478b9fe2e6d4fed42d4cae2d1d574180879da43b2aafbe9de936feef0d38ae8d24a563cb657ddd
es-MX|64|30246dc2370427b9191156d95ff327455906a65f294ea4e52c392bac4ea269c057c41aeab002cbd1fa3513016611d791d6c87fa26dd2cd91ad4bac026f3a3679
et|64|a3423fbad5e112ee76807edb91842c36f108637eb42b442e93030d4974fc6767ba85edeeb34dc4c63335fec0e0c533ffeedc5faeb6820ab4d5410579349413ad
eu|64|993f3647dceea8226303bea31e6a33e4301926e4be79bd9d8371e5a246a29e11760f2dd35f0e43b705b8705ec5e0393ca07d0ef136e93e60b3c54ff96d6dc3dd
fa|64|7de1ed882c576151c46c26e043007ce055e1db89c900c29e59bd54cf2968b34b7839059471c34ed97bc61b53124838760228a7f13c9d5ef62f27c4ea939af7a4
ff|64|c8680706c73049f18ed03a9db187c786e86c71eaf8e0d1d1c2efd3f27627b12c0a6732bdb3654eeb694a2a032eaa4f9ee8eb5fb603d3ed31108f542ce0010d26
fi|64|62d33fa8b70277848fba200aaabe7a912793c571dc8174d028743aacd41503fd13273b5e316457ac8e52797a2910e5e3245bd7b5f60894df0640c89e70cb7a70
fr|64|f2de7cf1ff5b162e7ffc2e5d7cdc3b6992254e742ca9b8ee5a9dd634a04889f1d3c098f2fc8b189217db566da42650c208ac2432497bc7a939d40aa806564775
fy-NL|64|a0ea992f283814aee6d2c8b925e75a51b4b13fb2ec2414acb3263143ab1081fb8c1a95c43632644992d8d7908d679168ae9497e968e12a15df2de16f165feeab
ga-IE|64|eb54dee3460d6cdc712ca236497d2db4e0d10e425bfedca28c01ef429e9d88f63179f38fe89689412180960f8403942ff1a3d84228a880f8a05940ac8b74b5b9
gd|64|b00985d00f95f04635f8453788c4551cff089ef54a8bfab53838cbb464c4e02a631bce5c2556b52b62a7dae38977ea1eb5faf5d60d39ec6166ee7de560b39b94
gl|64|2820953e7970202a2f6342f128da608897fcb54338c18799b4560631d6f85d5da7bff9d0c2862fb18d8327833d1bc38c4bcfaa7d8864e0eac4cfe9d8e66077d6
gn|64|82b3100e4b1ea1b7aeb1f1b68105ec4ddbefc412ae2977397022ac1fcbeb3369334a7a75c002835c69288d934042f14e47a484ea3b533b3f7c06b1193315f47b
gu-IN|64|cdf21eb2488eec984ae807c53a20e9e9841e09b3c4706a7ee3ae7c7113b2da20062c9c3f30cfa76c318eb3a783d5d49097e221783fa5f1c117057a71061d08f5
he|64|f2521c868d58247895483bd293b1796cd51a0d77f3bc0bc123c86f1486f285160d86dfe40020a61573da3cb607bd22503a199cda3275f219fdccb299f2575f79
hi-IN|64|2b37f17540cf7530de12affd13a07d31137a54c5ddfa10ff9e04e89f23dc031f7510a7c00818ea75197469698606dd292486ffdf1041b522c8f56f66ec7273dc
hr|64|5bc34984021f71d6bc8cb407a9f0f3e92a3afb42d0da1277117c4aa2df86413d220641f80cab3941c5efda39a38b9789b5d21f7ba054af654dd11add8c7e1b5c
hsb|64|bebc65359062f672aa0d6b9bb1e5ae7d13035cd2fa7c04bd6cc98ea276ff465508437e9ebad5597c51eae63c4479726102026a33054ad261aebf3a87a1f91f77
hu|64|7d24402bb01a42a8985efb5d1497fbaeea51b82dac01f52257fcbbc92cb91545bdd493135da804291c5e65e1a3d67a4e09694a6b21e298429b933e6ff4a8e399
hy-AM|64|ec606cae62451884911a49ca0ebced5b8b86c0a01bc34a90dab009fc3336dc6fef3e17d37f502f3e8e427380b2776fb118a07c2249ea561fee9941eefa5e94ea
ia|64|589c809da0114d20e127e8d5dedc145abcff8efb6a753655392c17461d4659cc3439528c40271f966b33f22e64f12654dfe6ea5081dd315c042519f37717ad8f
id|64|7308dcc170517a164b8711bfa6e13d727bceecde7bb04e895d4f5d849ab7fc613bedfd778b92844d62fc3cb4a249882f27d1a8db0e98e5d5c17b795328e34e85
is|64|4ca4d1a324caf5e9b6a1693e9a61654a42fa7124c2587b60d994355f1ee218b032bd5423f9b234d17fe243b22c4a5173bcd42a9135d5013817b60e7e0ee762b7
it|64|0d5c120b7e33d7dcfdc67d6669da897eea76295c620f115ddc85d058cbf2199106a03a50ee88ff530e7a52fdaae5fefe561f8d33ee1e9a30f224ff0b76082853
ja|64|8edfddaa963795216929ddd66fe61c3e017c622f81e56020e56b133e9862f46aa75e79e0413c6dba9361e27702a58f6158db85bde85151f6fb33fc4574675a84
ka|64|b5b3db2b0921a9513a954d5e716e5809ec90b0810980ce87edf621fd32ed68d94ee160a07c6d88862e8440d2433e9d7095d5310ca713d67281de7c6903cefc6a
kab|64|6a9851e9cf50aae216c41b367d20733bb207fc28b18ab5549067dc6a01a3ecb80e18846f3b35b5a712b9253eed98f7f47f96674a60e70da03d30a55c29b58941
kk|64|5b4f76bf5a10da75c4a270aaa76da77f3491f1994ea41b2b36b8dde8d477999c6e0417b434e247d639762e39686aab9565caf519dd73e8e87e8ce3ffebb678bc
km|64|d43c6fd9ebdc2274b04532268f8f3a860eb264d56b6daf1e5838bd51fe84258815925745124327bd67bcbc840765c1ccd57e281f8e6e36e240ce7cffcb20dfb9
kn|64|660fa125fad28438da909b5ff89cbd5cc014453e34d26ef009760cccf37ed22a1a0a0c427e4d8874aaca470195d4c4af0a5d1b7648e2ecf51c0e6d98e8a65879
ko|64|538c0e4f7714734d17e085f16abb081c78adc84e51fc954b65fbcc104e7972d2c88c23194df949011ddda3e7d900f630fd20212b598b83c8e686c24d5929e725
lij|64|f44307a89c24ce5ebb0a6798641041c1e3fda70ec6ffbd4642334b9eed8b65da1f787cbc944c19b2a0338a0c6e0a3346d123e60f91b187474467d036e40b64c9
lt|64|b98f753978fde29b35cad90e704aca92f3741e497561bc25fef3bc8110830422999d381a4b69f000a331603c4fa8c5ea7435eec3ec42e97a71eae11b44f70945
lv|64|768a42954429305ebdb2c34579dd972d8e6a532b00b020093c3044891ef33378af2be95fc9f712a8f6bb394cb96fba253d6c08b3b40c6f8ecbd84be1eab21c83
mk|64|02989d3223307753a6a13b7e2f6b1d19529655be66a34a448fbad9ea9eab3bc191e1e5c5302874ba149b5fb6e9e3175d2c96dacc09edacf930f9122afdc37179
mr|64|d5c18c8bcde98a2801b7ae64f990aa94cb7305e2a60ccadcf9841e6aae21af376204b3ccaa1ee501e225c7d533e101e8f7e47400bc019d223a30b13d3eccb823
ms|64|5d085539219d6647155b8ce9d9c31df23143b825895d5c135cee5bc34261d420fb20923ac44f64ead9bacac4d6aff451eec198deda9233e8870a6a5335b8feaa
my|64|d798507c372203f1d172e8f6206d430af569ba6f132e76f5f85411218d833d277542b77a6681db9be2922b30cd51aedba66cce73a68a3bc80f81a87d81ddf438
nb-NO|64|b6cb0379db10529681369f77a1cada39b740a0ad7dc823655f24002a24fed5ac75438bc16f823d096c72aa80f798d323f553370ce171279088131709bae2f42b
ne-NP|64|8f7e88d5fd8f6a5e562b069e7bb450a7a7ba63506157c83908bb4fb3d20b6832016a25dd9ed543ab47179984cb10d9e695b010a5d6b9f52d8c57ba10e129bb6f
nl|64|15b320b2f3760c9edd90231a7a181bf83754454e1cb5e8703603d9c6a28c06fb131f81ae3c0e71c0bfe74e3f802ddb9ae742eb4a353cef3a75554c9d017e505d
nn-NO|64|4fc1f9b1ec18293e77432f8fb4739807ceea15aebfde5112d4c185222e305c1186a39eb2ae277e0b39d0142cd73767e8cccfbcc046c51533bf61878ed854a7bb
oc|64|0e0043e0a85c4430b0a7e1967404fb528d83a510d5c1d21b0bf42e2cdd3ea1c84cd36533fb970094fa524f0d568ee098d3e8fa8d27a9f77b7c9c6225f4854dfb
pa-IN|64|a842bf10ece1d36aa615290a7b99b9fea686c24f2a2c210d1d5baf6f3f99336f33ac65c68c355c12c5efc169e28015cb85d576bc7bf628a620037479a2c0448c
pl|64|f2a9fefac43dea14fe538b7c7d07f35f3494960d27b2d4e3611b43fcf503a120fcac60735b3b0b2bd8be9676ebd747a5cb95eb45fa07ebb8d90eb6cbaa45b0aa
pt-BR|64|99d67d0d8e669e6ebcae68694d1241c9e31e6480bb1cd2a0cec2e43833016110196d92719ddc78aaafd38fd886808ee245898239e74d97516c343f219d323376
pt-PT|64|b4b4ce1a3e8713a68e8dff2ed6a1c2a6e76c0d5aa58d891b3d3be08ae7e6753b326603f35cf648585ecfadb85a12f41b5e23fbbdf719265d2ed962eb30064aec
rm|64|491574a5d84462773bb0e888c0b0bae80ef4b7a39aae7b17bda87375cc00a34f74a6ffb4df9dc1b4865762a1678658f5cc86dfbdd8b3d6f69251503de468c289
ro|64|3fc7609f1b1673308012172643779e8d2322457491ae83730ff9c61551c2623d73b10d5919e49d16688f53f6ca664057ab5afd4f796e9d431b3e062f222196c3
ru|64|53b4a1b7244a17f8568e1dc5b565d32838d4d4951d4bc6fbce4a755ae98ff8b25022cf2e89c2af306249fa7f002adb5830a8f619e038644583f13e2c1eb6b2c3
sco|64|ed2ff0382d52e950eb888c2b76a737e290005509672deaa1b7e47fbad5c99abc12aff400776499ac948c4d4cee83ecb274b90a261cf152c0c12d3be77e44c5a5
si|64|78f04e21307905f145667f4d6e856a43862810154beef2895388fc726b23a887050c059778edaaf905cf836f92c96895f8354be20944b892c0172493a75fbfab
sk|64|0ea399a48ba9e1f3b62ec8181bbb239dc4ff01ecb2e0fd0bc4bd55f76e9d92ebfad2f264223adc57ff1d53a363c93d339ef4aea3a82ce6fa2879bd61da2629cd
sl|64|c107ec5f86f202b69310cec3f61af8632d625d6f1501641601646e7e40d9cb3bdd303763865a512c7dfdb98565bfd300476e17dba876e64114aa7c26149d3878
son|64|ff828e2ba4154fc5d125b1230aedda1adbb78b894b15977282a940d7d2a1b3b7247a5b1d60917fedca6e5af16cfe15fb98f6114b56f78ef90efc1e9c6c8c3de9
sq|64|89a4a4fae6e310ee984a9c374055a11c5c79bfee3832aa30c980e40e6162c222431115dae55bb56dcbbe943691a7000debb03e862a584577036b8de08e3412a5
sr|64|ee551c9c71f9df34f8629310d27962bc4a5ceafefa3c9e6966e6d1be0e65b0a26a21c46ee21b3b77e1c8a8ff4158d6a4ba805d5cc321337c4cd3737bf2430b0e
sv-SE|64|05e25bfc313a08478feeb6f4778f6e1836cd959c0913549b4b25b5e0667e0e35449be7a9e29940476319f16a1ff27fa6cd7065dd754e7acabbe724c7d72c7796
szl|64|fb48e143d670475ba973fe67672ea25d032292c7575c23aab79756ebebf536e0f09a586ce341932cc687721c92e2c6c558b9715aa6ac349af6645c44127ba012
ta|64|6df1aa92c9e98a513ec3be88608a47a22d11ec937b9e52cef42185ed9ca178abea9924eaa9b9b7965e4fb449126c680c0b1315a84cff8e7987c806940669bce6
te|64|1d68a76deb58408496f84308933ec4f28c0a9f881b6fe078b848ead993f7d49be35992760c22ab7986d423ea2dc0cfd940537d8910fa5998981f1d5148796a74
th|64|9e4e83d5990b08a0faaf18214b6907dd2c53fc604ce3685adb293f0962c0955067922ac5fbb2c855bfce8eba2db7787bac636e9adb22582c82c934f0824a5023
tl|64|8ad15a7ce11ca80fe52dfe6a49aca579f102352e1a7e031049995471ad3e07b78fe1a64afde1f8df9df28d13b8fe977f489a48087c2d5463d3e9d38ff3d96a94
tr|64|5eebbb9d81d289657206b91b6a2eccd637b5d4d1f1285d942e270910512d90ea97da60132ec46a2b2cbc7df24925602dd73ae45fefb9ba46575bf43e891f43d9
trs|64|ee8dabbb2804e58c6d8f4cec7f0deca1d78e28351e2ac00aa437f3d8ee3a10acb37812429822d7cd2444f3f34dde488b3aee5d7a3979889bdb045881a8c737b9
uk|64|9812a87399231cf3f39da36b319ad1b73975194b8b64fb9b57bdfe7d3edf95987bb274ab779f7bfd38f4771b6fe5f67140041c18484de0c351914b505de18500
ur|64|8d047831f134d4d565e32f687e4cbcf257b18115646cad3cfe678d6acbd8f50d87a711044923cc6b73d5ba4c4fa12c1240a6316db0b6d6b50e0ad80b8dfaf9ee
uz|64|81a6af830c64cddc5f1bd26d0614c7764f4ee9d8155f6a269403b28eaa3e632b03ff23dd4e2c69d614116e762004219f948e208e1242acd0c9652899e2290bb0
vi|64|7ea3fcf9c0b80a21864cc3f1331a784ce848a1cb58083bbeb67587c857dfe5615f5c6a36ad6a408bcb7a8d3efb126e6f388cd2cb3dbc591ffece33db0e6d3ce9
xh|64|87a8630ba43c82056f2bb6b3d8eb640663515808429092ee50d445516dff45315ac30d68d4e92971e22abae7f1951cbf7fad40e919db23f5bd84876b817b3eca
zh-CN|64|68881d1c23564eb34e4db93dbefccf6b2ffa8a138f9588ea4bbd3c9bd5ca99d741ae2ed90cd1ea253c98fc5722e0ebc0ea8465e50640df0a32d382af9ace64ad
zh-TW|64|af24b4e86b9eb015dd29ae31cb405c435ab1eb3a80d16fd5bfe20e0f7cd94e965bbdaad244909f5928a25794d5f10cfed93ddf7e528dd03a95fd8dca0f6726ed
tools\chocolateyUninstall.ps1
$ErrorActionPreference = 'Stop';

$packageName = 'FirefoxESR'

$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Mozilla Firefox*ESR*' | Where-Object { $_.DisplayName -notmatch "ESR" }

if ($key.Count -eq 1) {
  $key | ForEach-Object {
    $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 | ForEach-Object {Write-Warning "- $($_.DisplayName)"}
}

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
Mozilla Firefox 115.9.1 18960 Friday, March 22, 2024 Approved
Mozilla Firefox 115.9.0 22029 Tuesday, March 19, 2024 Approved
Mozilla Firefox 115.8.0 31644 Tuesday, February 20, 2024 Approved
Mozilla Firefox 115.7.0 29079 Tuesday, January 23, 2024 Approved
Mozilla Firefox 115.6.0 31242 Tuesday, December 19, 2023 Approved
Mozilla Firefox 115.5.0 31771 Tuesday, November 21, 2023 Approved
Mozilla Firefox 115.4.0 29949 Tuesday, October 24, 2023 Approved
Mozilla Firefox 115.3.1 25619 Thursday, September 28, 2023 Approved
Mozilla Firefox 115.3.0 9618 Tuesday, September 26, 2023 Approved
Mozilla Firefox 102.15.1 19574 Tuesday, September 12, 2023 Approved
Mozilla Firefox 102.15.0 20190 Tuesday, August 29, 2023 Approved
Mozilla Firefox 102.14.0 27960 Tuesday, August 1, 2023 Approved
Mozilla Firefox 102.13.0 34763 Tuesday, July 4, 2023 Approved
Mozilla Firefox 102.12.0 26625 Tuesday, June 6, 2023 Approved
Mozilla Firefox 102.11.0 27009 Tuesday, May 9, 2023 Approved
Mozilla Firefox 102.10.0 31524 Tuesday, April 11, 2023 Approved
Mozilla Firefox 102.9.0 36767 Tuesday, March 14, 2023 Approved
Mozilla Firefox 102.8.0 35651 Tuesday, February 14, 2023 Approved
Mozilla Firefox 102.7.0 34270 Wednesday, January 18, 2023 Approved
Mozilla Firefox 102.6.0 34586 Tuesday, December 13, 2022 Approved
Mozilla Firefox 102.5.0 33043 Tuesday, November 15, 2022 Approved
Mozilla Firefox 102.4.0 35681 Tuesday, October 18, 2022 Approved
Mozilla Firefox 102.3.0 32985 Tuesday, September 20, 2022 Approved
Mozilla Firefox 91.13.0 30267 Tuesday, August 23, 2022 Approved
Mozilla Firefox 91.12.0 31809 Tuesday, July 26, 2022 Approved
Mozilla Firefox 91.11.0 31749 Tuesday, June 28, 2022 Approved
Mozilla Firefox 91.10.0 30258 Tuesday, May 31, 2022 Approved
Mozilla Firefox 91.9.1 17355 Friday, May 20, 2022 Approved
Mozilla Firefox 91.9.0 23548 Tuesday, May 3, 2022 Approved
Mozilla Firefox 91.8.0 32688 Tuesday, April 5, 2022 Approved
Mozilla Firefox 91.7.1 32124 Monday, March 14, 2022 Approved
Mozilla Firefox 91.7.0 16694 Tuesday, March 8, 2022 Approved
Mozilla Firefox 91.6.1 12368 Saturday, March 5, 2022 Approved
Mozilla Firefox 91.6.0 34595 Tuesday, February 8, 2022 Approved
Mozilla Firefox 91.5.1 22454 Thursday, January 27, 2022 Approved
Mozilla Firefox 91.5.0 27553 Tuesday, January 11, 2022 Approved
Mozilla Firefox 91.4.1 25837 Thursday, December 16, 2021 Approved
Mozilla Firefox 91.4.0 17635 Tuesday, December 7, 2021 Approved
Mozilla Firefox 91.3.0 32548 Tuesday, November 2, 2021 Approved
Mozilla Firefox 78.15.0.20211014 23537 Thursday, October 14, 2021 Approved
Mozilla Firefox 78.15.0.20211011 11429 Monday, October 11, 2021 Approved
Mozilla Firefox 78.15.0 16149 Tuesday, October 5, 2021 Approved
Mozilla Firefox 78.14.0 40560 Tuesday, September 7, 2021 Approved
Mozilla Firefox 78.13.0 31934 Tuesday, August 10, 2021 Approved
Mozilla Firefox 78.12.0 25259 Tuesday, July 13, 2021 Approved
Mozilla Firefox 78.11.0 34839 Tuesday, June 1, 2021 Approved
Mozilla Firefox 78.10.1 23945 Tuesday, May 4, 2021 Approved
Mozilla Firefox 78.10.0 17373 Monday, April 19, 2021 Approved
Mozilla Firefox 78.9.0 25497 Tuesday, March 23, 2021 Approved
Mozilla Firefox 78.8.0 24770 Tuesday, February 23, 2021 Approved
Mozilla Firefox 78.7.1 17470 Friday, February 5, 2021 Approved
Mozilla Firefox 78.7.0 13577 Tuesday, January 26, 2021 Approved
Mozilla Firefox 78.6.1 17964 Wednesday, January 6, 2021 Approved
Mozilla Firefox 78.6.0 17024 Tuesday, December 15, 2020 Approved
Mozilla Firefox 78.5.0 23366 Tuesday, November 17, 2020 Approved
Mozilla Firefox 78.4.1 13254 Monday, November 9, 2020 Approved
Mozilla Firefox 78.4.0 20427 Tuesday, October 20, 2020 Approved
Mozilla Firefox 78.3.1 20583 Thursday, October 1, 2020 Approved
Mozilla Firefox 78.3.0 15605 Tuesday, September 22, 2020 Approved
Mozilla Firefox 68.12.0 43081 Tuesday, August 25, 2020 Approved
Mozilla Firefox 68.11.0 33697 Tuesday, July 28, 2020 Approved
Mozilla Firefox 68.10.0 19806 Tuesday, June 30, 2020 Approved
Mozilla Firefox 68.9.0 19546 Tuesday, June 2, 2020 Approved
Mozilla Firefox 68.8.0 19358 Tuesday, May 5, 2020 Approved
Mozilla Firefox 68.7.0 19601 Tuesday, April 7, 2020 Approved
Mozilla Firefox 68.6.1 6480 Friday, April 3, 2020 Approved
Mozilla Firefox 68.6.0 21234 Tuesday, March 10, 2020 Approved
Mozilla Firefox 68.5.0 33128 Tuesday, February 11, 2020 Approved
Mozilla Firefox 68.4.2 26100 Monday, January 20, 2020 Approved
Mozilla Firefox 68.4.1 19439 Wednesday, January 8, 2020 Approved
Mozilla Firefox 68.4.0 5284 Tuesday, January 7, 2020 Approved
Mozilla Firefox 68.3.0 27048 Tuesday, December 3, 2019 Approved
Mozilla Firefox 68.2.0 42830 Tuesday, October 22, 2019 Approved
Mozilla Firefox 60.9.0 50954 Wednesday, September 4, 2019 Approved
Mozilla Firefox 60.8.0 44205 Tuesday, July 9, 2019 Approved
Mozilla Firefox 60.7.2 16423 Thursday, June 20, 2019 Approved
Mozilla Firefox 60.7.1 4928 Tuesday, June 18, 2019 Approved
Mozilla Firefox 60.7.0 19077 Wednesday, May 22, 2019 Approved
Mozilla Firefox 60.6.2 14888 Monday, May 6, 2019 Approved
Mozilla Firefox 60.6.1 26574 Friday, March 22, 2019 Approved
Mozilla Firefox 60.6.0 6019 Tuesday, March 19, 2019 Approved
Mozilla Firefox 60.5.1 24253 Wednesday, February 13, 2019 Approved
Mozilla Firefox 60.5.0 13787 Tuesday, January 29, 2019 Approved
Mozilla Firefox 60.4.0 26435 Tuesday, December 11, 2018 Approved
Mozilla Firefox 60.3.0 37711 Tuesday, October 23, 2018 Approved
Mozilla Firefox 60.2.2 22247 Wednesday, October 3, 2018 Approved
Mozilla Firefox 60.2.1 24531 Saturday, September 22, 2018 Approved
Mozilla Firefox 60.2.0 39168 Thursday, September 6, 2018 Approved
Mozilla Firefox ESR 60.0 40289 Wednesday, May 9, 2018 Approved
Mozilla Firefox 52.9.0 1481 Tuesday, June 26, 2018 Approved
Mozilla Firefox 52.8.1 458 Thursday, June 7, 2018 Approved
Mozilla Firefox 52.8.0 1843 Saturday, May 12, 2018 Approved
Mozilla Firefox ESR 52.7.4 3064 Monday, May 7, 2018 Approved
Mozilla Firefox ESR 52.7.3 23542 Tuesday, March 27, 2018 Approved
Mozilla Firefox ESR 52.7.2 13948 Friday, March 16, 2018 Approved
Mozilla Firefox ESR 52.7.1 3365 Wednesday, March 14, 2018 Approved
Mozilla Firefox ESR 52.7.0 2436 Tuesday, March 13, 2018 Approved
Mozilla Firefox ESR 52.6.0 47183 Tuesday, January 23, 2018 Approved
Mozilla Firefox ESR 52.5.3 16610 Thursday, December 28, 2017 Approved
Mozilla Firefox ESR 52.5.2 12510 Friday, December 8, 2017 Approved
Mozilla Firefox ESR 52.5.0.20171115 16744 Wednesday, November 15, 2017 Approved
Mozilla Firefox ESR 52.5.0 1842 Tuesday, November 14, 2017 Approved
Mozilla Firefox ESR 52.4.1 12837 Tuesday, October 10, 2017 Approved
Mozilla Firefox ESR 52.4.0 4971 Thursday, September 28, 2017 Approved
Mozilla Firefox ESR 52.3.0 15358 Tuesday, August 8, 2017 Approved
Mozilla Firefox ESR 52.2.1 16371 Friday, June 30, 2017 Approved
Mozilla Firefox ESR 52.2.0 7924 Wednesday, June 14, 2017 Approved
Mozilla Firefox ESR 52.1.2 8927 Friday, May 19, 2017 Approved
Mozilla Firefox ESR 52.1.1 2905 Friday, May 5, 2017 Approved
Mozilla Firefox ESR 52.1.0 3980 Wednesday, April 19, 2017 Approved
Mozilla Firefox ESR 52.0.2 3275 Thursday, March 30, 2017 Approved
Mozilla Firefox ESR 52.0.1 2256 Saturday, March 18, 2017 Approved
Mozilla Firefox ESR 52.0 1968 Wednesday, March 8, 2017 Approved
Mozilla Firefox ESR 45.8.0 1653 Tuesday, March 7, 2017 Approved
Mozilla Firefox ESR 45.7.0 2882 Thursday, February 2, 2017 Approved
Mozilla Firefox ESR 45.5.1 3836 Thursday, December 1, 2016 Approved
Mozilla Firefox ESR 45.3.0 7306 Thursday, September 1, 2016 Approved
Mozilla Firefox ESR 45.2.0 2369 Tuesday, July 19, 2016 Approved
Mozilla Firefox ESR 38.5.2 3983 Tuesday, January 5, 2016 Approved
Mozilla Firefox ESR 38.2.0.2015081001 480 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.2.0 442 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.1 2047 Tuesday, August 11, 2015 Approved
Mozilla Firefox ESR 38.1.0 581 Friday, July 10, 2015 Approved
Mozilla Firefox ESR 31.5.0 6595 Thursday, February 26, 2015 Approved
Mozilla Firefox ESR 31.2.0 4336 Thursday, November 6, 2014 Approved
Mozilla Firefox ESR 31.1.0 824 Thursday, September 11, 2014 Approved
Mozilla Firefox ESR 24.2.0.20140209 1044 Sunday, February 9, 2014 Exempted
Mozilla Firefox ESR 24.2.0 702 Friday, February 7, 2014 Exempted
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.
comments powered by Disqus