Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
-
STEP1
Package Review
-
STEP2
Integration Method
-
STEP3
Internal Repo Url
-
STEP4
Environment Setup
-
STEP5
Install Script
Step 1: Review Your Packages
Step 2: Choose Your Integration Method
Step 3: Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
Step 3: Copy Your Script or Download Config
Option 1: Copy Script
Option 2: Download Config
Step 4: 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 packages and push them to a repository
Download Packages
-
Open Source
-
Download the packages:
Download Packages - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
-
For package and dependencies run:
- Automate package internalization
-
Run: (additional options)
Step 5: Copy Your Script
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:
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### We initialize a few things that are needed by this script - there are no other requirements.
$ErrorActionPreference = "Stop"
#### Set TLS 1.2 (3072) as that is the minimum required by various up-to-date repositories.
#### Use integers because the enumeration value for TLS 1.2 won't exist
#### in .NET 4.0, even though they are addressable if .NET 4.5+ is
#### installed (.NET 4.5 is an in-place upgrade).
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072
#### We use this variable for future REST calls.
$RequestArguments = @{
UseBasicParsing = $true
}
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# )
# $RequestArguments.Credential = $NugetRepositoryCredential
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it
$ChocolateyDownloadUrl = "$($NugetRepositoryUrl.TrimEnd('/'))/package/chocolatey.1.1.0.nupkg"
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
#### Download the Nupkg, appending .zip to the filename to handle archive cmdlet limitations
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
$TempDirectory = Join-Path $env:Temp "chocolateyInstall"
if (-not (Test-Path $TempDirectory -PathType Container)) {
$null = New-Item -Path $TempDirectory -ItemType Directory
}
$DownloadedNupkg = Join-Path $TempDirectory "$(Split-Path $ChocolateyDownloadUrl -Leaf).zip"
Invoke-WebRequest -Uri $ChocolateyDownloadUrl -OutFile $DownloadedNupkg @RequestArguments
#### Extract the Nupkg, and run the chocolateyInstall script
if (Get-Command Microsoft.PowerShell.Archive\Expand-Archive -ErrorAction SilentlyContinue) {
Microsoft.PowerShell.Archive\Expand-Archive -Path $DownloadedNupkg -DestinationPath $TempDirectory -Force
} else {
# PowerShell versions <4.0 do not have this function available
try {
$shellApplication = New-Object -ComObject Shell.Application
$zipPackage = $shellApplication.NameSpace($DownloadedNupkg)
$destinationFolder = $shellApplication.NameSpace($TempDirectory)
$destinationFolder.CopyHere($zipPackage.Items(), 0x10)
} catch {
Write-Warning "Unable to unzip package using built-in compression."
throw $_
}
}
& $(Join-Path $TempDirectory "tools\chocolateyInstall.ps1")
}
if (-not (Get-Command choco.exe -ErrorAction SilentlyContinue)) {
refreshenv
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# choco feature enable -n useFipsCompliantChecksums
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
choco config set --name cacheLocation --value C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
choco config set --name commandExecutionTimeoutSeconds --value 14400
#### Turn off download progress when running choco through integrations
choco feature disable --name showDownloadProgress
### c. Sources ###
#### Remove the default community package repository source
choco source list --limitoutput | ConvertFrom-Csv -Header 'Name', 'Location' -Delimiter '|' | ForEach-Object {
if ($_.Location -eq 'https://community.chocolatey.org/api/v2/') {
choco source remove -n $_.Name
}
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
if ($NugetRepositoryCredential) {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --user $NugetRepositoryCredential.UserName --password $NugetRepositoryCredential.GetNetworkCredential().Password --priority 1
} else {
choco source add --name ChocolateyInternal --source $NugetRepositoryUrl --priority 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
choco upgrade chocolatey --confirm
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
choco install chocolatey-license --source $NugetRepositoryUrl --confirm
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco source disable --name chocolatey.licensed
} else {
Write-Warning "Not disabling 'chocolatey.licensed' feed, as Chocolatey-License has not been installed."
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
if ("chocolatey-license" -in (choco list --localonly --limitoutput | ConvertFrom-Csv -Header "Name" -Delimiter "|").Name) {
choco install chocolatey.extension --source $NugetRepositoryUrl --confirm
} else {
Write-Warning "Not installing 'chocolatey.extension', as Chocolatey-License has not been installed."
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
choco feature disable --name showNonElevatedWarnings
choco feature enable --name useBackgroundService
choco feature enable --name useBackgroundServiceWithNonAdministratorsOnly
choco feature enable --name allowBackgroundServiceUninstallsFromUserInstallsOnly
choco config set --name allowedBackgroundServiceCommands --value "install,upgrade,uninstall"
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
choco install chocolatey-agent --source $NugetRepositoryUrl --confirm
choco config set --name CentralManagementServiceUrl --value $ChocolateyCentralManagementUrl
if ($ChocolateyCentralManagementClientSalt) {
choco config set --name centralManagementClientCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementClientSalt
}
if ($ChocolateyCentralManagementServiceSalt) {
choco config set --name centralManagementServiceCommunicationSaltAdditivePassword --value $ChocolateyCentralManagementServiceSalt
}
choco feature enable --name useChocolateyCentralManagement
choco feature enable --name useChocolateyCentralManagementDeployments
}
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. chocolatey.chocolatey
##### You will require the chocolatey.chocolatey collection to be installed
##### on all machines using this playbook.
##### Please see https://github.com/chocolatey/chocolatey-ansible/#installing-the-collection-from-ansible-galaxy
- name: Install and Configure Chocolatey
hosts: all
## 2. TOP LEVEL VARIABLES ##
vars:
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
nuget_repository_url: INTERNAL REPO URL
### b. Internal Repository Credential ###
#### If required, add the repository access credential here and
#### uncomment lines with source_username and source_password below
# nuget_repository_username: username
# nuget_repository_password: password
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# chocolatey_central_management_url: https://chocolatey-central-management:24020/ChocolateyManagementService
#### ii. If using a Client Salt, add it here
# chocolatey_central_management_client_salt: clientsalt
#### iii. If using a Service Salt, add it here
# chocolatey_central_management_service_salt: servicesalt
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
tasks:
- name: Install chocolatey
win_chocolatey:
name: chocolatey
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# - name: Enable FIPS compliance
# win_chocolatey_feature:
# name: useFipsCompliantChecksums
# state: enabled
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
- name: Set the cache location
win_chocolatey_config:
name: cacheLocation
state: present
value: C:\ProgramData\chocolatey\cache
#### Increase timeout to at least 4 hours
- name: Set the command execution timeout
win_chocolatey_config:
name: commandExecutionTimeoutSeconds
state: present
value: 14400
#### Turn off download progress when running choco through integrations
- name: Disable showing download progress
win_chocolatey_feature:
name: showDownloadProgress
state: disabled
### c. Sources ###
#### Remove the default community package repository source
- name: Remove Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey
state: absent
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
- name: Add Internal Repository
win_chocolatey_source:
name: ChocolateyInternal
state: present
source: {{ nuget_repository_url }}
# source_username: {{ nuget_repository_username }}
# source_password: {{ nuget_repository_password }}
priority: 1
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
- name: Upgrade Chocolatey
win_chocolatey:
name: chocolatey
state: latest
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
- name: Install Chocolatey License
win_chocolatey:
name: chocolatey-license
source: ChocolateyInternal
state: latest
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
- name: Disable Chocolatey Community Repository
win_chocolatey_source:
name: chocolatey.licensed
state: disabled
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
- name: Install Chocolatey Extension
win_chocolatey:
name: chocolatey.extension
source: ChocolateyInternal
state: latest
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
- name: Hide not-elevated warnings
win_chocolatey_feature:
name: showNonElevatedWarnings
state: disabled
- name: Use background mode for self-service
win_chocolatey_feature:
name: useBackgroundService
state: enabled
- name: Use background service for non-admins
win_chocolatey_feature:
name: useBackgroundServiceWithNonAdministratorsOnly
state: enabled
- name: Allow background uninstallation for user installs
win_chocolatey_feature:
name: allowBackgroundServiceUninstallsFromUserInstallsOnly
state: enabled
- name: Set allowed background service commands
win_chocolatey_config:
name: backgroundServiceAllowedCommands
state: present
value: install,upgrade,uninstall
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
- name: Install Chocolatey Agent
when: chocolatey_central_management_url is defined
win_chocolatey:
name: chocolatey-agent
source: ChocolateyInternal
state: latest
- name: Set the Central Management Service URL
when: chocolatey_central_management_url is defined
win_chocolatey_config:
name: CentralManagementServiceUrl
state: present
value: {{ chocolatey_central_management_url }}
- name: Set the Central Management Client Salt
when: chocolatey_central_management_client_salt is defined
win_chocolatey_config:
name: centralManagementClientCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_client_salt }}
- name: Set the Central Management Service Salt
when: chocolatey_central_management_service_salt is defined
win_chocolatey_config:
name: centralManagementServiceCommunicationSaltAdditivePassword
state: present
value: {{ chocolatey_central_management_service_salt }}
- name: Use Central Management
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagement
state: enabled
- name: Use Central Management Deployments
when: chocolatey_central_management_url is defined
win_chocolatey_feature:
name: useChocolateyCentralManagementDeployments
state: enabled
See docs at https://docs.chef.io/resource_chocolatey_package.html.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### The Chocolatey resources are available with any recent version of Chef.
#### We utilise the Chocolatey recipe to install the Chocolatey binaries.
include_recipe "chocolatey"
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
NugetRepositoryUrl = "INTERNAL REPO URL"
### b. Internal Repository Credential ###
#### If required, add the repository access credential here
# NugetRepositoryUsername = "username"
# NugetRepositoryPassword = "password"
### c. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### d. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService"
#### ii. If using a Client Salt, add it here
# ChocolateyCentralManagementClientSalt = "clientsalt"
#### iii. If using a Service Salt, add it here
# ChocolateyCentralManagementServiceSalt = "servicesalt"
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
node['chocolatey']['install vars'] = {
'chocolateyDownloadUrl' => "#{ChocolateyNupkgUrl}",
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# chocolatey_feature 'useFipsCompliantChecksums' do
# action :enable
# end
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolatey_config 'cacheLocation' do
value 'C:\ProgramData\chocolatey\cache'
end
#### Increase timeout to at least 4 hours
chocolatey_config 'commandExecutionTimeoutSeconds' do
value '14400'
end
#### Turn off download progress when running choco through integrations
chocolatey_feature 'showDownloadProgress' do
action :disable
end
### c. Sources ###
#### Remove the default community package repository source
chocolatey_source 'chocolatey' do
action :remove
end
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE may require changes
chocolatey_source 'ChocolateyInternal' do
source "#{NugetRepositoryUrl}"
priority 1
action :add
end
execute 'ChocolateyInternal' do
command "choco source add --name ChocolateyInternal -s #{NugetRepositoryUrl} -u=#{NugetRepositoryUsername} -p=#{NugetRepositoryPassword} --priority=1"
only_if { NugetRepositoryUsername != nil || NugetRepositoryPassword != nil }
end
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
chocolatey_package 'chocolatey' do
action :upgrade
source "#{NugetRepositoryUrl}"
end
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
chocolatey_package 'chocolatey-license' do
action :install
source "#{NugetRepositoryUrl}"
end
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
chocolatey_source 'chocolatey.licensed' do
action :disable
end
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
chocolatey_package 'chocolatey.extention' do
action install
source "#{NugetRepositoryUrl}"
end
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolatey_feature 'showNonElevatedWarnings' do
action :disable
end
chocolatey_feature 'useBackgroundService' do
action :enable
end
chocolatey_feature 'useBackgroundServiceWithNonAdministratorsOnly' do
action :enable
end
chocolatey_feature 'allowBackgroundServiceUninstallsFromUserInstallsOnly' do
action :enable
end
chocolatey_config 'backgroundServiceAllowedCommands' do
value 'install,upgrade,uninstall'
end
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
chocolatey_package 'chocolatey-agent' do
action install
source "#{NugetRepositoryUrl}"
# user "#{NugetRepositoryUsername}"
# password "#{NugetRepositoryPassword}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'CentralManagementServiceUrl' do
value "#{ChocolateyCentralManagementUrl}"
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_config 'centralManagementClientCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementClientSalt}"
only_if { ChocolateyCentralManagementClientSalt != nil }
end
chocolatey_config 'centralManagementServiceCommunicationSaltAdditivePassword' do
value "#{ChocolateyCentralManagementServiceSalt}"
only_if { ChocolateyCentralManagementServiceSalt != nil }
end
chocolatey_feature 'useChocolateyCentralManagement' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
chocolatey_feature 'useChocolateyCentralManagementDeployments' do
action :enable
only_if { ChocolateyCentralManagementUrl != nil }
end
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
If Applicable - Chocolatey Configuration/Installation
#requires -Modules cChoco
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires chocolatey\cChoco DSC module to be installed on the machine compiling the DSC manifest
#### NOTE: This will need to be installed before running the DSC portion of this script
if (-not (Get-Module cChoco -ListAvailable)) {
$null = Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
if (($PSGallery = Get-PSRepository -Name PSGallery).InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy Trusted
}
Install-Module -Name cChoco
if ($PSGallery.InstallationPolicy -ne "Trusted") {
Set-PSRepository -Name PSGallery -InstallationPolicy $PSGallery.InstallationPolicy
}
}
#### ii. Requires a hosted copy of the install.ps1 script
##### This should be available to download without authentication.
##### The original script can be found here: https://community.chocolatey.org/install.ps1
Configuration ChocolateyConfig {
## 2. TOP LEVEL VARIABLES ##
param(
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$NugetRepositoryUrl = "INTERNAL REPO URL",
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$ChocolateyNupkgUrl = "INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg",
### c. Internal Repository Credential ###
#### If required, add the repository access credential here
# $NugetRepositoryCredential = [PSCredential]::new(
# "username",
# ("password" | ConvertTo-SecureString -AsPlainText -Force)
# ),
### d. Install.ps1 URL
#### The path to the hosted install script:
$ChocolateyInstallPs1Url = "https://community.chocolatey.org/install.ps1"
### e. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $ChocolateyCentralManagementUrl = "https://chocolatey-central-management:24020/ChocolateyManagementService",
#### ii. If using a Client Salt, add it here
# $ChocolateyCentralManagementClientSalt = "clientsalt",
#### iii. If using a Service Salt, add it here
# $ChocolateyCentralManagementServiceSalt = "servicesalt"
)
Import-DscResource -ModuleName PSDesiredStateConfiguration
Import-DscResource -ModuleName cChoco
Node 'localhost' {
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
Environment chocoDownloadUrl {
Name = "chocolateyDownloadUrl"
Value = $ChocolateyNupkgUrl
}
cChocoInstaller installChocolatey {
DependsOn = "[Environment]chocoDownloadUrl"
InstallDir = Join-Path $env:ProgramData "chocolatey"
ChocoInstallScriptUrl = $ChocolateyInstallPs1Url
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
# cChocoFeature featureFipsCompliance {
# FeatureName = "useFipsCompliantChecksums"
# }
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
cChocoConfig cacheLocation {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "cacheLocation"
Value = "C:\ProgramData\chocolatey\cache"
}
#### Increase timeout to at least 4 hours
cChocoConfig commandExecutionTimeoutSeconds {
DependsOn = "[cChocoInstaller]installChocolatey"
ConfigName = "commandExecutionTimeoutSeconds"
Value = 14400
}
#### Turn off download progress when running choco through integrations
cChocoFeature showDownloadProgress {
DependsOn = "[cChocoInstaller]installChocolatey"
FeatureName = "showDownloadProgress"
Ensure = "Absent"
}
### c. Sources ###
#### Remove the default community package repository source
cChocoSource removeCommunityRepository {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "chocolatey"
Ensure = "Absent"
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here.
#### NOTE: This EXAMPLE may require changes
cChocoSource addInternalSource {
DependsOn = "[cChocoInstaller]installChocolatey"
Name = "ChocolateyInternal"
Source = $NugetRepositoryUrl
Credentials = $NugetRepositoryCredential
Priority = 1
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
cChocoPackageInstaller updateChocolatey {
DependsOn = "[cChocoSource]addInternalSource", "[cChocoSource]removeCommunityRepository"
Name = "chocolatey"
AutoUpgrade = $true
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/how-tos/setup-offline-installation#exercise-4-create-a-package-for-the-license
cChocoPackageInstaller chocolateyLicense {
DependsOn = "[cChocoPackageInstaller]updateChocolatey"
Name = "chocolatey-license"
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
Script disableLicensedSource {
DependsOn = "[cChocoPackageInstaller]chocolateyLicense"
GetScript = {
$Source = choco source list --limitoutput | `
ConvertFrom-Csv -Delimiter '|' -Header Name, Source, Disabled | `
Where-Object Name -eq "chocolatey.licensed"
return @{
Result = if ($Source) {
[bool]::Parse($Source.Disabled)
} else {
Write-Warning "Source 'chocolatey.licensed' was not present."
$true # Source does not need disabling
}
}
}
SetScript = {
$null = choco source disable --name "chocolatey.licensed"
}
TestScript = {
$State = [ScriptBlock]::Create($GetScript).Invoke()
return $State.Result
}
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
cChocoPackageInstaller chocolateyLicensedExtension {
DependsOn = "[Script]disableLicensedSource"
Name = "chocolatey.extension"
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
cChocoFeature hideElevatedWarnings {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "showNonElevatedWarnings"
Ensure = "Absent"
}
cChocoFeature useBackgroundService {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundService"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceWithNonAdmins {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "useBackgroundServiceWithNonAdministratorsOnly"
Ensure = "Present"
}
cChocoFeature useBackgroundServiceUninstallsForUserInstalls {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
FeatureName = "allowBackgroundServiceUninstallsFromUserInstallsOnly"
Ensure = "Present"
}
cChocoConfig allowedBackgroundServiceCommands {
DependsOn = "[cChocoFeature]useBackgroundService"
ConfigName = "backgroundServiceAllowedCommands"
Value = "install,upgrade,uninstall"
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if ($ChocolateyCentralManagementUrl) {
cChocoPackageInstaller chocolateyAgent {
DependsOn = "[cChocoPackageInstaller]chocolateyLicensedExtension"
Name = "chocolatey-agent"
}
cChocoConfig centralManagementServiceUrl {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "CentralManagementServiceUrl"
Value = $ChocolateyCentralManagementUrl
}
if ($ChocolateyCentralManagementClientSalt) {
cChocoConfig centralManagementClientSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementClientCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementClientSalt
}
}
if ($ChocolateyCentralManagementServiceSalt) {
cChocoConfig centralManagementServiceSalt {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
ConfigName = "centralManagementServiceCommunicationSaltAdditivePassword"
Value = $ChocolateyCentralManagementServiceSalt
}
}
cChocoFeature useCentralManagement {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagement"
Ensure = "Present"
}
cChocoFeature useCentralManagementDeployments {
DependsOn = "[cChocoPackageInstaller]chocolateyAgent"
FeatureName = "useChocolateyCentralManagementDeployments"
Ensure = "Present"
}
}
}
}
# If working this into an existing configuration with a good method for
$ConfigData = @{
AllNodes = @(
@{
NodeName = "localhost"
PSDscAllowPlainTextPassword = $true
}
)
}
try {
Push-Location $env:Temp
$Config = ChocolateyConfig -ConfigurationData $ConfigData
Start-DscConfiguration -Path $Config.PSParentPath -Wait -Verbose -Force
} finally {
Pop-Location
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
If Applicable - Chocolatey Configuration/Installation
## 1. REQUIREMENTS ##
### Here are the requirements necessary to ensure this is successful.
### a. Internal/Private Cloud Repository Set Up ###
#### You'll need an internal/private cloud repository you can use. These are
#### generally really quick to set up and there are quite a few options.
#### Chocolatey Software recommends Nexus, Artifactory Pro, or ProGet as they
#### are repository servers and will give you the ability to manage multiple
#### repositories and types from one server installation.
### b. Download Chocolatey Package and Put on Internal Repository ###
#### You need to have downloaded the Chocolatey package as well.
#### Please see https://chocolatey.org/install#organization
### c. Other Requirements ###
#### i. Requires puppetlabs/chocolatey module
#### See https://forge.puppet.com/puppetlabs/chocolatey
## 2. TOP LEVEL VARIABLES ##
### a. Your internal repository url (the main one). ###
#### Should be similar to what you see when you browse
#### to https://community.chocolatey.org/api/v2/
$_repository_url = 'INTERNAL REPO URL'
### b. Chocolatey nupkg download url ###
#### This url should result in an immediate download when you navigate to it in
#### a web browser
$_choco_download_url = 'INTERNAL REPO URL/package/chocolatey.1.1.0.nupkg'
### c. Chocolatey Central Management (CCM) ###
#### If using CCM to manage Chocolatey, add the following:
#### i. Endpoint URL for CCM
# $_chocolatey_central_management_url = 'https://chocolatey-central-management:24020/ChocolateyManagementService'
#### ii. If using a Client Salt, add it here
# $_chocolatey_central_management_client_salt = "clientsalt"
#### iii. If using a Service Salt, add it here
# $_chocolatey_central_management_service_salt = 'servicesalt'
## 3. ENSURE CHOCOLATEY IS INSTALLED ##
### Ensure Chocolatey is installed from your internal repository
### Note: `chocolatey_download_url is completely different than normal
### source locations. This is directly to the bare download url for the
### chocolatey.nupkg, similar to what you see when you browse to
### https://community.chocolatey.org/api/v2/package/chocolatey
class {'chocolatey':
chocolatey_download_url => $_choco_download_url,
use_7zip => false,
}
## 4. CONFIGURE CHOCOLATEY BASELINE ##
### a. FIPS Feature ###
#### If you need FIPS compliance - make this the first thing you configure
#### before you do any additional configuration or package installations
#chocolateyfeature {'useFipsCompliantChecksums':
# ensure => enabled,
#}
### b. Apply Recommended Configuration ###
#### Move cache location so Chocolatey is very deterministic about
#### cleaning up temporary data and the location is secured to admins
chocolateyconfig {'cacheLocation':
value => 'C:\ProgramData\chocolatey\cache',
}
#### Increase timeout to at least 4 hours
chocolateyconfig {'commandExecutionTimeoutSeconds':
value => '14400',
}
#### Turn off download progress when running choco through integrations
chocolateyfeature {'showDownloadProgress':
ensure => disabled,
}
### c. Sources ###
#### Remove the default community package repository source
chocolateysource {'chocolatey':
ensure => absent,
location => 'https://community.chocolatey.org/api/v2/',
}
#### Add internal default sources
#### You could have multiple sources here, so we will provide an example
#### of one using the remote repo variable here
#### NOTE: This EXAMPLE requires changes
chocolateysource {'internal_chocolatey':
ensure => present,
location => $_repository_url,
priority => 1,
username => 'optional',
password => 'optional,not ensured',
bypass_proxy => true,
admin_only => false,
allow_self_service => false,
}
### b. Keep Chocolatey Up To Date ###
#### Keep chocolatey up to date based on your internal source
#### You control the upgrades based on when you push an updated version
#### to your internal repository.
#### Note the source here is to the OData feed, similar to what you see
#### when you browse to https://community.chocolatey.org/api/v2/
package {'chocolatey':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
## 5. ENSURE CHOCOLATEY FOR BUSINESS ##
### If you don't have Chocolatey for Business (C4B), you'll want to remove from here down.
### a. Ensure The License File Is Installed ###
#### Create a license package using script from https://docs.chocolatey.org/en-us/guides/organizations/organizational-deployment-guide#exercise-4-create-a-package-for-the-license
# TODO: Add resource for installing/ensuring the chocolatey-license package
package {'chocolatey-license':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
}
### b. Disable The Licensed Source ###
#### The licensed source cannot be removed, so it must be disabled.
#### This must occur after the license has been set by the license package.
## Disabled sources still need all other attributes until
## https://tickets.puppetlabs.com/browse/MODULES-4449 is resolved.
## Password is necessary with user, but not ensurable, so it should not
## matter what it is set to here. If you ever do get into trouble here,
## the password is your license GUID.
chocolateysource {'chocolatey.licensed':
ensure => disabled,
priority => '10',
user => 'customer',
password => '1234',
require => Package['chocolatey-license'],
}
### c. Ensure Chocolatey Licensed Extension ###
#### You will have downloaded the licensed extension to your internal repository
#### as you have disabled the licensed repository in step 5b.
#### Ensure the chocolatey.extension package (aka Chocolatey Licensed Extension)
package {'chocolatey.extension':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
#### The Chocolatey Licensed Extension unlocks all of the following, which also have configuration/feature items available with them. You may want to visit the feature pages to see what you might want to also enable:
#### - Package Builder - https://docs.chocolatey.org/en-us/features/paid/package-builder
#### - Package Internalizer - https://docs.chocolatey.org/en-us/features/paid/package-internalizer
#### - Package Synchronization (3 components) - https://docs.chocolatey.org/en-us/features/paid/package-synchronization
#### - Package Reducer - https://docs.chocolatey.org/en-us/features/paid/package-reducer
#### - Package Audit - https://docs.chocolatey.org/en-us/features/paid/package-audit
#### - Package Throttle - https://docs.chocolatey.org/en-us/features/paid/package-throttle
#### - CDN Cache Access - https://docs.chocolatey.org/en-us/features/paid/private-cdn
#### - Branding - https://docs.chocolatey.org/en-us/features/paid/branding
#### - Self-Service Anywhere (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/self-service-anywhere
#### - Chocolatey Central Management (more components will need to be installed and additional configuration will need to be set) - https://docs.chocolatey.org/en-us/features/paid/chocolatey-central-management
#### - Other - https://docs.chocolatey.org/en-us/features/paid/
### d. Ensure Self-Service Anywhere ###
#### If you have desktop clients where users are not administrators, you may
#### to take advantage of deploying and configuring Self-Service anywhere
chocolateyfeature {'showNonElevatedWarnings':
ensure => disabled,
}
chocolateyfeature {'useBackgroundService':
ensure => enabled,
}
chocolateyfeature {'useBackgroundServiceWithNonAdministratorsOnly':
ensure => enabled,
}
chocolateyfeature {'allowBackgroundServiceUninstallsFromUserInstallsOnly':
ensure => enabled,
}
chocolateyconfig {'backgroundServiceAllowedCommands':
value => 'install,upgrade,uninstall',
}
### e. Ensure Chocolatey Central Management ###
#### If you want to manage and report on endpoints, you can set up and configure
### Central Management. There are multiple portions to manage, so you'll see
### a section on agents here along with notes on how to configure the server
### side components.
if $_chocolatey_central_management_url {
package {'chocolatey-agent':
ensure => latest,
provider => chocolatey,
source => $_repository_url,
require => Package['chocolatey-license'],
}
chocolateyconfig {'CentralManagementServiceUrl':
value => $_chocolatey_central_management_url,
}
if $_chocolatey_central_management_client_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
if $_chocolatey_central_management_service_salt {
chocolateyconfig {'centralManagementClientCommunicationSaltAdditivePassword':
value => $_chocolatey_central_management_client_salt,
}
}
chocolateyfeature {'useChocolateyCentralManagement':
ensure => enabled,
require => Package['chocolatey-agent'],
}
chocolateyfeature {'useChocolateyCentralManagementDeployments':
ensure => enabled,
require => Package['chocolatey-agent'],
}
}
Need Help? View our docs or file an issue.
There is already a version of this package in your Script Builder
Current Version | New Version |
---|---|
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
350,038
Downloads of v 102.0.1.2022051421-alpha:
22
Last Update:
15 May 2022
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
102.0.1.2022051421-alpha | Updated: 15 May 2022
- 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:
350,038
Downloads of v 102.0.1.2022051421-alpha:
22
Maintainer(s):
Software Author(s):
- Mozilla
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
- 1
- 2
- 3
Firefox Nightly
102.0.1.2022051421-alpha
This is a prerelease version of Firefox Nightly.
- 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:
📝 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
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=102.0.1.2022051421-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="'102.0.1.2022051421-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="'102.0.1.2022051421-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: '102.0.1.2022051421-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 '102.0.1.2022051421-alpha'
options '--prerelease'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller firefox-nightly
{
Name = "firefox-nightly"
Version = "102.0.1.2022051421-alpha"
Source = "INTERNAL REPO URL"
chocoParams = "--prerelease"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'firefox-nightly':
ensure => '102.0.1.2022051421-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 15 May 2022.
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.
$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-nightly'
$softwareName = 'Nightly'
#$alreadyInstalled = (AlreadyInstalled -product $softwareName -version '102.0a1')
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 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://archive.mozilla.org/pub/firefox/nightly/2022/05/2022-05-14-21-39-37-mozilla-central/firefox-102.0a1.${locale}.win32.installer.exe"
silentArgs = '-ms'
validExitCodes = @(0)
}
if (!(Get-32bitOnlyInstalled($softwareName)) -and (Get-OSArchitectureWidth 64)) {
$packageArgs.Checksum64 = $checksums.Win64
$packageArgs.ChecksumType64 = 'sha512'
$packageArgs.Url64 = "https://archive.mozilla.org/pub/firefox/nightly/2022/05/2022-05-14-21-39-37-mozilla-central/firefox-102.0a1.${locale}.win64.installer.exe"
}
Install-ChocolateyPackage @packageArgs
#}
$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)"}
}
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|1f47b884a65c334f4122984a8b68b49dce9fab9cd2d55dcfab0dffc6216af39584439582b4a9d727c5f5ec8efc05308e889f5cbb1c50f4e7f14855acbaf5095e
ach|64|c9cf52195be70b4d3a477fa343ca56a0e9f8d1f01b98889927861921ccc8df18df62b76e719a241ba915b191d98258551c341051b9c600928936efa80d75bd4a
af|32|ff4dfae31e40c808e869207819fbe81520a4ed234ebd710d1a1be1f775b7843bd6abe3a2bb5466e47386cc9330dde767d700cad355f11b87c0f47703281d3b98
af|64|2c9dfdf7c7ffbb5c372d61fef41d6e995c4241b541e68a16acfb2b7173627742f324d13ad80188b870df9db74c7e3354705b0a286f118447f6a14f81c8fee0c1
an|32|20f04d81ff264c5191435d81260505dfc121c00caf9dc908fb1f374314df614850e2714a3c21aad77db959a77f88b34e9279d4aebf15fab67d67d6ff41f49fa4
an|64|f8a580c8bf2ac0f370d6aef19f5d85e698e6b25a3590ef637d278854e4cf3dc4a99721320ca42d4899af219876fedd0ed55d32a0324af5ab653c754a5682f76c
ar|32|88fbb66bb9f5f494ce792133d11b816f826cf14b0f0faaa8256fe1ec5fa76e8678d31cf92f92402436c60cfea2301c372f5d5b2a1a293b9b51258a2b23c2e9b9
ar|64|bbf34372835d74bc85ed7fbbd3fe96da3163a145cb0df444b814099ba01e0615d5b85173e35bc280d1810cb896c02f7281b3ef75fa0e1b828e996d21d2a1b710
ast|32|6bb9b444563c53b21cc0f564ec4f08cda7ee77c684a0f9b89eec1b53de57cf423babedd43a5f9aa05243099976570885dfc1a5f88abaae3ffb2df1eef169e258
ast|64|2c5d20da3b143bcc66a1e8121b67841651000eb4d9fa09648ba7bb81bafab68ace6a08aa2fdc4b4d776fa75027c9205489c7ffa344097e77354164b62079d14c
az|32|de7ecfdc62218fbe615043aeb34b3df44eb06efd546a42784f932a86e97096a14c53d2b88c3657aa0edb3596204c50f8b316565768f41252ec99a46e33307c31
az|64|916bcd27a7760468631aaa03f8e4dd5d143565743286501f4524c8c71eeb86dfbd6c77922d6fb77d45c46973d50b62c4c80eafac8a194dbec1b2c43ffa03b771
be|32|c44493f71b27c348e5d818cdac58106b8327a78028aa167c9d2154ab6e0f3b98f77ae8dbf0a1ab4ac38b07631c5fd167b9553702ff94be63daa2f680ee596087
be|64|09eedc426bf0f077fc51be20b8afadb8c9c5676e61696847022d5e570d77e49590b45df3f54de8835107d75fe48caf8ef0a9dd0b3da3a3484ef305d1134b7fda
bg|32|3a70e978dd9ed23ac89b046d95bcd6fc9b1fdd49d7cbb00e22ea2cb535c4eb70ca0a1ba474b82688b93b854773cd025e97ed26230c4905d52499c0f477f4f0a3
bg|64|c3bac7715fb2e5d6cb7dd1d725a0d7064b9ae3dec13f397832638556d90361c306b3f57d5c060bb74edecb2fabbd72986842e0acf674369089c1792ef8602489
bn|32|b2c2c1a7afe3d38dbedb55d22155cca8fbedc5be9f50ef71a7688d5dc0ec4144fac2d8a171f4bf8ea68d81f8291a4dc84ae9baa2dadcae5226cee7706225678d
bn|64|bd4c269b838be1193559a97bfe6b78456c54226b762ccffd7ff6a123ad916a8aef0381918a0046ce97a39cb96737134810c9077c49cdae9a8eba5bb0dc0b90ed
bo|32|dc8493d7519c27df959d83e40245f22a92b4f1bac989bde14317c8b8de8b1c0b71118e9d977fdb0ce980088e11caa369fda1db2d623b0660d8628232484f8685
bo|64|c57b0600b6803deab65b932889b9db18c751833db701312514a83cf710c9c2e31d3f42a79dec62e8042b204193757b4a8366ea30e9b5a85a87cef06d3d222007
br|32|adf00caa683a5dc0141d7fe6b4484ed2bbf1f158256245f8ef9843a2d0ed53e1662843ae6baaec2dcae642020dd6e474b07f5ec9184d641bc55f08f558378b93
br|64|78c453565d33f4513e35ad5b9541f22ac25629946f3accba28e8408098727033bbb4c9f0d72b278bbfc6f2670f83f94663bbf7760c76dd9a79480868856fd188
brx|32|33fddf1aa59d9445592d285c0ca6ca7f3466bac74667cbbcef20bc10ee463ddfc5d78ddd48d39903ba6a2b65a5ae858fb84636679edf173112455f4a65e89863
brx|64|8ca49fe9af066dd19bdd2292b10ed16c3c67bd186b97881963db22d50a22c5c611c9fa3915d2e336212b96a0f72fcd7819655b906b5ba30353d0cf385ce68428
bs|32|fa256dd1090cd3df437b78442ef395a00e7c1beaf94972c2170de230c341578f3f52fd9c00c798689875afbf4594c432b527a476a364f0ad7ff28f6b4de425f7
bs|64|cd38c6c75e797040ad70d6647f27ea742edc133e11e35c2988d1203e6faf178ad5757395227c50d7cd3dbd08d056675c1cf5c31a14ec056ae7d21cac28ce1aca
ca-valencia|32|c279a8adab9ae9f4007b4e1d328a31523e2e4cefdc3e2039e18cd68c144391957231855222bc6b4291849adb42e3a3426ed1628a548f16cee21f9937535015a0
ca-valencia|64|4b4811c1a86d0c51ce793188481bd557d69513a50f0b47015d41ea4cc04989c273c13d9774006a4283972eb2f4112e94cf93c52de0bba9f1957379ac0d78655c
ca|32|d11339a4b2b4299a4249847875186b01feb6d733aaf275d7622bfca09fec8a318b900af46e50b30d759b812ee1c4d94d80f2de85bab46d3c624dc7c59deb3695
ca|64|f3c754d6e075a8842b01e2fd07d34ac39e1d9ce73bff6241dcc7187a153da706ead5cf66e6555bc8a285aac45272ed782d547beb8339b7b79bcb4e30c5988b23
cak|32|5dfd1fce1caae47e8484dc0350e90d07b777fad6478e161e846c41c2d55d65d87eae0fc5607e4bf446cb5df2b2d8f28a65f3f46d876d6b7b86d2e2be9c93b705
cak|64|233784ed840dc2411f652811f9a6879bf3930721b669773e949a4240d11f74fcb814f79194d9002880928dbcc2f962a51309251f5f7a838c8fb1f72038678e12
ckb|32|d0eae9e311df22c8bceb77779bd0eb61aec7f28685831912481cb735615277f15de0f8eba42fc4fabad6e398c1c84167cdbb93375439087471a03cf80baa4e30
ckb|64|7108ec7cf909b17dfb04a5f4dfd613067d103f8458fe5588f36be29bdc4c088809ebe32d62a8945263de6367263f354b14227b9bc2f7e7d8c169fba0537f9ca7
cs|32|3661af0d65edf75a1dbeeb4d7e412e04956105c52fd140dfd4da9523092a28674222996c3ee3650389244e48e0a6d50caf928fd6842c04a4a47db6c8a4fd1593
cs|64|a6646710ee50f1abf785e8b2008bc931186e617bcc5db7da0ac45a9900e4ead08263884727d8c322f298154f854c34102d40babbe169d8cf2c2b7763e7598740
cy|32|3c57f3cc24955fa9b0b7e8d6277b98d1026e3117046df5e12c5582180c26b3422b67ad7a80cc12dadcfff5800dbf85b0ca45a00c8c33b455679ceda7192d8905
cy|64|e0b54efc4b89f833cfbe321769ad5b75b9bc328d33860aad133602bc95a8d072db8f760f04fe70de5424f9178b9c4f0f9cffcec74a6408cf53ab14ea3f6026e3
da|32|b75f9be98d247b2ee00e2751b3cbc9afa770f458ec12e80be61dc440349ddb811518a865c3fc7cc0e5b9d51733918f558dd17b7e9661e9b0805a0e1472e019d8
da|64|c058b88dc1e5283e8f5e2859b7f3bd94749ce5fa5e594a234dfa001d2fb411b8dc66a812585190743c73793845152ae5f1e487d1d594eebc25fc9d0bb59421ac
de|32|fe4c14ca7bb9ffc2517950aaaecc5c515bfe9edb5384087b5311e3eeb2f8c0d3221ddf978a275af2be996d17b7cd6ec1ee77a59c983a1f36ae4b267ce9373574
de|64|ea56c54c6035a98c83104d6abbe0c3deb89f6446039630a32fef8805acf5dcd3b530854501131dfa4673dd5b6a002e27c41859866d52a208af7aa836385a8733
dsb|32|d192ff218d74ff53150e1c92bcf4e5e11834c695ac2cd5d9194114e137a2d50557b2663e966dfe92815d2ea8b735b586b3998875466f3892db17f972144592b9
dsb|64|efad5e810220bdf79e36e803e5b58f871703eb1b3a481139c13707c9315b420eee2e46c13394449c38707298ecba6b88c790302da6e1c553d6991ed440ea47ee
el|32|0b1989cf0eca03fcf05e275ef3d702c26a3769b8a248fc7da886808c187b271c133a4f582382f88c04e160e07e05c1be26b758763fdf1e13a14afb4f82d6d96d
el|64|2e657610e06b3a88fe5a215f3e233b60e359154e88336756ba0b4c41c20c9a708ae1f290db3c055e8d3dc0944c89d770fd9a3dec4200e801b54dafb2892581fd
en-CA|32|07cf48d6e332258ef7589e734814def87fa7a29974cd24717166305da79d5c25485000f41ab683b3a46d1aa99e7e00879886a3007484e42eef1df9b530eb96de
en-CA|64|da07f1a39ec3c30985178549ab45c92ff1644f54c6a883b293e59cd5135eb302d26699770543e0241b4cb8b06ce2d196d3447923033f53181645b8a37be931d0
en-GB|32|b657f9390dff29a0f971be4486c18e26390aaa6cb0b185848b3552e4963b94f5bd8e3577065cc92a825e992fd770e08c82b99be312d8714cd590ce3580f0b651
en-GB|64|54f8742800fb918f35cd9fed394c53e08c777a149ee1ecd787099c864c3de8b7ec9612ee4622a376c551453036288b94e0aa8db17da4f95f60bc2827d872cef6
en-US|32|a22512159d8362e1988cba596f6c239042d2a69da1998ae6247dee09902ba3b2360d9428af9999bda1ee854afa363695ecc3f229e36956cb24a9bce360f86db9
en-US|64|5ab85f4b8b4c8c5bc6e7e788aebad296e726e970c907f1bba7526f0af3590cf29e6c71fed8c8f4d373be8af491544194d2b4cbb2fe8a37840df8970b98090618
eo|32|aa20dcf74e9d18728a310182166876f5d247fca1c066c7c6dda9bcb486ba74bbe6ea9f14f6c42fc2c81bf3cb9610a006bd4ce2aa4a6ef9adc3ed30e0859ce5de
eo|64|07ec3272c9374a254b91c23e2c82bd16472dc381baa23f0e7bd9dc18f84fa194f692d7f2ee9660dd62ae1af5468b4455a3ddcd88d0048c1790d40e986193dd91
es-AR|32|102cb042bc4a41ab9ffa6827de5ea52835948a7ef938fc1b76cc95c1be9b63d7b2d3385b7b6e4805d75974e8d154a07bbda20a13192c392c12fd5e9b0a702bb3
es-AR|64|56d6d38336fc62ac3867eea3b883c9ce27b108734e541ffa783d791e6a3bac98cac94ac21ef8d8f291fd110ee667a104dc432b169310c770c2683926fee9f5ad
es-CL|32|1e299f4cd8ce3529e59f35803edb5e6d9df48b53c62f4c7a4987ac5e16161c4b6cf6754c8e1ac4b7bdaeb4f9dd679968b31b8dd757862eb6532ea323f6aced22
es-CL|64|7c73391176243bc48a27885c6ab47aa92d6e0edfc6ba30d07b63295a63f64b6124e17c631897f3c9d8870f7100f97f4892b0b4e5d1315d42adcde92d6d016bca
es-ES|32|cb6887365335524a0f23c7c7125c488dec0bcc802356ba6ea6ff629fa16d7447339859a5532f28379efc8628cb556b27d8c9193a6f316a77fe88115683fa644f
es-ES|64|997e6571b7b316ec4a39630e9cf5c243e23becc2ae9b994d6178b86dc48897cdb44daa7f5332b9db170d10abde3e2dbf5a77b74915f15f2042af5cc69470e9d5
es-MX|32|823f219e97b855970f5fc4a0f16c24b5b3588d70860491232f6bb608066c76c8213aa7dc42a9261445461a8466771751aaa6afe24fbc4048d4d9ffcb11976bc7
es-MX|64|758af72303f53d456bddef75b1735c607f18820169d6b4f2f1d433f83090c35e16ab100a6158121d27c892c22590396e3703d3c341f4dcafe9f18f8a9537b6cf
et|32|87858ca5ec54c4c3ee20dc9cbe8f904c0f495e8d69204f0cb8e4070acc87a8361ee66e1a049495f598fedf64ad892ee3e95649fe9711619ffaeb01c006df8c04
et|64|bed60fabe8692059f3f36d7d1e94ad368d0741fc03f614b5edcd50710bff07776420dc30add9265fc604ed3eea5f519df8bd103e5813973543ba5a684e814cbf
eu|32|99bf9f6a4bc4044d9af7b3381013efff082659155750bf2270fdd3f6cc4ab889f6ce1a7a865a4271097a2cbdab60c5e79fda0d0f998ad9d131f3e81aec06ee90
eu|64|1f03c4d3f24e9cc1bbb9b94922e2978fddc77db469c44687da07da5c91dc1aa15d518582903738cd88c204a627b731bbac13e3038ca1bef5f8dd43792103ff25
fa|32|e9a690d935d838f84bcf5dcddc516baed3dd4d8bff582d3bd25d98d35b18cd4485c1abd30c6af64bf564d692c5ee676216ba29cd379ed2c22cada3e46337ae9e
fa|64|1e99168d2cb6ae7222ba418a4e7884f4dd7fff6bfc02dd53232e4c0da386d6898238eb05373cbeea6e65ccd062451302847870e9dad448cae22270daa29a2678
ff|32|df4832c0d1de2842ea36e7cdd2193cfac974ca7d424e53d3bbdd887ae952d3bdf09671537ea4968995d659f37a36f674ae5a540510fa521e567e7149c8bf0b4f
ff|64|c8b47d57faf6ad5f97fa8cae34a5e0a90a8bafde10b8e62ceb8f75fec82eb401d0886bb5ee3860a700ac5e925e88da756e6e9085018519513cba0874ca38dc59
fi|32|a8d5df52c29054c870ccf13a1e0b45570fb4b0dca3182576efd57dd61a9ae04ee5622e90b0aa25c1f88ca4009b692a1caf574f1dbd228067a64ee613f942ba61
fi|64|9b234fd969f37056068a15139f5c6ad003975fc3996cf47eee7bde6db01d2047d49d5e6870c8dbac712a4ded0494aafc1f7e09834a23986ff56862fdf825f8a9
fr|32|3789dabd252db87c1227a719b3911bcea57c4a1226e68f9497730143960ffde8a1efd48caf7f8f0a868fdac40298b09755c27325359ae37b5d61d5da42532f0d
fr|64|29b78602a69a3dc09a7a2865c5dd5ee6c608319b757abb4c1828c7100782ca15b31ac164d409cf87424567a3acf38e8e5cfb0696f0d3927ccae2deedfa4512ad
fy-NL|32|c6b8d426cc40224324d6c47c824e5eba4a7fb4228ad9939b1dac375103835862aa2a2caf097ab9964a09a8fc6945266d6c8cd41fa81ba6e3d36e2b6f0d1dc209
fy-NL|64|b6b5dc731a085c4a80e3c0d9eb98c320c90e411b86cf2d62f23e3ac83a0ec83cf6b6b0dce8b4749cb332e65df9ecbde2dbdfafe611b3e3a229521b0ee3ab4bfe
ga-IE|32|1594911a7656f6fec429051556c9376189a7d7a91b53670905082a8d5540bf55364c69dbb76e3a5efda3d18f5faec880b4a2949bfd32c62f1e3dae10c74402f8
ga-IE|64|e58533e2c933ae71b87cda909c8a0bee6ea69ef9ee524afdf5eb1a38a18cc23dbed8722f49416d46f020b915da1403c13e3d0363291e7c2500bd216d0722a54c
gd|32|630d5691db92dd0deacf2ae13548d97b42bf6f7e238e83aff854dd276582b7f839101942689c1a9b35ffa3224347e04c3032d1a06d40f8103b220e04e2841fd3
gd|64|f2de9ec56423217ea61b38c2111c0144d601d6e9430c8bad007d0e20331f9371b624abe18bf6046947711ee9dca55f07b2badb836a3c844266c576e0ab35c651
gl|32|e6dfe05be3f3976662987476e104bb203378a5a180d1c21d476f91b613ddeef1087ddff7cb607a07706bf469ff170ac0da9d1836fa7a0149b782b330638e9e9d
gl|64|824e28788a85f10747f442b3c46552b61faf486c5721d17f907bcbedd312672e06a12554441f1cec049a76d8416f6859a2fc166a1484c7242345eeeb5e6eb2e1
gn|32|aa153f34f17adf685809aa1e371ea646435b794980a23ffd63de25b2fe6c54e275eeb4d577d47af16909526b00dfd227e70588445f0937e8ddbd168c9d0ca795
gn|64|1a1473b6cf9ef999f249e921541001b88e621b9315d13920dcd48c6891dd317f54d47a0a755f3733522525721a127078da4aa0c3ffd2f351658d593f9b98e21d
gu-IN|32|a475d8a0295f95debb71140388e71ece9b4af3e9779807e9b8293eef37b92f86827bbd78ed2c410f886fd2ba0c7949c3788475bcb07b5ee52ab648dcec9b4377
gu-IN|64|0753439e8538a73594b23af7efeda0f38615072d3fe7c419650d0c2e61c52bd14bf8496e1c238c30bd93a946dbb679e83f65f4de476850083d0ea05bd094f107
he|32|7a867ac76a7301f254373101f5403aa0b643bee94ca3da12fc47abaccab10f090b5514967c8b9d6805c26efdace21bf4c11a81070f7d1d05ada343c040febd2e
he|64|dec93c66ba4da7ed7f9ce29d86a4718ad72d6e65dc811e4e2976ce6926beeb35bafde0cafd6d926a8064354cf7373f9d7130657c20e73b0545937f09b29a4720
hi-IN|32|df192c642e7e8face9c05fcbd029b5589be85185efbbe3c196a4bc0da6ca67ce2042870cd118e59efd11848458e17d641e2f553cfa1d94753539221fedf3c5fd
hi-IN|64|afebcd25cc54d46c7b95fb99c07481cea702f91c00198617a352faa841e77f845120ece80191c962fbd2f27f611be57154533d47b762a149799b51e37a1b868e
hr|32|c07b628c087b5e67fbf18ed07620a6767fd6754e2e5a6916d8a486a0f89c968f8233ff8ffe8c071f478ff67e829f51ef2f1529106efe42230423c02a7f3b1040
hr|64|247a077eff1c1b70b1e7f14a92d2c8545a41de81230f2683707696345024b64bd678b56b836903e9d2bbda78ddea3298fdabd5238a5f018fc46f320b2bdac58a
hsb|32|4e87318d200f7e90c1c7c3c55d299412423a8c5af02792c6991d9d1cabbca184b982cdddb3590b94fd1d480533cf69260f12ba36a8b34b0223e5697cb48aa27c
hsb|64|7f7305b758b91f0ff8c482d28e3fe4f9421541a5558280f4118565dda393bf91acc05fa234ff4ae5645b9966ac213b773557354bbc474a03880b3e31fce901ec
hu|32|8f55aa09863b01f8a4f900e020a3f49f7aa41f61e02c5765cc3c5f499e441e43c71d539a226786ede521f664e114c67f8b09e6e4ed8dff2cc5bf076bb238da83
hu|64|207c8eec35b10bab7351a99e1a4495ae695247795dc2d17c1395083801eadc2fce784644c093978ff51eb0feea3606409711a1c87f70650ea471a306503c71b7
hy-AM|32|3056f8c4a2e0ec0f2f23055a380732752ac06a733b9b73bb5ef08f666550527157cc0c5d5c8a3bd1147b5eca85b7972788a6101e1724128c112bc2987f0b1558
hy-AM|64|77d217f607c639679c6e7940590ed182dfe30b6d68a3b0a4e972611f65d38242915c78d62bfca3be0d3ee057e3830b7ae6f1d824cd968db001f78f2d541d86ba
hye|32|09288268f3ecfb9c1d24a0d28fe600cacc66383defc48dbbcd832cb970fd330b6ef75443f3836b50af4d8714e7fc3ece19d39873f1b9d4907504bc52dd9376a1
hye|64|5734ed2353364db2ec08362c40ba6bccbd2b85d29d386014519a51be29432a6b1edb2356e46eeb43a4242ae3fa2459bd7b8f401c4c094b468971a3df2be2a47c
ia|32|8cb10743507681a030ec2fac0d397ae2e469695015897e9dacc730dabe8ec733a668beca397dc2a77b6cc60b6be57239cc2cfe0e96cf69b495b2fabc8d3f85ac
ia|64|01df53722b5de9272d4038a2fcebc160907636f63777b5138b95fd9924816375436f08b676c78374d719b3565aa0a9015f23e7218dbc9869b0f3d6828f9295f0
id|32|ff64acd1018ef3745098ffdbeda4cf7fd7ac60a34c3892b6be7b250517efce3b221b6f44ba2f8d389fe451fe85ee6f68cea306d44501ac73497a50f9a496b2d4
id|64|ca61ab170e8813278750306f5535976b0ecae1d2dce8d900cf7761f554f31a0f167ea8e1ac1cd4bde0424076194553433edae7691e44b6825af0ef20aba966f8
is|32|b6a4c97293644e213d9b3b4ac9cb2a9ebc2c420407961dcb2c82499b2fa6427f0b52883c77131a62f26ca24b2f0c1a1500739e0538198a5a121af5fde863a8ca
is|64|9d2804a3a60f8fc4a7322ef6a1e80e9493216fd3badbfc68119bf877f032411e2f7be3c236fdc01caf898f40f3e150e9dbc276ea5b957b0f3490868672c6a903
it|32|c676a889d81f5b776582dc72084442e99ffbd2f5cdce84f47e978b37fdb477b69215ee0946dcbefa6b2750ab5e8d4f27b0022559638a9271546bff65a76e4901
it|64|486cf8c4a20d3ec95b2762881c930e4b3defda330a66f283647fe60a295919a7dcccbe9faa2eea1aaab96dc8ab33bc3310e774790aa6ea18d811182f79b03f55
ja|32|6ffac1f2075c68332dca39ada784e96407d3ebcc86441e672022fdf849b22fd77b12f83fe2b7a44bc80c59eca013e8191ea634b39135add37cd677992cf4af3f
ja|64|537f8fd04a1b9fd1cb62ecd3a7f7b579e5f698d7e0234176c4aba2f8ca61ba528978129bcf1cebf0e41a928442097fcfcd43c5a5b7d244ea147f87c60b36aef8
ka|32|534461dffc2153a55ae902d2f359674b5cd80f02e7981daf216567e59ae655ae6f98c4ec9c99b9b578436a9639f321c57045827222358c4b645f0e085241df6b
ka|64|3f3b6c8d0e9330d003492b76e94e3cf00ac3ff226c937a33a67dd635080f49c6221f5ae31b667b78f94085ead7bda0a754488264fe38f1c86a883b715e560fa8
kab|32|15dc431bc7adc9e3118770661acbd6ce5d6f1118138261ef6e0ef37788ebdce271b23d8434cb273a750261cd453abe3d80b61c4584ac36d4fbb73a67ce866b5d
kab|64|a6063493f36de5774d05f3ec7920d2a4ff04f48df6c95bd6be0709ec5c62daf067c3fbe45e2cf6869347bc2ca9b533736961132323dfa8ecf103d16ff986bda6
kk|32|62db2f5aeeea278c7b564e9ef2dbee7139ee6646a47539805e594d1a744cd0a51052ad602d5feaeda19a6b9b3efe5aaffdac3d9f55ea51217b1afbdb90375632
kk|64|ed68971a508fd34f47b5ca99d802710eabdc8c1c372ff77d28571838762ab26f3389fc0dc61020f9739b99ede4201faccb6b2c21120bf04421bd3e7ecdda7c9d
km|32|4ed7ea3cf04037f796cc693e52d838033206e6e42838353f8edf694585dac74b58facad0c5f8bb98fbc6b29fce2a6f3e63850eb015964d548a562a3ccb79a97a
km|64|a95941f335802d9317a98f9345aad54ee62115d8d20f3a158c6703dd64582db585e83fa276e188fdf3ab41fef5a94dcc9ddfd99be5a0b4c9922886e68babb2f2
kn|32|19a3cec4b4b6f02b254848936e8df6e4fc54290cf0efae5964616b69245ae2ae4e72149d4fff1458998c22d744e8168847efad253201f4ea4752fb37128f6288
kn|64|e81ab43dab44c1175d30264404f88fe760c99b396540641e875746cdc22ac49b57c20b30250eee2fa7d3963c4b6b8b118bf118c7c12fce43b75d2cc87567f9eb
ko|32|717d4e35690c6549c7ffb7146a3b4db9fe30b7ed8f327785b23fae812f3a8fe8db69b3747a588503e8d7b09784cdcb1094d4c54a5c98bd3dcaeffdfedfd5c5ac
ko|64|7068faa408468f4f6a61c66290421d7dcb053784333e3b138385173856bbadccabe9f6a2343781ca72581d38e2b24f10a4deb79003070f65abdfaf6dc29bc8f5
lij|32|e3a0bafd0aa594e5966fb5ea26bfb9acc43da4115fc469efd5b782fa08edff64e05ac7f676f3c09c449e1a03a3365f1fd34e4e1e81730011f9cbcd4d4be2197b
lij|64|8b06f71b29949b5ab3c2640977411a0cd7d7dc3533c2509234d3991fcb652366374cfde4cc3aed8faefdb98a599f1432d1a7da9d33f93909c35c8627196f26a1
lo|32|6bcb7bef2ff7e0130b1ea8e67fa3d2cb7fc6500515fd7e8508b985054dd5a5c639d6a1860f2abb1056e636feb82f99ab2825332aa53ed3319323c84598874e22
lo|64|ae9e30f4abf99125cd79ec19c7f78075237c27446178e2ec6127f8611d508b263d675f26e723ed0941a52851ce28cb9b6b6fd08ed1fa7c84a26c8dab93fc305a
lt|32|ed1c7480f7f352e82aff668102099e9e4e1116cf4b6bc7b7c745c348c234b4d1583a16afed74e6e9e00ac0155a0f78c19339b6a599827dd8a9cef1acfed9c302
lt|64|0861359f69cf9db8d349d03387295737019a94ab50320a7edaeeba1d1934c651162c8ea500a854c1bf653b709775f0b981577e3ff82a88d0e42c8b0dd3bab028
ltg|32|b6ca27669a19a0910d84d73590c1d7b7d3f1317bc0598314723b8702f284561cc7abce58de49b3a1ca7131d8bb69cfb9bc92392b1b7ebdfa4e068de2f2de0815
ltg|64|77979f1b9c90a796a7226a6e93e92ec098eb33a8075ff96034d1e4f6d5a9bd28efa6f0c75121650557553f2288abf3c1ac813c72dd5b44ec92bbdeec4aaf8996
lv|32|3380cc3e87da6ae47cba3a58d01f8838056e708c3503b356a354f6043c22302067158dabbc3954d4490d01e0f7a57969b23d0e950a2dd3f79fee18c2397fb976
lv|64|744fb337c00a8072c00b2df2b1b0075382a0feff2b707833d2d44c8dceb87c5500564860ba6f893b3cc2493dc83bcea01affe101b24babbb6c1607de112bb0c7
meh|32|72676b6e17de6aa568c153f07685b092f205a5efbfc60b6efbbeaf2cc7199f8fa3c69a9af2e75aa02a5b969b78666576bd77023c1772649b13d17c73419ad0aa
meh|64|d537dfa54c4fc19184ef42aa8a90c46c4f149ec86a383285834f75474281082d47dfe2504068d01ac30cc8223b177b080d233714142bc2c80fc42e8996c5a709
mk|32|10b1939ef95df3287546841dd6a67b48f5fb8948fd91738435f25399ffa68612b0d0e9c129f7df0181cd506060dd5cd915890d5f234092b34fb0d116048c32f9
mk|64|ee59168eab418e9876d1d4ccd55459f0577d42e2ebda91416afad57b4ee5d2352ecdf49c280919b234bd4ea4d0ac905b2659d5532b458608ed1f69d9cbc88ad6
mr|32|0bc8e3a7aec225923483d552981c7bfdf27be7529b852b9cd08333e73a4148dbcb8584db6795691cfb3cb21010b8aa63d0d4e9c5a3a3884e9c1ec52524dd9fc9
mr|64|4312079c60a6ffc864dd545eda73c7e4f9d97d870606b1052e7cc079c62b3991dae9ffe3c0c729fc9a5075550ce982a3e96bd3eacc0a2b6ed4acd0194490fdc3
ms|32|9da78173e0cd89331f6d2a0672f63b6d8b6761dc7a10c10e584b978500467647b81cb7b9e90c7818dccdb7997dac126bdf5995a6cfeaf46a011e07ff6c6ee429
ms|64|35965a9280485222717a04d06dc68d75c584c4f5e3ee9f2c5b09706ed6e2ff543906d5ac4e106a3e20be55f6c16df73716f8e3e2a1e36b6b57a468a82795d14e
my|32|431cac082c2c1335d36dee59cc04167c45e304d88d0aaadabf7c012c90f41875df26c26bf564c4f3a578de4202d5812a36f7e69314449a9e52bdd57966ebdaa9
my|64|67cf5c31f95b46410ac954b8b265c422c5dfe79a0b7f72c1e701fa5175cae150fb5a9899ea11e34ff33886f43adfc7e9ae1599d8a34320a09d19aeed2fd639f7
nb-NO|32|0dcd768cf1267579be9c5dfdc443f5ec8892334ea6b3e03e7c1a0c8dda29ddf7986b32a689e1b554f0b0d0136d317b2a215df960afe987a374dd44202878b69d
nb-NO|64|c6294789b80a0178e10cefcb9d9a85dee951a73ea517f18f7700f771c931ff2fc7417b3140ee6104ccf68709727dd0c7dffff08fe371acdad37ec9f8bb838722
ne-NP|32|2cd757ba298ea712d32a20d3aeab811cf3b33d6ca9ab9a32d75f62ef655923727f3153f896ab10f10c2e0de3e064bc046c863e13aeb25522df6b7e55b10c4a03
ne-NP|64|c7f18b97d7d7583ed859eb0652df4bed25398dddc4d5aa3dd8e0e6fe527fb313dfd5a4abb4628e35aa903fdeae66b7e5376744246fab30cc03b4cfd95c23dfa7
nl|32|e4eb68392992e93ce6c5dfae88da10ed7682476b7aaf556d2d771256f5493984c8646144dab0f2912ebfe30200a1a192acbe04ea1fba2e5aedd059d0d797daa5
nl|64|0aca95405a7c6b58949dccff807dae4ae149ed2bba81128726a46b470bfed95a3558981de1e496f861e8ab6aef197d40e39781901acb9030264f6103c9a61df1
nn-NO|32|c4f3ff00f0332213afbcb9f5ff8a9c2a69ce144f1f6d9d9c1eb307d3b43914c4f40e43a52bef6b82ebb04c4ff81bbfc0bba848eb7b483d2a9abcaae72e2ffc05
nn-NO|64|d3173972630f028727ca97f00c7e010c96dda24686a82ecb516fe8249bb790dc2540548656d7f3eb989494046a0ca2978f50ef100f351115cb9d9d533e6d8826
oc|32|a4e87d1fc9682365fa365192dc6e6a74b86ed00aa17443ce7cdcd52c0056d05d0f9f18fcd35b8640af8b30021fd8fe251887d35b4e43085cd45dfd1562f7c5c7
oc|64|4dd098fb893afc6d96956027e2f0a39032a05b46ffb06f1987e3f45c9a93259f4f5796907d2111ac56fa3aae3fc009cff6427ef1b33b0585c7d7b75b71e0c6bc
pa-IN|32|7cb87d2e6818c3f5a3650ad5beaa1fe4dcbbc58dcc7079d37b3ed321c22b27db1332d54512a3eab3a472d57ecf948cade69f9355b8685a2834d4323210dd5ae3
pa-IN|64|bf4eef4b3cefec5a76a55e9d6e10368694551aac74861d730941550c49e118a6d24fef0e1288ac76323680950199940d4a2e56d47d0f9e8dcd0af96a52b2c072
pl|32|003810039b37f2d6ed470d1c1c73c7f8557909508b1a17901bc11acc5e233803ee542c734ecc5804e05c284611eeb526ecb04b9daf4c3fb51c4a99ecdc001565
pl|64|d3867ee4fda6e4560ec9513b1f15f4dd53f9f7481e8b91f148d6f6e1cfb84b4adc1c57174b191849cc0526e15bc20ba9d7e63ba558f2425ba865bdd857e60d64
pt-BR|32|834e5155eb8b6a32b7e8972c0d52993687cc8ffe0d168c680b7b6d4d8384cdf7433adc7edcac4138c7a235f72e11292eabfdd1b7934d3b59c488642da27a382b
pt-BR|64|c695a74e9472a51150767ccf1371bf4396cdcd0334f76d0f29bfc21e6801548416aef4e54a661fdf74462aea48af781efd34429833f05286e9ffd90be99ea931
pt-PT|32|8e0a17de39d62bfdbeee9fce9ae15c8ee8920a1b647565046f55a07d793a428cc07f2da7c1db06e79f9ff1ce8009f18972fac7fa63ff03171e171e145c5da5df
pt-PT|64|03fd98ef78152a32e19ba80973c8cac164bc8c3aa4f5ef640fdd43dc469560c837d1154be832bc46273275cb908e7de7559309c45db8c1290484752551fa431e
rm|32|8ddae4dff92fc3d24a2088c44a1b199dcf600e7f88edf8b8eca2c890c1f1a162aa73de2be73d2f6facf8a359ad541b6e0642562f6fdfb371618f1b42c76516cd
rm|64|3becc7324e25d04c7422c419de6209a33b2f9c39795a708f22d6164cfe2a76d80c20de408224aabfa7c772a561d5e6fffd21b8982b18a1b928e656af3b7e74a3
ro|32|93617e4952d36e2d6bcf80760a94ea4a4b6806238a2c4eaf18b88e6572ec3342118fb6cc8d5097b8f9b373aa9df92656a791d3e0933929bbc4903863075ec444
ro|64|8eb09d268fcd7b0ccab4c3fb2e7709e30a65acd88918112d02d6f02fda2134134660e3fe908f8e2bfcd47b64f069b17e1135f3871c80d2f4defc8305914e583d
ru|32|ee595169f67abebfe588a99a4069c02d8baf4c57aaa8002849fc0d6f4af0b85d68870dfcf7e7b7b281cd37eccc1966d77b4e88dfb53c2d72d22fd289157ddf74
ru|64|a5de8375b359e9526b98228f4ddf60cb35aad04f7b1b558e53a141470a1ac550a52719750597dac3aeb473331bb8cd7984685326d2060d584ea00de6673006cb
sat|32|f48b08508f669ceb36f312a42cad8c829ccd33bec20cc6b30943bc7a67109c25423a6c717fd122685bc57fd25166d7a7e6200374809e27d92cfcedd3102eb171
sat|64|3ceacf74bbf7344b1bd9da486b94296ca8f52510caa402c76309cb42a7637e104e37f379d46ec088c20eea1b54ba9c30de1f0aaf41539dd2523e9777154c4275
sc|32|fbf38e665b3e7eb4ab74fa8014cfe4baf43dffe65b680f4523f0933ff6ca1cfc1ba3b550d494632269627e5f57d2a0fcc54d8b3e91fda631c426ea16a32e4ec6
sc|64|02fce63f28858ceae56d6b4b124a1b1b24babefef4b691c909c2307ca4517db4f91508c60b23f6073d1f44349fcbed73c83d60e3ac1be7290e132a92ae572ae4
scn|32|11aec44ad1d194329e619a39fdc78536fec43ae583cfdaed2779bed0354d537053af861ea598e3ab80505e03010e395ea8178a5fe2fe2f5bc2b1935ee94e442a
scn|64|d6874c96784a9c573ae362d2ca6f933d53dd45d0f76d67439c30eab2b30652fdc6b81ad420e6bdc230cd5aca9b43ada2f1a6a3639521c220d12f05ba7d79b16c
sco|32|43279808cedc709717f6db7facc3e30df92aef057b60b732a98b45601ce0f85cba1fc56dba5d05380347545107de1cbbed5fd67e08d0998704831b05fbb81657
sco|64|e98ce959a5273d4ba98f20e25cb748b38a6085e4b5d13b240180c591521e19d176f4183723604854a1bad6894639a1afbf097e36d0c542fb1ba696d24637e82d
si|32|a6fd13917e53e2db69a43f158541ba6605de90f64d09b01c4e429c0e9c4eb8376da6c5f4568af7f3908d551ed61bcd91536da61995451f19cff336f02f2a9e4c
si|64|dbe8ddcb7d75a00185249d5360b180d3183d41411285f90616bb523a695fdfc541853997f00c7f20da91feb7646cbacc2b807047b29c7d0c4a8ade8032a65961
sk|32|61753194dd3be43ec564c66412cb4e89e2de90322a5d98ee3a5f0d84c76de59bd9d6604f51a95915bd7b5c418575787e4df743dba457693e3587a055b43d47bc
sk|64|4a599e1ab60f72cf6c2e0b8a1f88e6c1459d230d8da81781c9ab17d3ad42e03aa71f38d205843c6b8eadda906a1c8ddae7c8ed24a3280795017789a667f206d9
sl|32|6bbe998610e236c0ecbe0516a102926a5fcb6a7f0c7d34075073a95fce00482210874520e348c16f1359a59e9c721bcde0c80436cdbf505f4eb27747e530366f
sl|64|9ced46531582424e2adf6ec175e55b9ad1535730de0954e5f36a23ab8594cc172cb89fe02954de36af63c6d8cf87ca269a38023934eed3eabe5b0c481c5764fb
son|32|290d72377980590ef9112de4062aaf42d49fa5563635ae31a67adecd3d7418ed57bb9c5b07865e4d5aedb071e80896e76f8648e17ebb91853b5502434dba0339
son|64|266845928ba8e9d4f5fea0be5eaffe6f24ae9a112ccfc7e0320538a5a228691c8bd98c28213f99583e776853a00f65053f2195ab67a58f83ec6af349f870dd70
sq|32|ab145cc3d734b6aaf362cf62bde23f86a81858646da8ed0478f397ed0501d33273fe3c011ae2f2d54aa9a651d47bf1bffe189f065beccb6b43e00bd028472eeb
sq|64|c7a8e243b5fce30550b1e983d49bb9b9ce0121285ee729f32407743867e745c79b7414406652a7f1389ff7ba9716e1e500117ebdc1338d450b59f9063941b633
sr|32|ec0e9c646f1034fc2c68e7dc621eeceb4ec28caa33f9e553f04fe168025b000890ce585ba6a3f85578be6b2af7bdde3a927bec73e32dc84d54575bce0208e7d5
sr|64|f1f6fe6964867537ac5e670fdd674ae6224f61661d7e813bb511641bdf8b629441ab16914e3c72042cd625905f7bfa566a70c6782aa4276b2a433d7be895b6de
sv-SE|32|fe3385be83da7ae7da1e5af639c98fefab8d514faa658f7757bf0877daa7454c0287a18e6dfae7e0b0daa892919ebda0819d1ae389ee7438eba06fe74301aad1
sv-SE|64|522863ae0ebfeaac8b059b75b30a6f833c7ffd24389b2ff13b31284f57075b123f27d49fcad3aadfe37ca1b8f143c923d51fb37210ab79655caa4d5abc37cf30
szl|32|bbb80db3696687754d220caef105a9ba176552c6afb8fad1c1935af8dcf7eafd96e56f5e7a38ef8b3dc5a7a0cec9a27792837c86720ec6d6f40848572247ca5b
szl|64|0e3bc4fb8e5106fa34fa1f1827becca67ca22ec3560d9dbbcb57435dd361e330d6783aeb95f7f45890caea59790113c2eb81212ac408dd5e3b64e292645358cc
ta|32|6fd28a3108a01b08260e68d226c814754874e4a102c53b767dd8a0d170c56487dd5a1844878bab877d4d4b2f819e7b186cc118f7dd1c4dddc715ed544d98b84e
ta|64|a063d29789c90072ff9f12c5fb05a34838224479f766fc874348023724e9bac7085769294f4be9fe4786791b420eebf1f361c2be55fadc6b05e3ccf4db617340
te|32|837d767da6f00ad01d1cbc70b4d5d5c6f2d17e9b92c307ee3e913435cee264d2177210d143a194418068b2a6c6c9e8a02676c82b979c3939869ea52b957123bc
te|64|7f4b74608ff04962d1f72e5bc74a6fe545f27f88b8e6e111f518d290ba5f4f9a79311a480175abdd9b4acace4db926844bfa26a559edd925c85a39b3edb7cebd
tg|32|99d46c17b7c821c2f51e26544788db40399fd8fec15d3d32a9bf08f47cc629bd43d6591983f5a769af069ebc2e02b2d96daa10646d0ad6daa41451748d815fc8
tg|64|8cb33b0ba52b55236f214d94730bb1e3afe20ee57e1ab1e9dc436ef3316026b9026549160fb99072bb7ecba25b4b1c6883d6e1f140a73f1d6f1826ab62159384
th|32|8de2fdfea0df9ebdbaeb5b7da760dac3d2713d42f703f8bd23092c7b616cdf6bf4055652bfbee1fdebb2ce458c2949f6b3d9bd468d7a03b5f3ddfb5ea48b1e58
th|64|4febc23fb28cc0d7f6366920097cc505e8f17b3ed985ea45bce61e0fa37a72b6665e49df694dddb4872195bcfea7ba7b456f3bd5be825e82c10d4d57976c060e
tl|32|5aec7d10c11abb1fc494a4ced5e2a6b9befd6e15c5570e290a2faf1aec3082b49541df2a891ef50aa188fc27ae7833a608010d033441e9cd98a677985549361d
tl|64|365c16acbf240fe68da46e1a2adb47c0a94a2a4bc6c4e47f382e02a53862e3a70195938971c7bacf8ca6009ef1f2531ce929182e309cbd01fb3aebe1ae21f593
tr|32|79744a3a19a511133eda4b1db28ac57ce2a151e4c01e33d29bccff4249adb070d26ee8153d9d5ddf0fa7d85e2c32d16a40a8bc6b94d967f6830ce53d5cd86a97
tr|64|15bb7084f4ebe3bb3a6426b3826084bfe57dbe56c89aba354ba4c7faf0ef8c719a0156a1f43c2f37126a2e470ceb718ec8fa46b0a878c69447ff34bc2d57ebd4
trs|32|089bce0d3f3f11a7cfdf9b214dec62d7dfe037925f8e34c942a707c9864a2ea483ddadcb4d45d1dd10f4a6465f310b55add07afa7e275f0faa53559ae8fa591c
trs|64|680ca2bda05bf1277081521fa732db6145fa87ede76d29d4699d1c67724b3d7ebb32ed388f75109e250c6986ef284018b5e914df04745e14fb08e89c6cb20788
uk|32|edf0e96151b6730ec5c815c219ef294c71d7ff95533301cf1b250b082229950eaf98cb631b3198ab65000044d82f8df919492456ea4d073f25d29ceb9c8e799a
uk|64|2d3dde2f3874fd10abfdbe433c2cbfba822710b57d64a14692499eb1877239c91325a5c68f4858af325ce54bcf6bcc10b0e925468b0f6161fb93c78bfbac9e26
ur|32|3febc094845dbdbdb09c17a3197d789d5eef57c72166a75c5a86601b8bdc7606df5c3648ac0cdce79f9b7cc5e43b91d1dba5e4c68959f89b24b527261d5f5c90
ur|64|6ef47c9af37ba8e9b3dc4c123412d215d04ebe98fce62391fff5c2e9b158b752bcbbd70246980ed96b888b6c57724fd75da22fc64968b5aab712eaaf891c85f8
uz|32|8ff40c125e66b9bba7c1abe4a361e6f03a70576cc9ae5e7f109f9737a770054eb35861c44dbd2ce8984ba2f24ee9fa44a658788b0104934fff8b22b2ec5e7c70
uz|64|81f9bfa9e25b01eed1ca2ce50364779893467d54ab3a97b92a85855540f863e924c3fc313f96a80020e12909efbd4f5dbeb26b9a74c735f87b362315879b1667
vi|32|a775e9f65d0d00585989dabda80407d05b0ba82c6c10ab02c668c926b57e3a8c57108029631c6e15c5697ec5c3d0fb846fe59594f5f51b292bce99fe83f12dbf
vi|64|cc0a9ee385a302713cafea2f47674dd1448cc81bca8fefef5699158dda40819bc964e3d15cf3f0eaf012f662b8a3654e9af0e50b5411f67572fee4c4a99feb4f
wo|32|05c3e9cc86f8bb7becc014b15dff62f8734353ed8bde4e329ec72a698b3e016ecbe8f70d1ee8d42f3369d27882f5a3ac70257490e71ab248151eca3ab1b59220
wo|64|289a3f6233ebe3930af18099e50a7376520eb7ff1319abcb00d2d32ca640191312ba36871769b3d38549964ff7ba486e0f680b968373599df9021c943a57ece5
xh|32|fa47a6dd46dcb016fe86359d846b46c66dfb0e42cab9a7449fcf391568feec78ef8f9b6a6ab3e8cfc803ff93e8105c01fac331dd69903b55d68d52e16e0e7b5e
xh|64|0fe40b084c54ebb7645d9fc2d767d1739ccb9854b934b35f286ce476a2d72e4048a82f45e1477441a40760069d24bf22b19eb2de73043094282e171e4f3c4e7b
zh-CN|32|2daa83c5b028b969ebb15f6a46173b2473ed5cd8abd41f67b553cc93353bdcc83bdfdd704d9a2fbc67736f9833f1793fd7e3477955d25f6899873c89327a374e
zh-CN|64|034497bef4600a18841922f309541aafadef34acc615c234e34e993a72192f5f15ef48f18c76720b5821f31fccd1da1b66db1185d35e4aaae95dd39e271d1883
zh-TW|32|5dd79b5535e142b909aca46a75607b4459694ade5a41d9f0fbec50ea2fe0744d7f52a83dde8c3efa7303778bea87dedef581c8a596737b85b3461bc31ba5c71e
zh-TW|64|411b8db7738a5cbb7087b05595aeb2b4a45538f1a32ab9c013904ebec8afc4a36abd25c0fabea76b55e9b620f8e47795f7276ea6ac7cdfc03ee8b0eff1ad1899
Log in or click on link to see number of positives.
- firefox-nightly.102.0.1.2022051421-alpha.nupkg (371262cee95f) - ## / 62
- firefox-102.0a1.en-US.win64.installer.exe (712f3cd98d38) - ## / 55
- firefox-102.0a1.en-US.win32.installer.exe (a09a9b57b952) - ## / 59
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.