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.2022051406-alpha:
15
Last Update:
14 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.2022051406-alpha | Updated: 14 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.2022051406-alpha:
15
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.2022051406-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.2022051406-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.2022051406-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.2022051406-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.2022051406-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.2022051406-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.2022051406-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.2022051406-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 14 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-06-58-07-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-06-58-07-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|5883b848418541273d6d927370315ea040574f005ca97f0f5005776e763fc44ac13e631776c74d3b3f83dfd9d523b286ce1b638d53e43c78d91b3d8eb18fda74
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|c7297b601b064c4dd8858f85934e2235fe8b8c3d8b6e9b97c85ffd9586775d0b86fac0200e6f727e3a39d225e4d796de6ae273456cc7d5e0bc4606cc5f8ec8ec
az|64|acbd0cf9375776f1bfcd4a5ecabcda2fe259edce0a159197f3847123780cb8c31ad5e719abb1dc7bb1fa0d70df9e07354ee7e58406ef481f5b6dd2aca22718e1
be|32|c44493f71b27c348e5d818cdac58106b8327a78028aa167c9d2154ab6e0f3b98f77ae8dbf0a1ab4ac38b07631c5fd167b9553702ff94be63daa2f680ee596087
be|64|a3345cc09226cb80a3acaaad6ee502377640980369687203cdcab79cc1e5759f9f11f798ab4484517aff535d60e129674c1740bd0a6b39085e72cbe009d4aa6e
bg|32|3a70e978dd9ed23ac89b046d95bcd6fc9b1fdd49d7cbb00e22ea2cb535c4eb70ca0a1ba474b82688b93b854773cd025e97ed26230c4905d52499c0f477f4f0a3
bg|64|3dca4385a49cbff88a3c88f2908e61d34d2130c035dac7a0061394760676486ebace05f59ccea5bb6597595f89c7145b8def3778cb7cace697c0aa8c01b42446
bn|32|b2c2c1a7afe3d38dbedb55d22155cca8fbedc5be9f50ef71a7688d5dc0ec4144fac2d8a171f4bf8ea68d81f8291a4dc84ae9baa2dadcae5226cee7706225678d
bn|64|7c40c314a1ac5c65fff7a4f03d01c6b34744b7075124fb59bfeb822cc9b18aa3ef1995c81a317cdd263f20cc4de9075010a70a71d7039e6ad7ff8ed46f77fde4
bo|32|da0436de8236dc593f161738b798101e9fc4c976d38684d71104a218e8d9dfadd9095b1fffca6c8b29921d70d8faf06cfaa6c23a1e6bc2b5e520afa09c7ab5ec
bo|64|4f25300b93c07d7aa160467b7ca1f38b24257d0a3d5b30c31b100fb35ea57e57e13d7a28e2a3ff74649b072a97b99c4e70c8a5d23d1ee1a0d24f62e638a8f2de
br|32|adf00caa683a5dc0141d7fe6b4484ed2bbf1f158256245f8ef9843a2d0ed53e1662843ae6baaec2dcae642020dd6e474b07f5ec9184d641bc55f08f558378b93
br|64|c0fd43e3722d38bfef37ca10cfb792783594d6b50ae1f2e2b1fa4f43697d6ba3fcdc4ae9b2269e7022fc245149e39fc7408b811bf4b69afb292ac2b76531caf9
brx|32|33fddf1aa59d9445592d285c0ca6ca7f3466bac74667cbbcef20bc10ee463ddfc5d78ddd48d39903ba6a2b65a5ae858fb84636679edf173112455f4a65e89863
brx|64|59d688f6ff518104c04fa1fa637c572c4a3049fcb4c5f82536418aa5510ed55d0776a7fb5b61add3430286a991e9649000b701ecf9fbace21751036fbc26085d
bs|32|fa256dd1090cd3df437b78442ef395a00e7c1beaf94972c2170de230c341578f3f52fd9c00c798689875afbf4594c432b527a476a364f0ad7ff28f6b4de425f7
bs|64|e5412072ef462013ea6bfff44307941cc0e5da98ef966f2ebb0470c103a677dbd1e18b20211b4c17484915396b908ed27d299a754fe249c41b08123ff429952d
ca-valencia|32|c279a8adab9ae9f4007b4e1d328a31523e2e4cefdc3e2039e18cd68c144391957231855222bc6b4291849adb42e3a3426ed1628a548f16cee21f9937535015a0
ca-valencia|64|304f34a61e66df7fe8feab55cddbba0488c23c943f848ed9f9dfc7e7694fc474a741945cf54a7d616a018369e089ad16202a9ed6e5875423fd2df6840afd8971
ca|32|d11339a4b2b4299a4249847875186b01feb6d733aaf275d7622bfca09fec8a318b900af46e50b30d759b812ee1c4d94d80f2de85bab46d3c624dc7c59deb3695
ca|64|aa63f64d651b36d40c00792e8a034f2622c02de9b3510108fdb7d08958ecf203cf8275ecd82329b03c7d64f167ee6b05460613b9d8b5ae131b3a7360741eedf2
cak|32|5dfd1fce1caae47e8484dc0350e90d07b777fad6478e161e846c41c2d55d65d87eae0fc5607e4bf446cb5df2b2d8f28a65f3f46d876d6b7b86d2e2be9c93b705
cak|64|233784ed840dc2411f652811f9a6879bf3930721b669773e949a4240d11f74fcb814f79194d9002880928dbcc2f962a51309251f5f7a838c8fb1f72038678e12
ckb|32|d0eae9e311df22c8bceb77779bd0eb61aec7f28685831912481cb735615277f15de0f8eba42fc4fabad6e398c1c84167cdbb93375439087471a03cf80baa4e30
ckb|64|7108ec7cf909b17dfb04a5f4dfd613067d103f8458fe5588f36be29bdc4c088809ebe32d62a8945263de6367263f354b14227b9bc2f7e7d8c169fba0537f9ca7
cs|32|3661af0d65edf75a1dbeeb4d7e412e04956105c52fd140dfd4da9523092a28674222996c3ee3650389244e48e0a6d50caf928fd6842c04a4a47db6c8a4fd1593
cs|64|a6646710ee50f1abf785e8b2008bc931186e617bcc5db7da0ac45a9900e4ead08263884727d8c322f298154f854c34102d40babbe169d8cf2c2b7763e7598740
cy|32|3c57f3cc24955fa9b0b7e8d6277b98d1026e3117046df5e12c5582180c26b3422b67ad7a80cc12dadcfff5800dbf85b0ca45a00c8c33b455679ceda7192d8905
cy|64|d0d17e12ee217bc7aa33f9171f8a03858f6fca1fb353f4b0b00ef10c9c9ec5dce21371ddf5a7ca81d0de0e7c5dd6b35f59d182dbf8c75517387c2b8727516fb8
da|32|b75f9be98d247b2ee00e2751b3cbc9afa770f458ec12e80be61dc440349ddb811518a865c3fc7cc0e5b9d51733918f558dd17b7e9661e9b0805a0e1472e019d8
da|64|2b20ccf363218cd5cfd53d6c088f72e7700202dc9b027799ae2473a948f426cbea881ac52059d4aa7b8bb2c09e9ef6b2ab95ef8e5cc659ee44f10589bdebc4ee
de|32|fe4c14ca7bb9ffc2517950aaaecc5c515bfe9edb5384087b5311e3eeb2f8c0d3221ddf978a275af2be996d17b7cd6ec1ee77a59c983a1f36ae4b267ce9373574
de|64|ea56c54c6035a98c83104d6abbe0c3deb89f6446039630a32fef8805acf5dcd3b530854501131dfa4673dd5b6a002e27c41859866d52a208af7aa836385a8733
dsb|32|d192ff218d74ff53150e1c92bcf4e5e11834c695ac2cd5d9194114e137a2d50557b2663e966dfe92815d2ea8b735b586b3998875466f3892db17f972144592b9
dsb|64|efad5e810220bdf79e36e803e5b58f871703eb1b3a481139c13707c9315b420eee2e46c13394449c38707298ecba6b88c790302da6e1c553d6991ed440ea47ee
el|32|0b1989cf0eca03fcf05e275ef3d702c26a3769b8a248fc7da886808c187b271c133a4f582382f88c04e160e07e05c1be26b758763fdf1e13a14afb4f82d6d96d
el|64|6999d0980c8ff8ccf0517d7da9ddb01733d6f995fb7cf5f6f47e675274503756a07c6e313e73826f61b63f872e17e3b39e3763e03d36829cc11465e533f8d286
en-CA|32|07cf48d6e332258ef7589e734814def87fa7a29974cd24717166305da79d5c25485000f41ab683b3a46d1aa99e7e00879886a3007484e42eef1df9b530eb96de
en-CA|64|da07f1a39ec3c30985178549ab45c92ff1644f54c6a883b293e59cd5135eb302d26699770543e0241b4cb8b06ce2d196d3447923033f53181645b8a37be931d0
en-GB|32|b657f9390dff29a0f971be4486c18e26390aaa6cb0b185848b3552e4963b94f5bd8e3577065cc92a825e992fd770e08c82b99be312d8714cd590ce3580f0b651
en-GB|64|54f8742800fb918f35cd9fed394c53e08c777a149ee1ecd787099c864c3de8b7ec9612ee4622a376c551453036288b94e0aa8db17da4f95f60bc2827d872cef6
en-US|32|2e4007010c79583b594f6b3e346d6bd82f54683c658082e82ce8ef7f3a3eccb019cb68a06e6d2954d4adb005425bbc47e94f7e957bc6508e7b20af89ae74001f
en-US|64|d8d2e7e05d7b77066c8c33935aafdb9ea8dc75a953fdc345e440d2c063b509c36b2fc67ec3485fbbb9cd95f572d9bc9ab057d4eb001c3e3e7d9ac3f26058cf1b
eo|32|aa20dcf74e9d18728a310182166876f5d247fca1c066c7c6dda9bcb486ba74bbe6ea9f14f6c42fc2c81bf3cb9610a006bd4ce2aa4a6ef9adc3ed30e0859ce5de
eo|64|9aad9795ebcdb89e47957c9d70ea73bfa968dc9d2bdaaec679067c8db61f4a39445710aebdb11da411d6713399b2f953021c26468c508ac76a70b18a57c7bb51
es-AR|32|102cb042bc4a41ab9ffa6827de5ea52835948a7ef938fc1b76cc95c1be9b63d7b2d3385b7b6e4805d75974e8d154a07bbda20a13192c392c12fd5e9b0a702bb3
es-AR|64|7c316b4cc0bea3863b27726fb93e5084ce1f3b5d3e8a7e87f26573ec98e308ca8db635d35baddc498a4dbfc3560ca352ad9737495a31f9b91ced3ce500b075ec
es-CL|32|1e299f4cd8ce3529e59f35803edb5e6d9df48b53c62f4c7a4987ac5e16161c4b6cf6754c8e1ac4b7bdaeb4f9dd679968b31b8dd757862eb6532ea323f6aced22
es-CL|64|7c73391176243bc48a27885c6ab47aa92d6e0edfc6ba30d07b63295a63f64b6124e17c631897f3c9d8870f7100f97f4892b0b4e5d1315d42adcde92d6d016bca
es-ES|32|cb6887365335524a0f23c7c7125c488dec0bcc802356ba6ea6ff629fa16d7447339859a5532f28379efc8628cb556b27d8c9193a6f316a77fe88115683fa644f
es-ES|64|1d06d0b90cf5d6f607cbe395d337399f5ae25e547e9230e7c5d8657478f7e8679a70eafa863079e152623ca446b8d0b5497cc076f622536002ba9ace61175804
es-MX|32|823f219e97b855970f5fc4a0f16c24b5b3588d70860491232f6bb608066c76c8213aa7dc42a9261445461a8466771751aaa6afe24fbc4048d4d9ffcb11976bc7
es-MX|64|758af72303f53d456bddef75b1735c607f18820169d6b4f2f1d433f83090c35e16ab100a6158121d27c892c22590396e3703d3c341f4dcafe9f18f8a9537b6cf
et|32|87858ca5ec54c4c3ee20dc9cbe8f904c0f495e8d69204f0cb8e4070acc87a8361ee66e1a049495f598fedf64ad892ee3e95649fe9711619ffaeb01c006df8c04
et|64|bed60fabe8692059f3f36d7d1e94ad368d0741fc03f614b5edcd50710bff07776420dc30add9265fc604ed3eea5f519df8bd103e5813973543ba5a684e814cbf
eu|32|99bf9f6a4bc4044d9af7b3381013efff082659155750bf2270fdd3f6cc4ab889f6ce1a7a865a4271097a2cbdab60c5e79fda0d0f998ad9d131f3e81aec06ee90
eu|64|308a893c6d7e2534896dcbff7444da1b6b847d9baa50048185f68b9e24ece39e0ee04d5f8e454234d6eb16d6d3608c7f812fa18080b73fb2823fde07b9e7f79b
fa|32|e9a690d935d838f84bcf5dcddc516baed3dd4d8bff582d3bd25d98d35b18cd4485c1abd30c6af64bf564d692c5ee676216ba29cd379ed2c22cada3e46337ae9e
fa|64|6dc9fd1e3f663c0839f7300f5fe41565530965bfd5157e50ecd6a7d4cbbabca07461e5eca4c5cead70a4311a3ced9b2d37bdae6c6b68032443be03e34a0b1deb
ff|32|df4832c0d1de2842ea36e7cdd2193cfac974ca7d424e53d3bbdd887ae952d3bdf09671537ea4968995d659f37a36f674ae5a540510fa521e567e7149c8bf0b4f
ff|64|c8b47d57faf6ad5f97fa8cae34a5e0a90a8bafde10b8e62ceb8f75fec82eb401d0886bb5ee3860a700ac5e925e88da756e6e9085018519513cba0874ca38dc59
fi|32|a8d5df52c29054c870ccf13a1e0b45570fb4b0dca3182576efd57dd61a9ae04ee5622e90b0aa25c1f88ca4009b692a1caf574f1dbd228067a64ee613f942ba61
fi|64|4370873b55da9366392656f36d0a5e87c6521bc3ed4ad30778bff67de647b1678e3dcf6bea16a84ebae57f344f8ef07ae01531dfbabe0707437f407e5d7d7c63
fr|32|3789dabd252db87c1227a719b3911bcea57c4a1226e68f9497730143960ffde8a1efd48caf7f8f0a868fdac40298b09755c27325359ae37b5d61d5da42532f0d
fr|64|0c22f0e7fb08d716c95ae95567e6a8911b5aa8959db8f2a64737c980e312f9a88533347a465e55e52f28d9e0a22cfc1b281c6b60ca0395465e6798f529fcaf05
fy-NL|32|c6b8d426cc40224324d6c47c824e5eba4a7fb4228ad9939b1dac375103835862aa2a2caf097ab9964a09a8fc6945266d6c8cd41fa81ba6e3d36e2b6f0d1dc209
fy-NL|64|ec2062c04ff79d3bfc98024fd227cff851d5deb367f26fb042608b419c1e81e9ecb55866977772b1d9b384f245b112e360734b2d6f5a3f8ec016256fa069d30f
ga-IE|32|1594911a7656f6fec429051556c9376189a7d7a91b53670905082a8d5540bf55364c69dbb76e3a5efda3d18f5faec880b4a2949bfd32c62f1e3dae10c74402f8
ga-IE|64|e58533e2c933ae71b87cda909c8a0bee6ea69ef9ee524afdf5eb1a38a18cc23dbed8722f49416d46f020b915da1403c13e3d0363291e7c2500bd216d0722a54c
gd|32|630d5691db92dd0deacf2ae13548d97b42bf6f7e238e83aff854dd276582b7f839101942689c1a9b35ffa3224347e04c3032d1a06d40f8103b220e04e2841fd3
gd|64|1d898bfb2d1e968b0b3b339d4acacafa68535992c2dbfc067c0d5b9c92e034428e42e2fec2130d39c71627669d8f3b7e336885c4adf1719b90db5aca6b169cf3
gl|32|320689038053b68ff9d77571c94e62f7d7416548c14f11802b76598ffcaf0c8e50037de2b5e7b9ee1e2236f75c9fc81ef241596839ef86ba2b7479166245c72b
gl|64|fb1fdda886e18c2b877d0c0e8f944805ee5f6159bda5b732657613d0d5fc6c7700f3be6d080a7b6a2f47534f473ed71c19677ba29c1c31c9986e3c02918a78b6
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|53a4731546067004faa98fdcf50abb9a3b99e711819f9cc6b25714e9640c25077a3690d821609a7a6644ae8c5fcb819ab28beaab69c204eb53ea76296a75e86d
hu|32|8f55aa09863b01f8a4f900e020a3f49f7aa41f61e02c5765cc3c5f499e441e43c71d539a226786ede521f664e114c67f8b09e6e4ed8dff2cc5bf076bb238da83
hu|64|6f59eba6be05816a33e6c1e31eda1ab3581dc6ae37bc46a9aedf4a4f6c18050b3a9c4473ba01cb730fdbe88bd7d75e2bf202f2d943b58034184acab7d7549ffc
hy-AM|32|3056f8c4a2e0ec0f2f23055a380732752ac06a733b9b73bb5ef08f666550527157cc0c5d5c8a3bd1147b5eca85b7972788a6101e1724128c112bc2987f0b1558
hy-AM|64|77d217f607c639679c6e7940590ed182dfe30b6d68a3b0a4e972611f65d38242915c78d62bfca3be0d3ee057e3830b7ae6f1d824cd968db001f78f2d541d86ba
hye|32|09288268f3ecfb9c1d24a0d28fe600cacc66383defc48dbbcd832cb970fd330b6ef75443f3836b50af4d8714e7fc3ece19d39873f1b9d4907504bc52dd9376a1
hye|64|7892199a9347ab39f479b4ada1f2134f8001583f85709b564575a109d88e96f27fe0e5641221c737f7acf66eaf78b11c70f8d6fb8f16f74059cfc6a61b320984
ia|32|8cb10743507681a030ec2fac0d397ae2e469695015897e9dacc730dabe8ec733a668beca397dc2a77b6cc60b6be57239cc2cfe0e96cf69b495b2fabc8d3f85ac
ia|64|01df53722b5de9272d4038a2fcebc160907636f63777b5138b95fd9924816375436f08b676c78374d719b3565aa0a9015f23e7218dbc9869b0f3d6828f9295f0
id|32|ff64acd1018ef3745098ffdbeda4cf7fd7ac60a34c3892b6be7b250517efce3b221b6f44ba2f8d389fe451fe85ee6f68cea306d44501ac73497a50f9a496b2d4
id|64|4742d8ba322cbb3c44a874b1920ddf2cd6e645b2778890d02e3dd9486f8b4cd0bb94aa78611b76e7dcb8e2f560e3ad032beeb79a9e151b005770e29a07c3e3da
is|32|53abe5a8c889cda33704b09ef76c7c77d8b61f19551204124dfcc935cbd334d1c6fc4ded69967dd9241d25082d2412831ef7f1019cce474470dcc18e92d176bb
is|64|648c949e8d1493cb4fe6ccc73b4ec4c756309652b1d37c3defaad61a3aef8b410b2d8a8648295c378c9941b475ea0f709cbd66356687b72a5e7d2db0baa0534d
it|32|c676a889d81f5b776582dc72084442e99ffbd2f5cdce84f47e978b37fdb477b69215ee0946dcbefa6b2750ab5e8d4f27b0022559638a9271546bff65a76e4901
it|64|a3a92d7b147b9d85a154ba545be737f73e42ae2f4a2826c4fcdaab9b2ca2e8514bfd458627dcdfd27f1c06ac664473bb1cb2c9f058685da2a38c25427981525d
ja|32|6ffac1f2075c68332dca39ada784e96407d3ebcc86441e672022fdf849b22fd77b12f83fe2b7a44bc80c59eca013e8191ea634b39135add37cd677992cf4af3f
ja|64|db7c65f7fae4da8f621667625f2bc54c4338762a9f622e90e8014258006d456999a31c24fd22576c8425302683fe0e55af1aee0a4c266e09d9daa20bd4917a47
ka|32|534461dffc2153a55ae902d2f359674b5cd80f02e7981daf216567e59ae655ae6f98c4ec9c99b9b578436a9639f321c57045827222358c4b645f0e085241df6b
ka|64|11408db3f0b3284c00d06140a9228cff39d053497b7ad47f2b150bf9ffff1c48659bf6c9ff677467f99797a0614c0a058b5ee98a90f0035b4c453f4ecd0ee894
kab|32|65cfe456751b4767a190dcb3b2ab27908a605be26d3446169b47cd991fc494654d912a805c7e9bb60e647cd8a90429b1ce67055fd7ad08a262d1c82c6666e0d9
kab|64|a6063493f36de5774d05f3ec7920d2a4ff04f48df6c95bd6be0709ec5c62daf067c3fbe45e2cf6869347bc2ca9b533736961132323dfa8ecf103d16ff986bda6
kk|32|2d23c58fa6677532caf77deed787ce6a19864fdc694bb9833cadb3aa14527719aa6d23a1dad8826fc2fedc35dc139b927342b7e67f1722385ee30ff01916bd1f
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|5cde5f2ab2cfe1682a14d609a0ddd0ccb537d1fd7606e5a54386db14bd0792ba4d8ca9263e8800df7565b4707f62e707104bed35f26e79e6c809c427047f7afa
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|82458cd0159e4866427235dd6345a3da31525ede92c0acf4e5924e0a7a7c4aea9784a0a0c6a3b3d2663536a36a8efc2607b6ebb5699b8d970450e412af7a7d52
my|32|431cac082c2c1335d36dee59cc04167c45e304d88d0aaadabf7c012c90f41875df26c26bf564c4f3a578de4202d5812a36f7e69314449a9e52bdd57966ebdaa9
my|64|49356769ccc4564270cc57102623490e0001f78e9259238f4859202331b65884ec43483740ee555118ac45a9f58d9d04ca82354eb7042a2eb8e1c1be67dc7cf9
nb-NO|32|0dcd768cf1267579be9c5dfdc443f5ec8892334ea6b3e03e7c1a0c8dda29ddf7986b32a689e1b554f0b0d0136d317b2a215df960afe987a374dd44202878b69d
nb-NO|64|ea513816c0461acf88fbf556f61955041c315abe2b7263cb338c55117fc97cb12b192e34dfed46133b490434da7a984ebf27712b0848dc6c4fb50dd66edef606
ne-NP|32|2cd757ba298ea712d32a20d3aeab811cf3b33d6ca9ab9a32d75f62ef655923727f3153f896ab10f10c2e0de3e064bc046c863e13aeb25522df6b7e55b10c4a03
ne-NP|64|7a7caff3d1702196969042cbc694ac8fffaf39c0e56c8fb79186d04807847c719ab4fda5e3ae66ed83d00fc313590576bcec1ba2aa95c7ca3cbbfb638ded2325
nl|32|e4eb68392992e93ce6c5dfae88da10ed7682476b7aaf556d2d771256f5493984c8646144dab0f2912ebfe30200a1a192acbe04ea1fba2e5aedd059d0d797daa5
nl|64|f9eac9aaf80188d70663284d6d9f21b759b1918aa1c87537c6458e88c2a8cf98866977a291946ef7d48023436b9244b320087d69dde759bd38dbf6a1120d9609
nn-NO|32|c4f3ff00f0332213afbcb9f5ff8a9c2a69ce144f1f6d9d9c1eb307d3b43914c4f40e43a52bef6b82ebb04c4ff81bbfc0bba848eb7b483d2a9abcaae72e2ffc05
nn-NO|64|7b84fc71a10cb0c1f616c3ba4135dea1735b224ac966d8ad494240e5759b45620213485358742a7e5501353d804204e5dafd5d119f58a8c302561af5fe762c09
oc|32|a4e87d1fc9682365fa365192dc6e6a74b86ed00aa17443ce7cdcd52c0056d05d0f9f18fcd35b8640af8b30021fd8fe251887d35b4e43085cd45dfd1562f7c5c7
oc|64|f4720ff47f86ec135f3bfe0341bcc7bafbb2be4f45f483d48d43fe06a84cdf806898a3e02f6c9d1fdc501d6f0f8273f380d032dc75c1279fe0f033f6b2f8ccd9
pa-IN|32|7cb87d2e6818c3f5a3650ad5beaa1fe4dcbbc58dcc7079d37b3ed321c22b27db1332d54512a3eab3a472d57ecf948cade69f9355b8685a2834d4323210dd5ae3
pa-IN|64|bf4eef4b3cefec5a76a55e9d6e10368694551aac74861d730941550c49e118a6d24fef0e1288ac76323680950199940d4a2e56d47d0f9e8dcd0af96a52b2c072
pl|32|003810039b37f2d6ed470d1c1c73c7f8557909508b1a17901bc11acc5e233803ee542c734ecc5804e05c284611eeb526ecb04b9daf4c3fb51c4a99ecdc001565
pl|64|be7dd53024777c954b7ec3472527b11602d04aab464f2ffa634ad8691890281ec3e76d4aae1411f2b5b2665f63805bc2e7d217f35be3925f937a014310ecfd30
pt-BR|32|834e5155eb8b6a32b7e8972c0d52993687cc8ffe0d168c680b7b6d4d8384cdf7433adc7edcac4138c7a235f72e11292eabfdd1b7934d3b59c488642da27a382b
pt-BR|64|bc3d6fbd22a6da743ee6b8479d6a27dbc89f1e2d7e8ec5df220cc9b4b89c0e67b0bb733e7e2dccd607fcf70c313a694525fc2090139b83dfc9ef9af5a93398e9
pt-PT|32|8e0a17de39d62bfdbeee9fce9ae15c8ee8920a1b647565046f55a07d793a428cc07f2da7c1db06e79f9ff1ce8009f18972fac7fa63ff03171e171e145c5da5df
pt-PT|64|9c9c62fa99447445027241c464cd7a52def6bc8391bc38076ea97be09e0d7e02ad024b19e85d2abd54ff5cafcf7674ab63b097a1c38748dac9b597c307b2d9cb
rm|32|8ddae4dff92fc3d24a2088c44a1b199dcf600e7f88edf8b8eca2c890c1f1a162aa73de2be73d2f6facf8a359ad541b6e0642562f6fdfb371618f1b42c76516cd
rm|64|3becc7324e25d04c7422c419de6209a33b2f9c39795a708f22d6164cfe2a76d80c20de408224aabfa7c772a561d5e6fffd21b8982b18a1b928e656af3b7e74a3
ro|32|93617e4952d36e2d6bcf80760a94ea4a4b6806238a2c4eaf18b88e6572ec3342118fb6cc8d5097b8f9b373aa9df92656a791d3e0933929bbc4903863075ec444
ro|64|106a84b0beefda3dc48883741c3cb37eb3ed8166b803ad2121477155bbcd33fec5311b52c5ca9a528bc64f7c5ff9fa034b911ca618e920c1ec68bd3ac2606cc5
ru|32|ee595169f67abebfe588a99a4069c02d8baf4c57aaa8002849fc0d6f4af0b85d68870dfcf7e7b7b281cd37eccc1966d77b4e88dfb53c2d72d22fd289157ddf74
ru|64|cfbb9d35cbf12f69dffbc133b38f70f18538e57f7f8343004506e91b530fed9d23d980bbb84fdfb653cb7d6229a458709ea7b697e40829829dc72e0c7cbb1246
sat|32|f48b08508f669ceb36f312a42cad8c829ccd33bec20cc6b30943bc7a67109c25423a6c717fd122685bc57fd25166d7a7e6200374809e27d92cfcedd3102eb171
sat|64|3ceacf74bbf7344b1bd9da486b94296ca8f52510caa402c76309cb42a7637e104e37f379d46ec088c20eea1b54ba9c30de1f0aaf41539dd2523e9777154c4275
sc|32|fbf38e665b3e7eb4ab74fa8014cfe4baf43dffe65b680f4523f0933ff6ca1cfc1ba3b550d494632269627e5f57d2a0fcc54d8b3e91fda631c426ea16a32e4ec6
sc|64|b2b8b76c00e72043155172b6a02ecf12ffad1a85638fc2300d722b6b7c57549fa7697986fd2379d399f79cb9ab923167003ea90be8146400216bd3f8e78d375d
scn|32|11aec44ad1d194329e619a39fdc78536fec43ae583cfdaed2779bed0354d537053af861ea598e3ab80505e03010e395ea8178a5fe2fe2f5bc2b1935ee94e442a
scn|64|a71d09ec628fd65c0dbe201fc73aef431a93f5ef6a4aab538608fa3da0b1883bd86aa4a6916bedd2a5dc0c5c8e6ba5e7ef23c646adedfcd2c39c7de83e447a20
sco|32|43279808cedc709717f6db7facc3e30df92aef057b60b732a98b45601ce0f85cba1fc56dba5d05380347545107de1cbbed5fd67e08d0998704831b05fbb81657
sco|64|9a8f4ad3eb6383962c9cb725a199d0c5c904dfb00457d8dce95e83558ccd934ac297ca1f0315c8210188122877884fd6e45656d2eccc2664e20cf0a207575c83
si|32|a6fd13917e53e2db69a43f158541ba6605de90f64d09b01c4e429c0e9c4eb8376da6c5f4568af7f3908d551ed61bcd91536da61995451f19cff336f02f2a9e4c
si|64|dbe8ddcb7d75a00185249d5360b180d3183d41411285f90616bb523a695fdfc541853997f00c7f20da91feb7646cbacc2b807047b29c7d0c4a8ade8032a65961
sk|32|61753194dd3be43ec564c66412cb4e89e2de90322a5d98ee3a5f0d84c76de59bd9d6604f51a95915bd7b5c418575787e4df743dba457693e3587a055b43d47bc
sk|64|0b48da688155e366eb38e48d2926edd820716b17eff55e7db1eb81e21b9d015d41e3ec0e321fa4c34cc6fa0a2a0d8d84657280f3f1c0078da522d9e10146ef79
sl|32|6bbe998610e236c0ecbe0516a102926a5fcb6a7f0c7d34075073a95fce00482210874520e348c16f1359a59e9c721bcde0c80436cdbf505f4eb27747e530366f
sl|64|f06385e1ac0a490deb0b7e9f2549d0fc1d1ab8ffcea41d068182e73e68d831f3d89adfa7e174d1fa6e9524f22fcce7c494f5ed42ca23eff112891edceb80370a
son|32|290d72377980590ef9112de4062aaf42d49fa5563635ae31a67adecd3d7418ed57bb9c5b07865e4d5aedb071e80896e76f8648e17ebb91853b5502434dba0339
son|64|9c0017dd165006a7006f53f422ab00c853950cd2b5e170a7a1808d96b46398882a1cf5a4892816f9a79fc0cc7ce26a211469965c5b0a4e6319f9b16f84ea00a4
sq|32|ab145cc3d734b6aaf362cf62bde23f86a81858646da8ed0478f397ed0501d33273fe3c011ae2f2d54aa9a651d47bf1bffe189f065beccb6b43e00bd028472eeb
sq|64|77508da50bf0f18b117364be792582da16707589fe1fea3396ff190e47676c1d35ef34a2fa33456e7c1f0a148e72ed98337682db43b935b37e2ec422d28409e2
sr|32|ec0e9c646f1034fc2c68e7dc621eeceb4ec28caa33f9e553f04fe168025b000890ce585ba6a3f85578be6b2af7bdde3a927bec73e32dc84d54575bce0208e7d5
sr|64|4bee820275d6d4aa3b4bb47f928710fcde9dfc962501be1567ac231d64801e4a2e901d648f7961e4eb3b995f25bd4adccbe25d9439ca9e18f5fa5199dbdd2e6a
sv-SE|32|fe3385be83da7ae7da1e5af639c98fefab8d514faa658f7757bf0877daa7454c0287a18e6dfae7e0b0daa892919ebda0819d1ae389ee7438eba06fe74301aad1
sv-SE|64|1205e7e6797a447dd0c03edba3b549866618d19665a329d6ab473d355a2a204a4b53f3dd4732dc1992fd9c2d18e34b53987e46f4915438364927e174bcb0e6f6
szl|32|bbb80db3696687754d220caef105a9ba176552c6afb8fad1c1935af8dcf7eafd96e56f5e7a38ef8b3dc5a7a0cec9a27792837c86720ec6d6f40848572247ca5b
szl|64|963cdac630bd5502cc98b0f82f46174a0895c651475d377b818b381658b82ebae4e777e0aa688329c50a6e8c1d4d7baa122c5c88af5b0c498555a71a427da5d6
ta|32|6fd28a3108a01b08260e68d226c814754874e4a102c53b767dd8a0d170c56487dd5a1844878bab877d4d4b2f819e7b186cc118f7dd1c4dddc715ed544d98b84e
ta|64|c0f4f6495d7732b8f3029b70deab829f3b2aa9ad63e86bb5071e53b4bbb7a3846d7b143ec59c4322edf0e1f6459878928843be090f096141e94cdf731425ca6a
te|32|837d767da6f00ad01d1cbc70b4d5d5c6f2d17e9b92c307ee3e913435cee264d2177210d143a194418068b2a6c6c9e8a02676c82b979c3939869ea52b957123bc
te|64|460083730eb7d296b09d48be186c5a4678d0a775953207f29f37ff4b2878f465a376e44e1b0c3ac6ea30e0c9229bfa6fadd025f3cbfad087113028d18499ef96
tg|32|99d46c17b7c821c2f51e26544788db40399fd8fec15d3d32a9bf08f47cc629bd43d6591983f5a769af069ebc2e02b2d96daa10646d0ad6daa41451748d815fc8
tg|64|1a4a1ec29dfb1d13f537d77d070230788aa00d74a8e73a5afb9b93c1ead2252b366b6676fa2a374ac96e4588bb5af4c3aeb086f803bfcdf43985c96205d7cc4e
th|32|8de2fdfea0df9ebdbaeb5b7da760dac3d2713d42f703f8bd23092c7b616cdf6bf4055652bfbee1fdebb2ce458c2949f6b3d9bd468d7a03b5f3ddfb5ea48b1e58
th|64|38315e80e0a91b1a0926f5d310ec17442204e3f0c914a8fb32ba4720187c70292e5cd11575b7b7ded02434e7ddd382c0d12c49a5ba565419f0cc961a76b8a502
tl|32|5aec7d10c11abb1fc494a4ced5e2a6b9befd6e15c5570e290a2faf1aec3082b49541df2a891ef50aa188fc27ae7833a608010d033441e9cd98a677985549361d
tl|64|365c16acbf240fe68da46e1a2adb47c0a94a2a4bc6c4e47f382e02a53862e3a70195938971c7bacf8ca6009ef1f2531ce929182e309cbd01fb3aebe1ae21f593
tr|32|79744a3a19a511133eda4b1db28ac57ce2a151e4c01e33d29bccff4249adb070d26ee8153d9d5ddf0fa7d85e2c32d16a40a8bc6b94d967f6830ce53d5cd86a97
tr|64|0ac62005161e196543b06ed1aebf070729dd316916a151b8a797a05c7dfbc5f6e5ead4f1587d78cb9ef843bad4a6ad6ec1f19115c4e4e754b1c534cc533a8787
trs|32|089bce0d3f3f11a7cfdf9b214dec62d7dfe037925f8e34c942a707c9864a2ea483ddadcb4d45d1dd10f4a6465f310b55add07afa7e275f0faa53559ae8fa591c
trs|64|32e9fb36661ed199d0b26350f3a8b1140a16248adb8b4b64a4ad03a2d19495fa9bb95713bcbda856ba2ab1fc2b076f34c4bd519deee30b70d3a7166fcfb319b8
uk|32|edf0e96151b6730ec5c815c219ef294c71d7ff95533301cf1b250b082229950eaf98cb631b3198ab65000044d82f8df919492456ea4d073f25d29ceb9c8e799a
uk|64|b4c0c02ffd69df39c5c9a139f29db796e08a5c52e7087d2c98e987b85daed233c27822a73ee450623ded7a4b6c4a0575051a5eef6a27b41735ab836b2d26ca22
ur|32|3febc094845dbdbdb09c17a3197d789d5eef57c72166a75c5a86601b8bdc7606df5c3648ac0cdce79f9b7cc5e43b91d1dba5e4c68959f89b24b527261d5f5c90
ur|64|56461922666cee5628f35c71ee210836b8d780ac4a553cb36a70c8776c63148907116080eef8e7a833811ac4bbdf48d1b45931a45caaa8c8f5d34f4b51b8ac46
uz|32|8ff40c125e66b9bba7c1abe4a361e6f03a70576cc9ae5e7f109f9737a770054eb35861c44dbd2ce8984ba2f24ee9fa44a658788b0104934fff8b22b2ec5e7c70
uz|64|cc78d8e7289327ef382146477cef2b9552d33f780624a58b8dc5c5eb7862f4307c86b4ea411aa15a9e064e881786e9eed726e8d621c6389472c1d1d9d4a415fa
vi|32|a775e9f65d0d00585989dabda80407d05b0ba82c6c10ab02c668c926b57e3a8c57108029631c6e15c5697ec5c3d0fb846fe59594f5f51b292bce99fe83f12dbf
vi|64|5531db1a0b81aa742d15b7d172190ef30ea966647e46d95d72e0c7ebb8ef76ff9d44795c74792d7baf5c99c6027a9800ad121f6a5afb46b8e8c84bb449f133e8
wo|32|05c3e9cc86f8bb7becc014b15dff62f8734353ed8bde4e329ec72a698b3e016ecbe8f70d1ee8d42f3369d27882f5a3ac70257490e71ab248151eca3ab1b59220
wo|64|ccc31673b04e98607c826e261b6ea421389f874a49e3f80c2980373656b0ac8f290e5051bcede47a7cc721ec813a5aaed404f4c6bf7a5768395d8cf2e79cf2fb
xh|32|fa47a6dd46dcb016fe86359d846b46c66dfb0e42cab9a7449fcf391568feec78ef8f9b6a6ab3e8cfc803ff93e8105c01fac331dd69903b55d68d52e16e0e7b5e
xh|64|fea720913e3c6473b038e05ce58f921c024169e95df69d77806388e8f7beefd8af494df57c4793d87f0ecdc51fbd5884a7c6e13325596fb44952574ad8f37a83
zh-CN|32|2daa83c5b028b969ebb15f6a46173b2473ed5cd8abd41f67b553cc93353bdcc83bdfdd704d9a2fbc67736f9833f1793fd7e3477955d25f6899873c89327a374e
zh-CN|64|034497bef4600a18841922f309541aafadef34acc615c234e34e993a72192f5f15ef48f18c76720b5821f31fccd1da1b66db1185d35e4aaae95dd39e271d1883
zh-TW|32|5dd79b5535e142b909aca46a75607b4459694ade5a41d9f0fbec50ea2fe0744d7f52a83dde8c3efa7303778bea87dedef581c8a596737b85b3461bc31ba5c71e
zh-TW|64|e8c131e87e8d4603a5aaccff0d95d62ebcc529d8713f9018c70a75e6c537c7baceacb6c4c488975cfe28a8e6fb33320385a12fd3bfd3b12aa7c54d27ecdb6c17
Log in or click on link to see number of positives.
- firefox-nightly.102.0.1.2022051406-alpha.nupkg (a0f29746a696) - ## / 61
- firefox-102.0a1.en-US.win64.installer.exe (dd1365e2481d) - ## / 49
- firefox-102.0a1.en-US.win32.installer.exe (9c422c948576) - ## / 61
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.