Downloads:
638,666
Downloads of v 121.0.1.2023102321-alpha:
54
Last Update:
24 Oct 2023
Package Maintainer(s):
Software Author(s):
- Mozilla
Tags:
browser mozilla firefox alpha admin foss cross-platform- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Firefox Nightly
This is a prerelease version of Firefox Nightly.
- 1
- 2
- 3
121.0.1.2023102321-alpha | Updated: 24 Oct 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
638,666
Downloads of v 121.0.1.2023102321-alpha:
54
Maintainer(s):
Software Author(s):
- Mozilla
Firefox Nightly 121.0.1.2023102321-alpha
This is a prerelease version of Firefox Nightly.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Mozilla. The inclusion of Mozilla trademark(s), if any, upon this webpage is solely to identify Mozilla goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Firefox Nightly, run the following command from the command line or from PowerShell:
To upgrade Firefox Nightly, run the following command from the command line or from PowerShell:
To uninstall Firefox Nightly, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download firefox-nightly --internalize --version=121.0.1.2023102321-alpha --pre --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade firefox-nightly -y --source="'INTERNAL REPO URL'" --version="'121.0.1.2023102321-alpha'" --prerelease [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 firefox-nightly -y --source="'INTERNAL REPO URL'" --version="'121.0.1.2023102321-alpha'" --prerelease
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install firefox-nightly
win_chocolatey:
name: firefox-nightly
version: '121.0.1.2023102321-alpha'
source: INTERNAL REPO URL
state: present
allow_prerelease: yes
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'firefox-nightly' do
action :install
source 'INTERNAL REPO URL'
version '121.0.1.2023102321-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firefox-nightly
{
Name = "firefox-nightly"
Version = "121.0.1.2023102321-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firefox-nightly':
ensure => '121.0.1.2023102321-alpha',
install_options => ['--prerelease'],
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.
This package was approved as a trusted package on 24 Oct 2023.
Firefox Nightly builds are under active development and should be used only by advanced users for testing experimental features.
Package Parameters
l=<locale>
- Install given Firefox locale. For examplechoco install Firefox --params "l=en-GB"
. See the official page for a complete list of available locales.
Firefox channels (development cycle)
Every 6 weeks, Firefox developers take the current stable features of each build and introduce them into the next stable channel for further development. The Developer Edition is a special build containing features never moved forward since they would be rarely used by the average user and needlessly consume resources.
- Firefox
- Firefox Beta
- Firefox Developer Edition
- Firefox Nightly (you are here)
Forum
Mozilla Developer Network documentation
Privacy policy
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
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
$packageParameters = $env:chocolateyPackageParameters
$packageParameters = if ($packageParameters -ne $null) { $packageParameters } else { "" }
$argumentMap = ConvertFrom-StringData $packageParameters
$localeFromPackageParameters = $argumentMap.Item('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
$systemLocaleTwoLetter = (Get-UICulture).TwoLetterISOLanguageName
Write-Verbose "System locale is: '$locale'..."
$fallbackLocale = 'en-US'
$locales = $localeFromPackageParameters,$localeFromPackageParametersTwoLetter, `
$alreadyInstalledLocale, $systemLocalizeAndCountry, $systemLocaleTwoLetter, `
$fallbackLocale
foreach ($locale in $locales) {
$localeMatch = $availableLocales | Where-Object { $_ -eq $locale } | Select-Object -first 1
if ($localeMatch -and $locale -ne $null) {
Write-Verbose "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
}
}
ach|32|21398e68fd73de4b17018674368599576735a6fc7539976be091daf79bfcae3c5fb6da2e0c06e8422b6f77c4ecb7ec78fb39b53ff0bac0f1630d04af86a68660
af|32|ea0a913ec59af3e4f0ae60dd64f1f573fd9d33538f6623feded76ab13f85be4040e1c21d552790c91cf99723df49b96bd5841a7243b75f77415ca2754af95b96
an|32|e43593a77b3119eb2870c73d963576225b1c41d04e2b8fdc8142edbc957b5bb3ae6272a55e62ee8cec9052a67c0aa71dadd22d6bb615927c5d3d41051b4a1651
ar|32|c392a5884b832382d186bc71b3c890f84c29f339862d5914a1e8de3cdfc6967d56166f1b7c5ef2446a902a6396215f0b1489a1bc6de0dce702d17e19d59628d6
ast|32|9d62366c4508d1574b0494a30b216cd9b5f61fb78c0c1ccda693efd44603c617f475a7c7cac89e8265380fb5bef63e34680d3596d2595527b29446b65f923a3b
az|32|a6ec7aee488a68d955cd0b7147a8fac4fbdfba15b4c53034c1bb78368644a3641029f625db0de23846d3fce80234b5ce7178bfe590f005be03f24e73a43c5058
be|32|32cea068e800940ab5b57fcb47591671af7a3ac71bc3ec5dbd0cda03d03a8157eed34a14dc159be55e7a5e8af72b6a9da2d8b33f8d006ccb908f010cb248ccc4
bg|32|0be8b599ad0c96b0ea3ace7e60bfa9e62f2efdf146543f3f9b1a4b932678856b4e09250568b769feeba4da27921da36bbf960dbbdbc32eb7d8da981a438f84ed
bn|32|1061513e53829455a5ada5fd213192454b7cfe96c35f0aa17f8e3c484ef35b463553f4c653863727d431498f77391e615ff18d3642b261437bb1611e8e5e711c
bo|32|6315ffb0284f2959e76c4c90a96d8ca84761bef410aa90a65376e8677034a04986c2db759bfb3056c813e0a2709b755863a8012821ce3ac568c4854595fdbc3b
br|32|8a89a96af53296b6fd730e10d0aadd51d52d2bc259a0ca00249f9c682e75829e06f9d0ee9a4a88f456a8e186f0f7194ae4b31b465af68c8ce2865138b8a4dc85
brx|32|a804ba97d26cbac34cbc6d81f08f42d5db592a06ac9ba65ab58b97dbc8b6aa908283c6dc75ebec7108b3b38081f2c6c902e6adb03d0b7b337c76122ba53b6744
bs|32|daf39fdde1ac94d8d1f03e362adacc4d7c8c49cf6223d6c8d739e388526d410917686d95e51147d10a433d2fdbd7d8596c7e03f9dedbbe40239753a742762c61
ca-valencia|32|af171aecc7724ec08885c0cb34974d1d21ccbb384d738a805408d9e4b4715ab19a4b67838bf78c6749d58cdb387a0357d29b9edfab4410bc0534216d6f885bfe
ca|32|31117091e40a34bdcfae6cb05bf7c76536329c6ebf469d86a2914b1334bc4ab077465cb29ae1ee54f460d69f532b278cb06311c87431ca22e4dee6a36fab7475
cak|32|86f118908872f27101c4d17775e5370b997a37c304804713dc0b1ff9ffb8abb5f489105c9ada1e40e4ab2b6fe33d41b185b00210c49ca1b1b258181be2ceb1fc
ckb|32|6ed6408c8598471d9931462362309f7a5eb4341b5819bd8fe099ab45a3dc7142abd36a6edb1472bc8c723039ae7c49cdcbcec861674d57037ba072345a320723
cs|32|261042668c38de6937f0831e5876c1b304f2abc839d6add1ab14e69989165652adbfc8d35fe3ab168a41363ffa51ba95e280668556dc7cee1f30fa90f6707c7e
cy|32|9e685913e23e8ed64186a57f492f6751782eccf456c0dec8533a5395fb596924f9ca9a944565461ba1e1f8863feac120affaa1538aeca6e5570eaec5172f3c14
da|32|965b610ef8e4b687d2c338ae64515429ca0372fed049f1ee3546946780b7c182534a069e04c10833a7072da0cbc1779ed5b56e50089a37ace07037a827b451c1
de|32|686b11f8c45c216775615ea132542bf1d86d0748932b31e1ddb6c1eb7c8476769d812d6f1722bd0a7cb4e4116b536cbd152fb16cd6e03d2791ed09d25b3f33b0
dsb|32|c5d0f45d0fb880f35c14c09b8fb711077e6eb951bf899f2305796f005d1a7b297d8727d314a625cd28ad9683237d3d46197808f3ca2c01da1b8f47d3b7e8e6bd
el|32|36479f8ef6f33835524bd53553113e21b4a6c2fc1a34959f0266d5624199f52b42b7334dc92919d300e36f6ff9350b7e31482a701de8df75e3f9fc7ec7d54089
en-CA|32|d7864375f526fe4bce29f1bf64576e966869fa9747b11ba31196418a5089cdaf51bf8e97b88d1b72222a325cfc72bc1e4f68f6526c8e26aabcb51ff79c386643
en-GB|32|0e0597c2787f4ae3c228712464b779083dae8d77a0bfdb5808ebbbd2b127dea25c2c56d5dd1a8e97d9b4ce50aca9acd14ffd99140b600ef126c3ab902c3311e6
en-US|32|de449c86dc8d841e0650a847b2ea4ade56c73ea3542b55e3a84c4d72f36166aeca767bc1392c5a7412f27535ebf97808efd8a847bfafc551a3ec916c471016f0
en-US|64|d3667fe9e7e52848dffc1aba4b5604192b7880cdd7649f5cb5b72b41c9feb856856c5ae9c507f6e10f06e84b6dd33938e21409f0b7d37dc08c508e908490df8e
eo|32|b845a0b16eec908c08915a164e6ec33f6fb74ea80988723190cb3054463473ecc49c0cdde07b64e40da9c6901e9b0606c8da62582f992a8c53a0424dcc841482
es-AR|32|6311452db79cdd2e9f5eb23df6642d4eab6ef4697091697189d5e74195e8d602066dd60f323ad35f85fcc6cdcb1211d2d7bd6968d1635e55338469c3120bceea
es-CL|32|77b2dba2f2693cd75e41a4837940d4b98f5d41cd1634e341cd5807add0e7c3d42b19d9989c5ffd49185b4844039ee5789f8f8f05eac0da4ef82a42ee74db260c
es-ES|32|c8472facd45f05289f3a50aba72a8fbe1cd0b5ce8e4e210795d6607f7c1ffd4ae17ca88eaf4d90ab18720952ced232f724916eff56a36ea54f3c48ba3983b5b4
es-MX|32|5a0b76b552d4c904bf38084703e6b72363ad1866709ca341bd37993af0f85ca055ec58b8d10c7bed3bf0eca69dafc21c03cf951bf0139f91f85a11e849b41b67
eu|32|a05c7f8bc35984c646737aca25678506422ca61102ea5821ec2ee3f7f54c573aff7449827c2dab6f6fa821ee1bb30958e2c49954cd4f87c5450d5d1bc47e7a38
fa|32|e7ebb3470dea5d9fdc233426bdec2ae5413e845b5c58b64ed80364c127e659d0a1bd86118d7c0b4ebba585534f6a26e932f632bbc92c374fb15bc6db06d8f747
ff|32|e8a360b08ee8e6eae241201966f8ac3575a4b01311c3fb72346189931f33e004ee9775d54617192b9d06dbf3f90ea87b64b7f167d8563a766f1b69cac56de3db
fi|32|cde70464300bd05ba4b64ee6803f235747c4e5b0ffe3f0006174d12c8f7b52f981765b35e1bd2275dfed65feb2b1a3d16618a884bf7c25cc0c2efe0e418f1478
fr|32|8dc53e3a17fa6f69e979203ad273daa39f4b815737b96a19710c6a54b6e86c93d3bb3aca50729f96653d4976c3d75bd2f3b7a8a0abbf76a50e6d747612e4a1df
fur|32|6f9208192517829318aeac7e3ab7f08ce1ad46a4a7e03da50d9d96be94411219edcdd85fece04c858f4ed334ed649a520a8b0e687b4833e78c0ac7415a398087
fy-NL|32|b8e9be100efe4f18e6d2760040f193ae165ae4163737ba435f6721bfd98c0aaa33d9836191011b9f0e10d0c924995c59f6b81cd204486eb20b53530b999d32fc
ga-IE|32|46403414724c7329801b3d56315e9ae8d5c81de9430a803925743ed76f56a0362003436340a2a222c2c6c531d10219532a09fabd1f12860047891b5dc860633c
gd|32|7d8286ff2ef942d0ed8419db39a32d6e35343ba7590ab8aac12c58ae8960b3f7f629fa39d295d42cdfbc865d72f0f5ba959573f81edef0ae891b29e1d0d67213
gl|32|70fe112add484084e04035f99a6a97008ead5d0bde8c38d6880c4109605788ec7105c7ad27940b0d72d1413b1170483d404bccb5fc6870addc97823f08c5e17d
gn|32|0a4578ca5d69caae067e264dc82f04cb9708a9c67c5cddeebe04942ab9fb1c8a6869b7a97807d36e467f1ed4f5a11f1ebc17535f54d86e415ab8b176f370d325
gu-IN|32|5c3b8dc908d3112ef3117795cbd3bf86f7c9d94e7459db7da29f3954e61e37608d57bd76911a9d1fb7262dc95944f94250b5d032d21f8a419e52f45c4c471970
he|32|4e28bd5ce5720cc0b23e69f8c93f305d6609d4e276d85a45ff446133b50262e10cb7c5542641cdaffb86284914b5c962f66f77932ff0d44fb6cb79b9b49b4225
hi-IN|32|74e9066c096be328acf976aaf60f8e01db85e43815d3bae1df4fa9881a8a2ddfcbcefb7848b82d53208da3668a402e5fda6d06cbdcc3ff1da8cc659809f0dfd3
hr|32|77b2ad71662700d42b633fe14b6c09678e27ace9332a22cce5dad2abec10cc945be92062360e2db2ea8fab662cfcdfb3dc2b7469f92dc76ca97b84f87182fd8c
hsb|32|1efe713055e02aaea0cce88234e821c83b658a59dd988d4e2fc2adc67c1752b0bea032cd85c972b3e7a0b3e3345bcff9eac0d52f962ad118a203dfa64914faf8
hu|32|031c6998248fceb1847fa9a5a9ec68a2199eb6d8bd638cc64308ea2881c99ee32dfbcead63e7c4a30a3d643b22e4309dab4ed5bc2b325f3475ec75c67d2d82ce
hy-AM|32|ca3949393741f3daa4ff653606acbe013d15341110979a55ac8ebbb0ead57a14380a3994ce983c66422e4209cb8ca7bc3f689a7ed94836ca09c7fe3a22ad8d3e
hye|32|2813d145838f8cedd115c9ef85b41150ef0284bb1a4b8f6e6f14c252956e9f1f07b9f1c5f285f8e45ca762442f2a1a5b7bd0f0335c4bb521bddc392f16f8a1df
ia|32|0f6934737104e2a22e824eec92879797c896a1c20b52d9726cf8183fe28d09480b36fdef6d2795b94b48ab7e904b43982af3f536d9ed74910adad4a8a73552de
id|32|cadb5cf4ba5a6b3bb69b208e2fb819dd689fc8b128f2c1137b5b967d424243f5d0570e8787cabfe6936aed8572579b1eff1651f934b7142b951e2a94c6192b0a
is|32|49269964eda5205a16ed520c643137929b6416df3cc165da76c63fc908d8945eda7856e296c5893c037d179c6e1225fabeffe310aba83ec1a5d962c05d6ad8e5
it|32|01890193a98017fd517e9338ef2e59201a2387b72032e0804e2f21cd8d10efeabcc859b342ed9b5f4159cb8b7566b4487a3efd1a51d9c838323607913613a164
ja|32|61cc2ec3500c5e7a50e9efd843ad3d798395a96b09d132e05b50dd71df3b829fc54e4ffe992073cff939dd9784925fe683f90862f97cf75d155ff5be0adc1266
ka|32|c783cc56704c44254d7fd2383475633af5a6fbf1e645f6b37c5604d5a0bca5942d14e4316fbaddc23d3b801eeb9e3e3135652ea1837eda73214c610c040eb07e
kab|32|22e4e32506d1a70ebf5e84acccb5d5d15274f2d57a3929dfa436311a657213ef970c65be0a94aafa5fc39d5670d25324825303711ed544abab9d38d67c470466
kk|32|29aee1eefe61f0ec8e2e74bf33422ae814a152b23ae629da5907dc4d5f614523b95043db484104200c014f4fe5c06cc69c833b55271e86066614ac9f5871f2c4
km|32|df8cc1d9c43749ca2af3a9bb657c476c71295b0e5841951c9c3dfd38ce6d9e67e9b1e56999b91606d3b1e2ec789b430be663e981b1cf468a796a17e76b2ff6ff
kn|32|497879a458a5217b7fe8cdc7e4285644004247431935a0d63b0e572c92eed9a90b5f886780bfdeb4e3529877bfb7b9e211264d96388325b717fc079320d58193
ko|32|58276ea28570f094925dc99b8c8659f2bf5028c322f6882d9bafe65215275cf95fa20a8a01d34dfcd30cbffc60bd15343d24c64024a4e5b6c813b3cf8b13964f
lij|32|03d64e6ba8c5ae50904b2abaf292031dc53701591504aa77863c7d160fbb43274b2a010c45e390cbe15b7bf8615b1f8de5159414239cbcdf4ffb350dc38a2798
lo|32|2d8419433b9be56afccf6b267a311962bae84b394681a93ffb94768296b01f773e668371a18974dd9f0fe89d58bf95c023cc011c8a181a4e8902bcc2eeeb0b8d
lt|32|c576affacc42e430724512464b6f5ae385092f317d8ce23ae4dbde12efd009a356557692b2126868a76767694cf0625a2b02f2e60c26d353cbceedd86240045c
ltg|32|101990b7452d88615452ba9db089970d84d8c47eebfa13b59bf3dd1e9f4fdfbfc3ecfd336c81937a2600541dfe519db220b85dbe31504e9396075f6404156798
lv|32|603222954c724a26d99e4aac56d9d3cb10ba4f9dc18263a10e3e371a61e7012de6f789c4d2684e9ff65579d06cf35869451c0ea8286e955ad8808e49bc7e57ca
meh|32|fccf9078be514e7fae6f6174ed366f94a56ba753e8f13e67ba89c6143bbb5e96061c2007de3b2c43a1616db6d57e645682b48868a7e9ff6e55deb43fa56b463e
mk|32|9c1992444899390c3c2672a763a4fb646101fef45e627ae9c9588c58ef89c83e694edbc2655829a5cdd8cca6fdf3f603dba643673f237805b4400cc0c782c9de
mr|32|7e20810bc52dcc7730ebb3814b930348cf80d6ae224d9423afeed1eb662b4bc32be63ae0baac3234089eaafc547b7da973d24b3fdcb9595eb3a00dea4aae833c
ms|32|e93750bc646e63eb10f163ccadf2d254ff95bea47a28410a56fc0dbddb1e792646ad48ee6d1e1814320afb1150f6185432f474f9fea12324daa1083d04fc2975
my|32|5d44a2bdcc372b2884f678848c61b005b3b630442950b8c6819c812ece0225a34b7e6d60d5877c345a71f04f7809a7f5dabdb4ffe09879e5300154578f296faa
nb-NO|32|0ab45ed84420d3d2ba8c26f29a21a2dd16bd2d473ac5d1fbc72e8047c6c5fb5ad69a4e3e492bc099680bee2de5156017c762022d97e4e0094174b750d191eaed
ne-NP|32|99b16c3422cb5ece0e649902cbc0204f2f7d3b01156bccf042be284a7d26296429332be1b1648e1a9ad94b423cf971a5173414794480a4585ddcbb946870e041
nl|32|e96368e6e1f9f3c47a2ba965d062f1107d239ae095a2eccd24932c64f22912e786a59c925d0c2191f227a473082fd84965f9a50f00052c576e14ccfad3b2f1c5
nn-NO|32|d0ae80fbb9c375649ecab562d7da31398e9f38640cdf0d148cadae12a2b9c357a44fdcf661a1d679c0ef8b3a3a4848eae58768fd4c79f5431da3ec04822babeb
oc|32|487eb020e5b408c1440991cf864fd14b778eaec9896209f5c0e9db4f52e4ed1eb8d30cf67e4e371669d360471aa0363ccf7368690898b1bb179594210b535228
pa-IN|32|8af384e0e06479428155ffdc4de0e24d6b54e3d9fb83fd99c72733ae89a490abf77a8a0ace4dd32d33ac51c6e7ac65954a6ce1c0c11745e44223de4c5af4612a
pl|32|b5aedf6e7ac8772f8b2b380ac0737cef150342653813280352bf507536407cf468a814fd58fde36699ca5f0d161cf273b7b11e528908c2241270023da13173ee
pt-PT|32|353032d862092d9d89da1259a0d6cd7838a43bc1f7d539f1c5ff033892bfdc0ecb6ef85bec0d6c140a2e15ea073ab341fd9cd01f9bb12861bac4bce8efd01cef
rm|32|bad66444f9d89fd2c0e6363d30e2712b8b39e4f37fea8e343e46669c7627b8387dd7c4c6738c4dd3e4f05048682f4fad1a94198f34f5e06f46f8127301b65472
ro|32|db3d72f79ac046d472c95eb90509d5bbef8321dd323ab0e2d95a85661e3823a4d794cc1086701014cf3e82e8ebe0adf12a30ed34295f4c5c7510fa1ecd64d80f
ru|32|e60793eb984f0b82b13f9952c8519832beb2a464909a8edd89af2404acb326e71ecb8feea4c9398d59ad153b01ea22059819462d641763256723fdb49927b593
sat|32|a82990102f7ff386beff01e40b7c83cfe4b6192ca7e69dff7c111c0ce13b693eb7152e18ff4322ffb98e149e87d01c30206d6b31a292533bd5b6ad55d9f9192a
scn|32|96078dcd7b0addc6c1c60e944741f48b6360121742dcdb41ec8f8153aa99e33a47c43f310f7e65fbcba6343511d5d6904b1730e8242b8712dff4076380fc004d
sco|32|703c52341a8032187fe35afa078663550a0ce5297fa616a25994755ba6d4ec80dff5ebf1c46654bc0bfc30d58b1f3c197bf7676382255cb7fa95b2c25990d99c
si|32|6084b322c00db382a4b0e2ca81e78e75f09111980a46e4ba9469616dc95cf5eef2c38335aedc56f5e1c9c5acf7f5beb31f493de8d0fcd96e2f45f379db4c9800
sk|32|85e027fea7f21653b7b0feabf150a0c2e59e6407890906791dbf0394e932af760a04fba20bfaad729e72048966af4ea61fc56d51fa22e5ed5eea06f0e0269826
sl|32|12f0703da5b1bf81b40f014a56464489dd7520ccb184baab21891ba6871b394b1c880d4f964e461edb323f61c21dae5de648ab3c38f662efbdcfe86623b5750a
son|32|344b068b76668fc16d3ccceecfc4a1b355be16cbdab80e937f767ceb95f613369b56db14022ae4b8ba01d7062b70531dbff65243b4610ef1e6f8f8020c66cf1f
sr|32|3dd32add5085677a5f01b425085a663a6f092b8a491db35acf3c0c333279cc8365e2d54b6a63f6c82861076225dc1dd7e81a62125f18782545c29b31e032a8f8
sv-SE|32|2810f4c8a581a8272d5da5d621eea98ede16577eeb2bb901edc1e8613befa168fbcd33ab19586b8418891157e0d4d480ec6eb3ad6a52ee7509e0b30ba906174d
szl|32|f7e09731da3a9bbfe9291fa793b10b1f3a3109019be4168c6a0033c49b3db3cdad11131ee9c91a4ecc606bf7a1bf739a9840a85da938baa9aa4730bfa3b9f340
ta|32|eaaac903ef08fac38f6b35c44246c03ff7266996e3c1ca4a84cd0b8d7ad7c83c07c7b8b4799a98b8579933630b57742b8ae7c2021283cce134903e5a1f675ac3
te|32|915102bfff0f261be242b34e41da3a22a7103a0b38fe96a0a89d1f10fea9de53ff10022ea31123f3a6fafb7fd8eb55aee83dd401adf644c72491f0f28071a8a6
tg|32|82bd0b7ebcfea04c48f7f64275fb4ca827ee8b89a34cd97b64cf7eff1cb42377e224067970db03c4bc4d9460fdbfcc6d139554fe4bf91c568ef8c75678f71430
th|32|441acb564131b69d4e4d5ca586fc3aa2721c8f3599ceabe5e4801dadf5627efa4207d34b342d5e1e791782de0e4e4039a1e17bd662abd0271f03ec86a6e3e76e
tl|32|7ba628adc57885b54f511497d1da22bad1603ea17a8d353060a1f295a89c39e56968a297e2331561d2172d47d89183eff548a0491dec4e2f2469fd8aa11310ae
trs|32|7d0add430736441c44af952b2665df81191daed273dd4ad02648e5eecb6f505390d0653ce65a11cf8d34aef6e0e887a8b846abd4622889a2e056d30889a2da55
uk|32|ce8bca3a43da045d7d5e30762dcf7ca39822bd9929c7347edb434e760c8b783032529fe83c820df24a51b42afdf8b7b30d5d105745604714a2839176e8ee8283
ur|32|e13d266793977a09993f86975041d9aed04b23258aba1ac8ffb34e93b8e222472e95b1e5bfe2b8a8929c5b07e8192d81cb5f6d905f9fc548f3cb2a4576c3dfe9
uz|32|54787da590d859eaf16835de2b356e9e9fea1efa7c9eede4e8cddca77d54f4aac8f14664726390835438aeaeb5d63ce8c67d8083e210a7b351d297253453209d
vi|32|52821ff0ae2eb30aa2cc2f25169a1c8fd9436577cff703301a44036d22a2e57374ad0494c3d152d5d35528cec800b2a221dfb1be3ec4bf340519577842e6b19c
wo|32|28106f00e35013b137bd3be33367795c78898abb38d51cf60eab934d8ccacf4941650e5a1d19bb2c84d1a18e38017cb06dead1bd0a98956a778d61a0136bff62
xh|32|bde5a72d554d53546762353e8a4eb68f29db52a31463befc33763b22fd0066b67cf86a5f092c7e0cb1618d72b2a18898d0e18205343c6195d44c3a55f8fa4d18
zh-CN|32|510342511f02d8e3956f7a4e6f8d0eefdafb094f251a3e23839dbc63bac2a0a676b2b81d11a2ed5389737b63efee180d1772862c8d5746a0beffd5f4cb72eb30
zh-TW|32|6a4e1e2bdd4a02c6af266c6ab3d998233db29031008222f38466f0d6bf001025df43d6ae0fab2e2c639207d3e7ed60648f1440bdc665af9fa3221c6d56c588cd
$ErrorActionPreference = 'Stop';
$packageName = 'firefox-nightly'
$uninstalled = $false
[array]$key = Get-UninstallRegistryKey -SoftwareName 'Nightly*' | 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.
- firefox-nightly.121.0.1.2023102321-alpha.nupkg (5f93dfcd26ed) - ## / 64
- firefox-121.0a1.en-US.win64.installer.exe (b4934697ffeb) - ## / 55
- firefox-121.0a1.en-US.win32.installer.exe (c0d79f08fd3e) - ## / 56
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.
Mozilla Foundation
-
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about Firefox Nightly and the Firefox Nightly 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 Firefox Nightly, 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.