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:
137
Downloads of v 2.1:
137
Last Update:
14 Jun 2021
Package Maintainer(s):
Software Author(s):
- Borna Rayaneh
Tags:
font arabic persian farsi kurdish sorani pashto urdu gilaki- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Borna Fonts Pack
- 1
- 2
- 3
2.1 | Updated: 14 Jun 2021
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
137
Downloads of v 2.1:
137
Maintainer(s):
Software Author(s):
- Borna Rayaneh
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
Borna Fonts Pack
2.1
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Borna Fonts Pack, run the following command from the command line or from PowerShell:
To upgrade Borna Fonts Pack, run the following command from the command line or from PowerShell:
To uninstall Borna Fonts Pack, 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 borna-fonts --internalize --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 borna-fonts -y --source="'INTERNAL REPO URL'" [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 borna-fonts -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install borna-fonts
win_chocolatey:
name: borna-fonts
version: '2.1'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'borna-fonts' do
action :install
source 'INTERNAL REPO URL'
version '2.1'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller borna-fonts
{
Name = "borna-fonts"
Version = "2.1"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'borna-fonts':
ensure => '2.1',
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 by moderator TheCakeIsNaOH on 25 Jul 2021.
The most complete and popular Persian font package.
$packageName = 'borna-fonts'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Install-ChocolateyFont "$toolsDir\Fonts" -multiple
Remove-Item "$toolsDir\Fonts"
$packageName = 'borna-fonts'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Uninstall-ChocolateyFont "BArabicStyle.ttf"
Uninstall-ChocolateyFont "BArash.ttf"
Uninstall-ChocolateyFont "BAria.ttf"
Uninstall-ChocolateyFont "BArshia.ttf"
Uninstall-ChocolateyFont "BAseman.ttf"
Uninstall-ChocolateyFont "BAsemanItalic.ttf"
Uninstall-ChocolateyFont "BBadkonak.ttf"
Uninstall-ChocolateyFont "BBadr.ttf"
Uninstall-ChocolateyFont "BBadrBold.ttf"
Uninstall-ChocolateyFont "BBaran.ttf"
Uninstall-ChocolateyFont "BBaranItalic.ttf"
Uninstall-ChocolateyFont "BBaranOutline.ttf"
Uninstall-ChocolateyFont "BBaranOutlineItalic.ttf"
Uninstall-ChocolateyFont "BBardiya.ttf"
Uninstall-ChocolateyFont "BBardiyaBold.ttf"
Uninstall-ChocolateyFont "BCheshmeh.ttf"
Uninstall-ChocolateyFont "BCheshmehBold.ttf"
Uninstall-ChocolateyFont "BChini.ttf"
Uninstall-ChocolateyFont "BCompset.ttf"
Uninstall-ChocolateyFont "BCompsetBold.ttf"
Uninstall-ChocolateyFont "BDavat.ttf"
Uninstall-ChocolateyFont "BElham.ttf"
Uninstall-ChocolateyFont "BElm.ttf"
Uninstall-ChocolateyFont "BElmBorder.ttf"
Uninstall-ChocolateyFont "BElmItalic.ttf"
Uninstall-ChocolateyFont "BEsfehanBold.ttf"
Uninstall-ChocolateyFont "BFantezy.ttf"
Uninstall-ChocolateyFont "BFarnaz.ttf"
Uninstall-ChocolateyFont "BFerdosi.ttf"
Uninstall-ChocolateyFont "BHaleh.ttf"
Uninstall-ChocolateyFont "BHalehBold.ttf"
Uninstall-ChocolateyFont "BHamid.ttf"
Uninstall-ChocolateyFont "BHelal.ttf"
Uninstall-ChocolateyFont "BHoma.ttf"
Uninstall-ChocolateyFont "BJadidBold.ttf"
Uninstall-ChocolateyFont "BJalal.ttf"
Uninstall-ChocolateyFont "BJalalBold.ttf"
Uninstall-ChocolateyFont "BJohar.ttf"
Uninstall-ChocolateyFont "BKaj.ttf"
Uninstall-ChocolateyFont "BKamran.ttf"
Uninstall-ChocolateyFont "BKamranBold.ttf"
Uninstall-ChocolateyFont "BKamranOutline.ttf"
Uninstall-ChocolateyFont "BKarim.ttf"
Uninstall-ChocolateyFont "BKarimBold.ttf"
Uninstall-ChocolateyFont "BKaveh.ttf"
Uninstall-ChocolateyFont "BKidnap.ttf"
Uninstall-ChocolateyFont "BKoodakBold.ttf"
Uninstall-ChocolateyFont "BKoodakOutline.ttf"
Uninstall-ChocolateyFont "BKourosh.ttf"
Uninstall-ChocolateyFont "BLotus.ttf"
Uninstall-ChocolateyFont "BLotusBold.ttf"
Uninstall-ChocolateyFont "BMah.ttf"
Uninstall-ChocolateyFont "BMahsa.ttf"
Uninstall-ChocolateyFont "BMajidShadow.ttf"
Uninstall-ChocolateyFont "BMashhad.ttf"
Uninstall-ChocolateyFont "BMashhadBold.ttf"
Uninstall-ChocolateyFont "BMashhadBoldItalic.ttf"
Uninstall-ChocolateyFont "BMashhadItalic.ttf"
Uninstall-ChocolateyFont "BMasjed.ttf"
Uninstall-ChocolateyFont "BMedad.ttf"
Uninstall-ChocolateyFont "BMehrBold.ttf"
Uninstall-ChocolateyFont "BMitra.ttf"
Uninstall-ChocolateyFont "BMitraBold.ttf"
Uninstall-ChocolateyFont "BMoj.ttf"
Uninstall-ChocolateyFont "BMorvarid.ttf"
Uninstall-ChocolateyFont "BNarenj.ttf"
Uninstall-ChocolateyFont "BNarm.ttf"
Uninstall-ChocolateyFont "BNasimBold.ttf"
Uninstall-ChocolateyFont "BNazanin.ttf"
Uninstall-ChocolateyFont "BNazaninBold.ttf"
Uninstall-ChocolateyFont "BNazaninOutline.ttf"
Uninstall-ChocolateyFont "BNikiBorder.ttf"
Uninstall-ChocolateyFont "BNikiBorderItalic.ttf"
Uninstall-ChocolateyFont "BNikiOutline.ttf"
Uninstall-ChocolateyFont "BNikiOutlineItalic.ttf"
Uninstall-ChocolateyFont "BNikiShadow.ttf"
Uninstall-ChocolateyFont "BNikiShadowItalic.ttf"
Uninstall-ChocolateyFont "BNikoo.ttf"
Uninstall-ChocolateyFont "BNikooItalic.ttf"
Uninstall-ChocolateyFont "BPaatch.ttf"
Uninstall-ChocolateyFont "BPaatchBold.ttf"
Uninstall-ChocolateyFont "BRose.ttf"
Uninstall-ChocolateyFont "BRoya.ttf"
Uninstall-ChocolateyFont "BRoyaBold.ttf"
Uninstall-ChocolateyFont "BSahar.ttf"
Uninstall-ChocolateyFont "BSahra.ttf"
Uninstall-ChocolateyFont "BSara.ttf"
Uninstall-ChocolateyFont "BSepideh.ttf"
Uninstall-ChocolateyFont "BSepidehOutline.ttf"
Uninstall-ChocolateyFont "BSetareh.ttf"
Uninstall-ChocolateyFont "BSetarehBold.ttf"
Uninstall-ChocolateyFont "BShadi.ttf"
Uninstall-ChocolateyFont "BShiraz.ttf"
Uninstall-ChocolateyFont "BShirazItalic.ttf"
Uninstall-ChocolateyFont "BSiavash.ttf"
Uninstall-ChocolateyFont "BSinaBold.ttf"
Uninstall-ChocolateyFont "BSooreh.ttf"
Uninstall-ChocolateyFont "BSoorehBold.ttf"
Uninstall-ChocolateyFont "BSorkhpust.ttf"
Uninstall-ChocolateyFont "BTabassom.ttf"
Uninstall-ChocolateyFont "BTanab.ttf"
Uninstall-ChocolateyFont "BTawfigOutline.ttf"
Uninstall-ChocolateyFont "BTehran.ttf"
Uninstall-ChocolateyFont "BTehranItalic.ttf"
Uninstall-ChocolateyFont "BTir.ttf"
Uninstall-ChocolateyFont "BTitrBold.ttf"
Uninstall-ChocolateyFont "BTraffic.ttf"
Uninstall-ChocolateyFont "BTrafficBold.ttf"
Uninstall-ChocolateyFont "BVahidBold.ttf"
Uninstall-ChocolateyFont "BVosta.ttf"
Uninstall-ChocolateyFont "BVostaItalic.ttf"
Uninstall-ChocolateyFont "BYagut.ttf"
Uninstall-ChocolateyFont "BYagutBold.ttf"
Uninstall-ChocolateyFont "BYas.ttf"
Uninstall-ChocolateyFont "BYasBold.ttf"
Uninstall-ChocolateyFont "BYekan.ttf"
Uninstall-ChocolateyFont "BZaman.ttf"
Uninstall-ChocolateyFont "BZar.ttf"
Uninstall-ChocolateyFont "BZarBold.ttf"
Uninstall-ChocolateyFont "BZiba.ttf"
md5: 27B7A60FC80B300444B77D5C9E3CDC73 | sha1: D88765042311A97D6EAE38BF317C5654C4646CFB | sha256: 012E38B00C1E01D751885A08EAE1FB5820ACC63BCB20BA94D2255D5F2096AF30 | sha512: 892952C3F757ADA7437533BD8A8E645742BF109497EBC620D98E1A6F9EB4CF48A25FA5B1A03D29D1A5A0034CBFC64A91150E831704A9BC9B283E9DC42ABC5478
md5: 09D1FC7FF0FE4BF1F262EB641F53D523 | sha1: B658587D164B59C573F91BF1C258C526FB35BF31 | sha256: 3ADE34B43F6CFCF5F7940EA5925C21D84E08772D76F47202199F34B825622BF4 | sha512: 2F68BF7252929EFC305932B84EAFA64CDF0773CC840DCCDE3759143511F35339B19A849F983A081C5948671959448301C1EB99C31A7F3E82D39F04AD6B11D99A
md5: 709BA8DE8FFCECA539F27745DA5F1E30 | sha1: 85F5FC46904A7DEEEAD4B27F2A059951F16C0865 | sha256: 1E0BC7449D60C4345EC00886D0C408C34E4B18B8FA1C354A59A79840585E115B | sha512: E45C4FE0CEE3C4911EA9A7AF4DF4C5E094989986B5368FFF14DF23059457F63029BE6A10B86C4DB1975B7911A0BB072985B602FE5475E5F5FCE8CB394095DE6D
md5: 6216BEB84CD65143E60D63FDD0AA43F6 | sha1: 2C8E86129B436483B55DB08C5ACD74F4E87D210E | sha256: 23F3BA15600DD77B21A685EA03E97970C9EF36EA695ECEC856FDA90F4D1C7A0F | sha512: 228FBAEC3A20E407133C8CF81CAF0FD64E05CDBDFD4AD817754E306656A343A9DBA5523489781760003F6780779BAFD98C5CFDCCA7A886EE869172FC1CBBFA3B
md5: 002BB58973C8B8C5E0089E143E05126A | sha1: 112F7C5378C095EA5628C2D757C4939D493E142B | sha256: 92C6B0FDD86F06C72A9BCC7F65109891FC76CB2B97418BD904B389C8E4B2A4E3 | sha512: 4218D62A88AC40A7FC8968B8412BAAFF544E46E69C41952C5BF67FF566D1A8BEEFF1ECFA756823BD0226C03FFDFB64B311C3316130EFC6FF61F2B1056DEDEA10
md5: 1F7BA5EBC8C255E06BA8F35F6708D3EB | sha1: 8BFD6C9FFA429B0F9FCAFF0166385565175C7886 | sha256: E70FBA7253FAE2419451ECE0C3EE8F3CE853B0233DDBF09448850607F273DB84 | sha512: 0CD2960D066CC59892202A13B16B22FF8D1A90DDAF3F4DEEBC8A2EC24286009B6DDC7D0F99C7A64CEA827DEBC4246D60264DEDA50CBA9373D9B6273A937CB2B7
md5: 60242C1677C7B0522DA8908A19BC9789 | sha1: 157751422CC8790070750E6B45E2A3FB9E21A1D9 | sha256: FC9DA734DBC24F96FFF1B1A47D787A1C16007DA40597370E13FE7680D69647E0 | sha512: F527B8BC51F57F9B39E859236C77DBB4D47DA3349FE5FCF795BDAEBE70D1743FA090BE6A17B832B2042F1AA40EE842398F3796E8B3BC337F555D733CF50FB94F
md5: DF176D3953CC80A99AA59C03463A9BD2 | sha1: 969C61B76A80EC0DA1E604D2CC36BC7DBF60CB4E | sha256: 29580CCC26CD082B82A2D22F241D6E470E8D4E6B968098FACFCBA646A6770FC3 | sha512: AEE9993723573252E43444228E613B9DEBAD6A46DA84EE2DCFF81E33D6904C4DE20A4959A496974B1321D5152B1E3B22DF485C8C076DE900988079696EA11B93
md5: 6A8763B986D1D2DFBED13A2A74BFAB64 | sha1: 4B972CB2F9B8D7B6787D1B537C7EB50C14A379AD | sha256: F0CC42AD4EAEDD915536BE6D5761E24C6659A65E003B813CD671A15DD409A8BF | sha512: 53B99D568599EE47D240A469B0A63E6B5134A1B10362EBD17F22C2394A49477162E2120868CA9C768A3A679C417FBB58BB2CE9950F6C9CFDE00E943CDE1DDC4A
md5: 341D6A03785C2277E008BDAD35338441 | sha1: 3A44CCEC282F7B2690B2E1D3FAEAAF79546B0DD3 | sha256: E7C21C69961F8E1B2A3F2A5C96F19867DA12BC82E1E0073ED693D2DC1AE25104 | sha512: 0DB766596C75ECDECC40901A66FA649FF8D2807BF449FD30F3F9350C46598A564612D92E484042468579C1FCCFB1F880983A8302E3F7AD45F766623F9B60919F
md5: BFB55D5BA09190194ED1F0AA89785231 | sha1: A182DF1438338D1F6C0617E41031FA7646096C7A | sha256: DF5A6049F74C5078E96DE507AE0646CE7370A30A7114FCD8404F4A00F04A196F | sha512: 08E1CAD552CB002C921B744258457BACC049AC8715439A95DD6F563BC67F804259EE76D439B31CC830011D0968DAD08AE9B40526B0A39D05752740F3E44FEDAE
md5: 56372954320FED9A0B2E6970A63A2EB9 | sha1: 1DFDF901085263E03CE71C05BC2B3711FE2BE833 | sha256: 08B5B6B760B6FE7DC6D9A65C4A82E0BB1C1CFB9054C8FAE6B158D01C1F478E90 | sha512: 0BEF94623C5D3E301561E9691C8F9CBCB71D5DB8699ADEDA192428E9D7048C7D556A8FCB532307FFC8CDCF5F215FC531696C35615FF0BF1054EB76EC237BD301
md5: EB5F9A9E5CBBF996D5EB0F40834668B8 | sha1: 98B1FC8B83BFAAF92517573BB18E1E03BA0522A8 | sha256: C6F7F04A65210F75FA1C7E9AC73DC2CBBFACA564C14E93996A2968E9AA08295E | sha512: 1D0800B4B0218B5DCFBB75B31B345FA809CBDC96F96348D6D1FEC78CA63F73183A9D406D91BD6CF609AD1928A0DB17C0CD171D9841FC57B417F664B5749D6A8D
md5: 23FDD3CE8668903230A1AB43BE41362F | sha1: CA54A9BA6783A166F7164FDFFFA33198741FB339 | sha256: 9A0423A1A0F9068F9D946758CF14CA400D6A3761C15129DC99189307EED60FD2 | sha512: BD5B220860B19D446AA991903FCF29B6A5146D94A1D3139CBB81F1D45E2375097DE7658C15E3483C60B97F5A665560C08B3F428B7FFA05BDE59F900304120C73
md5: 59F9484D919C77BFEC65DDD5BCB341A7 | sha1: 59F5648DEEA426A59682D37A2429F8A76B906024 | sha256: 1772CB19DC0530984F470C8817E9CB3A0FC4E31CD6058B958F90810BA238A476 | sha512: 44915C03755F0D55CE8A7080C8EA9CF891E60214E334B6954748E5F625FA737AA3E618FE6F659D529055913E1AE63548B2561683078FACC74575C00A1F644F7C
md5: 3C15E46060E8F0C4CE59A25A90247E0C | sha1: 7E2A3BCF412EA3E7CA57C87E9F7F4366C8539738 | sha256: 7E11B7D54F70ACACB38DA0675626F71363E5124AF9D9F3DA4C19A6FE6D809858 | sha512: 38DAC24CA4C282B5E3867697F5A57C711443EB851FFDABEF9F192F7D572E6C735D3431BDA75E1B1B915347651A15FBD567E97AF867DCC22A0760E764FD799A99
md5: 2FA928CF2E3CBDD6381DEF9064222A88 | sha1: 3FBF1A8806FB3E320E2803D6994ABA87889A0CCC | sha256: 0D1F6338CDFEC5082BCBFF93334EEF0CE05BF3338F4911DD5DC7506027CAE0A4 | sha512: DD018CD68C15D11393F2A96B2D3D242F37796AE86D32E207404F93A43D5FCADC9A345EC2D03B5EE53D19C38FDDDF3286B53551716133230D4EC448529724D3BC
md5: CD0C09C5F5550FB255C9EC3089BB3EBD | sha1: 69C4B98CD235B958B712753456FBD5FDE4594D40 | sha256: 5B7668237F655552A46808C7037097CD4CA7D0E30C21C4454079E2C6155B9993 | sha512: DB9A7D329AC7BF1673D7563BE1C968A19EAFE0BEC169B39E0475CCD73D402F1E63E63298E1C6FB8C08324AED5F030FF68F0930B3EB9C65D562253C89A94D33D0
md5: 7F255AC629035FC0C846F4C2F8AF087C | sha1: CD08F01577DC8281CA467C0039BFA6E37A7DCB96 | sha256: 764A79242B3DB29B17904BBE6A625B7E098CE30A9C179C079427373319A51CCB | sha512: B97C621675BD04BEC68D2AE9106BABB1664F3FDE04A8704EA9E5BB47802DCC6B26CD90A79119AED3AEE3F4CC994211CE94222765281451D2B3843F42AEE41D36
md5: F0E4EEF94836221EB1B804F80FC9E853 | sha1: 9AF764CCDD01CEF41B9970876DA0450E0943510C | sha256: BF80E9A0D4614CF03A0519F714140410A27B561DD0D4A18951F6A6B07C4AD3EF | sha512: 019E47D6CDBC42B44C05A2A26ED95B872D76CD251BA93EDFD27C5B6E86B498BBC71508B6079F7A276235524ECA5AA4A69D681522CD1CB883F154406A92535D2C
md5: D8299434620FECA8BF1D4158DF4EF5E5 | sha1: 0100F03ED29AEC3C85D078861570A9EE1F46FE4C | sha256: BF11D8E0112098D8094C6BBD35AB0250F2029003654EC05D73FADD23396EE736 | sha512: 85B309E5869F7F200A31672F042CF930AE9712A96C9C6259AD1664C129802B61D7FA7B40A5457C86E53A0BC03AC36ACB6D2744D1B4638157101D3FF4BD839A99
md5: 373552C175B6F5D76151EA831ADF7687 | sha1: 7F5686C062BFED152F373A3E0F5C85D384E2C51D | sha256: 42983740A01CAE6EC2C12D03B68685E0940B772685C42D3B959873C26FFC44C0 | sha512: 87539983631868244D6F4F5FBA0CE089D5D48B5C62281426B9DD82BA1F62116BC5A0F3209579DDD79C16A1C57EC107C3DB8F6E7CC801D848FBECF0920DAA57A0
md5: 11AC0780C23CB36B070A760EA4B5C2DB | sha1: 3179C176DC309470DC1BB1B164E7192C55BF8367 | sha256: B940BF3BE56B710320F6ADE7DB2A3BE6E6A1C527FFA7793C33DEB414020D253A | sha512: D6A1576021DCADBCBCCAAA63880789B2901C87A8CDBCE46E8402435E87AE163B3EAA06156B856D103BC04CC871EFB4892C28C5899BE150078765E7DCC5EFCFEC
md5: 22DBEFF7D6DBED19CFDDD98860838350 | sha1: C5BD3D6782D2B05320673335012ACBF2B3AAC080 | sha256: 18866071B21E3DAF037CCC53E4E70CCD61EBD8A7C47216C658BF21BACC4EFEFB | sha512: 06A67D1F3B6D82CA4860AD0F45432170AA3A25558A5A44E4EC3A142D95AEE2156AD458BD0E94AC300C6DF60E182C1A55EFF0C9BEB39263F6DCDAB1995546EDC5
md5: 84C921BDDFED2BC1588EC550E08E69CB | sha1: 20E100619DD373AC65C9889E1A543A427DD3297E | sha256: B1CE06D58CADADEB3C7218EB4679B38FB4C20126ED35D3FEB289D1D21AA660B2 | sha512: 7F4C2799C4FAC6E29D7F0D70C4E686DB569CB5972313E0CC2DBA5C664B73504F94566A10945C78C56CE9B1E7869889684EC4AC97E4C70B1117466D646C10141D
md5: 97BB9E8700111B85AD60A38A120EE47D | sha1: E6B676F2EF14C5A7DAAA0EFF3DB286FB709F0343 | sha256: BE39D087E7C0ADB95F8B6D9AEC743CDD08B6A746F499907B32FC8FC25E16F8F2 | sha512: FA501FE67FF72D5A6C40E14DFC9FE86627401E16B665A9FE0B0805606A947C573C056B5963CB3C920ABEC68C76DF1AAC9637F9E29E035FA32D77EFD80F9D44BC
md5: 13E134372F24EE9C6D5749D8D979D6EF | sha1: E6FB8182D472C0E65F3BEF51EC57FF111786FACF | sha256: 82E2400C43F43E9A09E15CC923E87EE4F0150E556164F9C9377C1B30E80C203A | sha512: FF2B82645FDE248F23C4A022170F6DA04E4568A4A0EACA50FA73CF9E9E03218FF034EB977386AC1AF9DE1CA7B81546B39406561EC7C68459AF033A1E94AADE24
md5: DF5E97AA68D947D8055BD900E48B8567 | sha1: 97975F909402B594A7D21A9AA59E0E5C0B0C8562 | sha256: 5AE5BB7E9AA39A2C00961EA7B8BD9A9B332AD86F2839CA1F9FA0405682A310BB | sha512: B00F6BD2AA49284E1BD054281BFA857A1F910F3BA81A2E0DA143920F533C4E2465451CF0FD80C46A9FB00B1926E608158509667A434FABB319E481519C8ABC0D
md5: 0D3A3F159FE45621049C9D5639F7EECB | sha1: 9628DAC079246DC07C5B9E16E24B33BE63815214 | sha256: 6E2441740991AD9CBBBF94D6379BD14BAFAD02DE3D846E6FB183AA2E2B83BB93 | sha512: 232056FDE7E597D9EDD258D3700AA727048F27729335EE43D416B844D2E5C7AFE20C9D6E649C64A364D0F878AF7325F05002B2B06977461ADC94FEC80988E813
md5: 5CD2E62A2FB77EA2904D44C5FA6F839A | sha1: 3CF76581759DB08AB07909AFA4DCC1B45046F747 | sha256: 3035D84EA49930A5E8227D9DC18922F7CA0A06EBA5947484631672C48EE30A39 | sha512: F107BDC0330070365AB3486BA0D0F4EFB37C2D257CF24E83714BA664FE085317BFB749EE47A30E7701FF65ABFF1C198BB0C0BA88409114DB08FCE83A1027B097
md5: 928D0D891D9CF3E12BC41AE5CDC14534 | sha1: A3AC72AFB26246CB93C8436D763E3E8EF0426E33 | sha256: BE96B8B3BF1F2EA12BBC868DA5EE281D269A9A637F4F0C52C6E06197B11A3672 | sha512: 7FCA2CAE5351A1A2437BFE0482B135F9D85787BDC155652BBB0C4131B98D0BB1D5604324AC5BDEAA05D415D1F7B3B8C9F846E7F307CFEB5EE0599534EB324296
md5: 9FF0390C108FFF2DB88BAA038A2300EE | sha1: DDB5A1F294D5155AB67653CE61767A1796E41BD7 | sha256: 593CACE71827D8F72E1BC9D14C11FBE1E8915076623B1D2488DAF459E7C06404 | sha512: A127F9DAB6D11E6DC79A7193965E8A955C9494CD69310898870AE1E862BB30076D122A96E4E971C8F4FF6C5299B6BDFD8EEFD8FD985A56EE5AC25A3848277D9B
md5: 7E7410E73C19CE7AC6BA0140228294DA | sha1: BF5755C4DDEBA5C6626D6FAE25BE948859DEF23A | sha256: 7BA53D72863F4F95F5624075F1044D0B5598F206A371E03A15075B7666E0115B | sha512: 05397574511DCEAB1D1E2E75A9B3808B83D42A7F791557E5B3C11B7ADDFACEA9CC6702F935257DD3444AA76590233581FFD908F9CECA5678889582B982593C33
md5: 2EE8450347FDB0D8B65FD12D337EA781 | sha1: 87411A6AAAE7D182D4AA2E35676F502628A862AC | sha256: 8B9D4B4B07296C3C147C5183CEB013C42A9E99FA3F468AD347E37896F8B9A7E6 | sha512: CF85378FF4E4A8BAA9D44FFE6094B46CB6976208DE31716DC8007A58F6F5FB9923D52927BDD7BEAD69B55A8C2C634FED44614A61CDC62E956F63FC9E8BACBD1D
md5: FA981DA56A70706E25526FAB1C478D54 | sha1: BA3CD1AD67A1FC4AC1131431326500A745057CED | sha256: 213EDAB8BA4D27F37ACC69AB74259167BDC10FFBCE3E6B2C25AC9DCA120F50A6 | sha512: 86F809B55DB28537323842A33A345AEA153D556C9C68BC189A86BD3EA3B1C896BBC0082BC4F1E2905AE4E90DAFDD4705334BFA39E54402F595A701053E2E9EB4
md5: 85FA36C3E7161CD18A9D1F47ED21F47E | sha1: 752D8F75E039E52CB842A4DEC5CEDA2385ECEB0F | sha256: C102B0DE1A2AAB77D587329264874346749B94B0562CE3E8186A6FC9DE6BCC88 | sha512: 735AE0545FE8852E15D0F7BBAE5170F30127F89D8EA44A1EE19E12DB5E28E4A4C4005FD4BCBDDCCA7044D85B887909B9F85B6CC447FF89C353EDFC05C72CF4F9
md5: 6BEAE5825E5DB3E5D14684B249D24EDB | sha1: 21CB819CAAC433B3FB15DFE837F8C300C8A7F097 | sha256: BEA24025FCD0E2F17F1D1B2FD7459FA948695535EE9FA786929AC518467BD358 | sha512: 1B1ACCA13FDA70B91CFB33523D72CE17B2CE4035483C34B9AE67B62517D3A122965DC5083289FA2C71B97CF0946C63FA77BA7D3DFED437FCE6D9471311292FAE
md5: 49D4BE9A493E8A41930C6C34394873FA | sha1: 0D5F9E8A2BD7B472A1F0233F427F5EFE35606B5A | sha256: 9046F19DAAB3A6A159ED56EB5DE719AE749A9510F7599A824897358A881BEEE2 | sha512: B47E7A7560D166CA951F61115AD803A1EF9FB3D577A3DD15F980E6EF2A02CFF47BB959DDBC8E0A2F499D2177FBE530025EAC54A8B9C1C871587E41654275B2D4
md5: CFE3AD8246EC2E01B3C572438EF927A2 | sha1: 82C4C8ED45BF2870E3666AF70823E874DD768892 | sha256: 25B6AE2AB5EA60B9E3D20B22EB5E56A1DD447B52E30C323D219CBCF9F45C1B1D | sha512: 8811E70FA1946EE93D0CC19538AF697FF87760B208BA2E27FFF3AA638800F1C8F7A8920576C2810B8635360A2C4B6ECFF4CF015CD2D4E8C89AF574186EFB1A73
md5: 0D9309586EECC270D73A73BE9CE2B339 | sha1: F4571571199DB46BD325718C3B9AA96113ABBFDB | sha256: F9AD7C17C2FDE838757A49AFF8BABF1FEF8639C0DD80CAAA2F87A9FD476EEE75 | sha512: 94292546D6848C88ADB448126C5717D17E533CBAE47AAF7518A9A093559FE45817E6DD962B24855A62B350BCCBC2FB9622203CB00DBF24A768D2399630242A5A
md5: 9D1F159EA7DA7C26F9CD8CE610A961B0 | sha1: 4542764AB0396A6E7585745D7D1DB32F8C2C2CAB | sha256: F8D187E12761DF982CC8A3B92269212606DFA1DEAEA9F4C542541286C9E10F8D | sha512: 3D3B2373DE07C9F5B5B7104ED966B1CE77DFFEF7265C96FCC56B7E540C06F3C708020F898387B11F88DF4DA0191E5867F35018E1A8D859E7A3A9B7BF6F460787
md5: DAFC87E853751D41FAEC7C84DAD1D906 | sha1: 9B30FDC5129861F0B6468311FB917F335350ED28 | sha256: D98DE4CCE63891F774F11C5FB8C2574E009EF889F8EEBAFF605A35CD09BC6EAD | sha512: F7498E623AA19CC1DE703B1B455F0444808B78A2A676CBCB6E53B11A084F5890361BB15AF1AC0C6D11DF3A262929C924CFBA2207D904A3ABCDF7C784935EE758
md5: 981ED27AB7C08864F76597A41FD7EE6D | sha1: 28483819AD1AB8EAF2E85410F14038FFAAFA357B | sha256: 5B589EDB67C878D4B33E066C0A972C1E596A6F026E4D2634CBB7D1095A621BA3 | sha512: C734DCCF563B0278888DDF05B9435A7D6B6246D0B5CA3D40FED1D7D91753BD86029DA9D3AFB6E0F689343A067AB107BFBD1973CF41E45D604A178B0D4661A238
md5: C9CD46B86A6465460E12234AE3AE820A | sha1: 49424C67F992FE273AD5AC72E64B87486AD99262 | sha256: F4D8C91DCA64AC8DDBA8BFAFBAE9DA3F1CE59515821EA41E4FCB5CD597CCA298 | sha512: 3DD102E6E1C310BB23120179CD3FE2A4FBDCE581E9DC1D64C2B776613B4613B28EF4BA6FE6DF9BE1BB589DEE32D8EE6F1202F0354ACF41BEC23480B84C1BA7AD
md5: 71F71EB549949754EB4700A261376A8E | sha1: F0EFC2619E77DB89E7510CDC63A7A93B0B10BB17 | sha256: 3EE0E0E966DC88E5A7831E4450C4DB3FFA8CEBA7736D8D344A326811474FDB71 | sha512: ACF4F2EC49319A4B1C4080FF71D1E53A23DC7377BF6E1C8D04AA6C70858871AC944E4C6C347AA9982D613AD1812B8CC269409C83368802CBDE137A3DB0895990
md5: BFD8BE67F374857DCCA9645F625A9AE8 | sha1: 9AA390F69C7467758EF0D2117615854A8BF6DB23 | sha256: BF9390DE2C9773AB1512F96076C948A34CCF1FD16263933AA44DC105E901922F | sha512: DB057C7CF63008431D49930CE3A526B03F9AE94C1ECE01490FACF1BDD0E93DB0D48747E4ED0153DDEF1302776A50D7C162AD30674B8958E6B8942B3635C102F9
md5: 2BE5D53BD9404008E505C403B2AF6D9C | sha1: EE393EEB3E8CC8338126367A6DCA01FE1A2569D3 | sha256: 5FD93A626BDA3E75F0EE6CE429F15ACBD32CC5278B1D1D6FCF25A64EC693EFC4 | sha512: DF7DA6E9BB2D10E421930EF70B7D943D2F983134CF9436723D203E79D4141AE283E032DF2E6B4CB808D62F3CEAA3885B53A3E8E1E4BBE7F49833FFF6AB493E73
md5: 1DFAF3CB1AB63875F3A75A30A45ED0E1 | sha1: 71F47B63B500D075A22564298332EA29190E4C76 | sha256: E0CC7B6D869673FB43CDD5FC6A47B3A2F63918E25363899E78BC6D4C0D34BC6E | sha512: F2BF1D3F634A3AC23BC16E7586156E5A4364E4E7545A1F4F42BB503E1D9CF1BF1B21C1FA60EAEC512A7BF8AC561DD26516ABA8EFCE6C2A8D6DC0C19FA6C4E8E9
md5: 12C4A1770B5AF19E13D8F01B694C5549 | sha1: ED9B92070C5B1896ABCD5B8A44340CE327A967C8 | sha256: A45E071546493544E15205B366B6D43C64F62E84B0DD6E2883773AFC4F451DA3 | sha512: E68E37D089FC7DC0E61108FC58DCA372473EB93C20A1D9F2A7F78174A208C1AF507F3F723251735926CE96E37A7AEC6F1A9B42CAA9F16D67CBA7A547215548AA
md5: 3AA9053CE862090EF4F0E6D545607907 | sha1: 0F4D7BAB105588E78FD373BC87D084212008507C | sha256: C9C262F1EC2C8FF05D78FC1C964698ECC9CC1B2E3553F7E8BDA8559FFC1333C2 | sha512: 7A2676C9E13C5BA5288526A4BA03C69E1C80180A2A87FCA215B9DF5870CCC743E879E0B0A65F0A81FC3131B401EB3BE51E31C8BA7263577EBEE67FCCA2760357
md5: E7158F674F3C337507DC59184136E183 | sha1: 1BC2686F43E87C9573872A780CC99AE31A80F6C3 | sha256: 192CC941B0CA1D4BD2DD05A9EFE6494AC50DF0EBDB499CC420E6BD8198340BBD | sha512: A3C373233645107C671FC788B5B592E2996D35A90CB72ABFC5970C77A346EEE2D46456A32ACC7BA01FA0C6C0CBAEDBFE031BA61911EF4283D4A5F92FCAA3D511
md5: A28327F554B5E40E04976C453E59D2F7 | sha1: 0169780A68AF15A590E4A5994C1BE9F686BF8648 | sha256: 9C2568CF0154C104ED5A0D446A868EAC93395C10B372D9534C2327F7ED86BE27 | sha512: 7EB079B4370D25225EE63B6BE328BE789E0DC152EB1A5DC5E9D32CEE68A3AEA40F02A7F2FFDEE11D205920E97EA160EEEA8E68E7C17FAA1871CB6AEA4E8F9645
md5: 98DFFE801D7315F26FA5DFEB453BB7DF | sha1: 8847F00FE1191FFB05A1652A033C09ECB7083A8F | sha256: 361B40D03219B9756AAD4017153B19998BC51082D416978C2B97EAE8236CEADA | sha512: 609672F1CFF8149B7A7A9B1499D0099099EA051DF4DCF186879B4E20472AA07F85933B14797F3F1F4825172DB8AC3BA3BE5F2C4ABEBB7C9A14CC73AB294DCC8F
md5: 4E3F32E0FC692AE6A6AF8F348FE2CC4D | sha1: C0757ABBDADEEF168D1C5F9C0561BB228BEF231F | sha256: 3C4A890F67C60572C096F2EF806AEA0178882B1B89D057BF157F1E51C7094219 | sha512: 3B912F6DC9DF7F50A8EC3CF3712CA36F84A3E97C22912CC744F71867A5196A858827FA5CC47B35B03E26E5AD2186F3EB44F69A35117E0AEBCB6B724EFB44A320
md5: 7F201CBABA0E3BFCFF325E94E8A29E15 | sha1: 5D6609362AC761469FF4F818DC00B0FA4483CF33 | sha256: 48BB645BCCB4D29670289F9F01DE67DA418FB227DCB266828526E29503A8FD52 | sha512: BA39E997D838AB98A265D93D3558BC7AAAF3ED9BB363C054789A71BDB539511FD7F46F72E1A0056665174F53AEE297B0E25B14D2B0FC1556B7C7429DE1A44722
md5: 7464992C6CC4E80ADFDA96756E58E5B0 | sha1: 985DF74E88858200D1120B88C5C75322B221BFC0 | sha256: 36D1924B99FC5A0D0F32B15B4D2DB8EB67B385BE1BAA69D1665AF535E4035329 | sha512: F955FAB4506F8725F515B5BFE54FC9D441DCC03AC706FFFEFC5DF497A37486067DE11D16608C5AC868CFB901AF46696AA267F812E934F8C6EA401203DA324ED3
md5: F3785AF755C33802D569A945E6198C32 | sha1: 8489774557207C478DCAAE85ADA251803E892A1B | sha256: A60A7D7B2DDCC4390AFB3AF266E3986FE50DDF3A2B683D557EC79E03D2FC8775 | sha512: 45A60E081C4ABDE99E3D53A647661B96BD73FA9DC2722E5E47F810CB9D90D75CE935823692E298375C4665035C00D6A4F8D187594B92A1B14464C4415DB0318D
md5: 0E36BDA86F159041148AC9979DEF3857 | sha1: D1A33810ABBF0AF931BDEC11DB2B3C03B0C3E3FC | sha256: 1B6DE9F510DCAA74B6C31E585B623981B8B7931FC5B60CA6324CBBBA9E8E1321 | sha512: 90E1F8836CCFF16C8C60CD1C111518FAD62E469FC442CB00123C6979F20F084C32BAB188872728C894994364F4FD2B4515D47557786234C9B049A82C646567F4
md5: FB5B4D0D83FEC56C267D7BB656E3AC1C | sha1: 2381EE0C9DAE61CC78114EE1EE4D62907E3BDF16 | sha256: 42D173E81687179E357852E19E095CBB6A806A5F748451222E1EBCEA33FC5085 | sha512: 6901279ABB2E1288EC1DE89B94CEB9B80E4CE7A4235015832878DC454B3198B98D6B4631D33EDBDF44C68DF1C464CB8083EEE55762F264ACB153CAA61891AF2F
md5: BAE1D368389747C8258A4792782EBE10 | sha1: 922ACD2B4DF48224829347E7A1595A3F3BC39476 | sha256: BDCE83CE5DF50AF0F8A21944084DAD3F886F3EB53A094BBC5E41798B28017886 | sha512: 0A8392D9187D9E11F5F9BBB9353A453F99E5D8307F6586BD498F24C5D8966CED8C2BF038BE6F5FE22C7FC18CA76AB6D923C0547D9DEC1E9D510E0B9ED16688EE
md5: 2426EA04DF6A5935011C714A2C5966F9 | sha1: 6C170F9BF5BE105A6B3DBCB4D08E20A78A27C026 | sha256: 9736C01367E93D925854E0E78C05ED2A23CCD21A389EF8D58932EAD1BBD03B1C | sha512: 85F65706966E1852C18859F8864A5F829A620436BDEC6614EB84B3B91E4CE4B3A07D280710DF26B4FD223F5AAFACE2F11D0AA0130C7B15582D6BF76B1603AFCE
md5: B9A78E6714347C12A10E709DB3746719 | sha1: 2275A285895DE974CC228C60C089CDCCAB13803E | sha256: 5CA115BE76D772816FDCE608B3DDB9F548D28F0FE08A550C5C9E7B6E40EF3109 | sha512: B98D935B4BA5FE9486F8C6877E509C7B667216E315E9E9AA3D405122AE44701BD5F18EF9DA5CE301A7EF6A192AA708D312097DC752A42312485E9C176716B721
md5: 748B1A4B0B2FFCF3E44D85BA27A7F3D8 | sha1: D7DD215E8A3BFDED3A96407638D4064D21DD7F6A | sha256: 85A4EA933672892C3D03CD7C590CC1B3809677BE9F42A6F12C5532C89A3B0DE4 | sha512: 01069FBCC0DF4CB0C747CCBC7A60688B600D4F98306AA644CFE2DDEE5FCC78D0148201C26622944A067DCF34D9BB12D2845EAD5AC7509BE82C21E268F2F77241
md5: EA5EFE77DB91293BF11F05C3879B9CD6 | sha1: AE260CD65F4718C15B06C04916711FD2A9B7DD9C | sha256: 61227EBDD338374ABBE25FCDCB434168ED1E415AA4C6CD5E8B17D032592A04B9 | sha512: EB98E1D89D397DD0789AD8314398B2FA61CB7F12B70CE955B8B90D34C352B55262B60B7E3DC32610FB39D14DED5DE637165F63D9A39612FC1FECECDF26CFBA37
md5: 68EFA5F31A3892A297CE37367DA49630 | sha1: 5AEE3E99A6111EE3D83ECADD995EA55FECEFF30B | sha256: 116A1EE8F052D02363F6216069CB595A8248A654FDFB5A5EE3C54F9C7F2D800A | sha512: 30C9B65AA582CD66C502F8C1C42245B1DD69C7D691B5D90D5E5BEBED1341617A7BB2A6166855605EA95180B0E4F76F675DBFB897FCC32B6E1AF2ACA829638214
md5: DEB2915A3216024F3244F68F3BC43990 | sha1: 98A0FC0C3D3CDF1421383294473A992682BEDF31 | sha256: 5F3938EAA17A4758C925EAC8A3BC6AA0B79395F1AD54F97C955F9B23DD817531 | sha512: BE6021A1CCC7A2F3FDA0822CAB1A662DFDA50C9CF5B0D1764F7D75533ABD909E9FE3D0B6CB5F0A63F15A7AACA246C92ACA704BA53692C7D705B64F7E146A9A21
md5: F3697B7C5CB6818E851084752BC194FF | sha1: D493B8B9F50825E1471CFEA048A6EC91B00C9E6E | sha256: 12FD767C94E161B64E6629976CC5ED62D8E81D217B1C2D8FBE5817DB5E18029E | sha512: 559138A6467DC9E462537DBD432393C4C4FCBB21F2621DC8A0BB4F98DCFDDD2D4F2767FDB7135748D59EEF971FB6ED559CD43A9278DA2046030AA4CD704DE453
md5: B0EBEBD71394F3F06B5F10EEAE9F85A0 | sha1: E44735DB13365C790146593C16CCE8043F468EDB | sha256: 563076B155EF9D69C807553817E84C311ADCA4DA3CD1DA12819535D256C42C2C | sha512: 0D7FBE51CD059ABBC39B5539CECE9F5CEDB02A93FF428B3412215FCA2320ABAE87F29266D8162E51ED3C84484906BB494B91DFAE4F8057DBA789F63847BBD09A
md5: FE70EB00CC03165219440C4B13B6BC66 | sha1: 1BC1986667E2878D16B62284454F3DE7DBF373B6 | sha256: 7AE508E94FBBF35F1A43F7A93D125F003DEBCF0E0AF64805309F3A3EBAC4188C | sha512: D120999104BCF6359A0258302F446ECF2A1EFBFC70AC33598EA671B20F01B5303205FB448D6F59925DD4F8189F241AFBFDAA80ACBCB1D6A64A448CB2D49836FA
md5: 991C306AAD9DD0B757E0C1EA23C19B99 | sha1: 2F7E0E42C40CC803B9CF2D000AC14742204C1D5E | sha256: 2293311D5738F48BF7DBF3BB38E1B7FA1475E955893E0B026258493AC1D4658C | sha512: 80F4C367B956F0D1AE1D9E327133F789A474E4A575E87A30B183382B12E541D06E3016A502BFC20B38C24C789472C145053D22B11398343C74A3D05D159A874C
md5: 97DFDC9FD57D9555EB5BE7EE1E5BF3A7 | sha1: 93293F8767D50B6C2563334A9D7676675A7CB03A | sha256: 772ED0ADC0BE930D5833212417F7784FF76F1EAEA41E19227AC283827368E7B6 | sha512: 3FA80CCB75AEED8E10650A2F63CBFA04105B74E0C3BD15D12A632C518D1CC5CA9FDF2C354CBB2EBC5A7DBAC3834F6504470AD27AB3258456BEDDB1A2C3339A85
md5: 94CF1498EEB555EE16CFD4F6F0EA5D82 | sha1: A935E79BADCDAD952E5D240D22C2BF3313D8D323 | sha256: BC0521FDF7CC96FE6EB3B22BF192CC5205094CEE35466DCC1B7F01232798865F | sha512: AF71F62FAE257A8C201CDB46D295A0B0D4BBA50C52B8594640954C4B954F362F398B6D4944D65AB49704613C0CD2E83BEFABC350857D3FA3C9D14257E385FBB7
md5: 22C052A6C6560E6E045ADCADDA620C97 | sha1: 5CD9434C6AF853111D410756E0D5127EA9EEC471 | sha256: 5982E4F21E0D1EF8A5E9E84FBE96081E5C7AB8E8332CB0345DFB43D79574F0B9 | sha512: C2F77A810FB9E112270B8A99A4C2D624C6433B6BDE5CFF3B13AD7829D9495346AEDC69BFCA3A830325F56774DD1B3D19A926A31E4C7370121D324F1C31EFBBF5
md5: 502149251ED51734E2428ACA04F60482 | sha1: 347CEA272978C170E7691B7AECBD4DC8CBEC634F | sha256: 9DF2F3BA83B4C8FA1E5893FD0F71CAC4B45D65FCCF97984C031CFA029E3313A6 | sha512: 731E1586216A5A6E26306B967D58C41399106A6141EABF065B4C8959344E0285784E3D5C07AE57ABE2311F6665D1986F5E01DF3A772E0A6DE3E9B7B40B3E0757
md5: 4956FE5644DA8317E60516BF278707BD | sha1: 01278DAF4EB97BCD1616B0784CD4061BD1B7B6C3 | sha256: 0F8A4DC2B8E502AB46710E302373A5673802A8E2DE14363399450BDD5A660363 | sha512: 65EB3A8DABD5FFE1683F1F12C33ED1CCFBD394C4287692EA2FD5581A5B125D82F4035C0FF72D6ECF9D58AA49FACBAB886FEBF70C65DF4A230DF5BB1B702E2EF5
md5: DA040165883A627B42534646FD28A219 | sha1: B3001DF28ACA2490B2AC1728BBD2E6C4DEDC868A | sha256: EF0C5E19F98245ECC8C8E9762412324A46DED11CB91B1BDD95EF69687CB4189F | sha512: 3977AC98A18A540BCA7E81AC73CDBF6CCC37584A96FE6CFDF3CAE2427BFC2E4C4267B67F51689E193B03B2A0A83C376ECD1EFA78C39302F2E24CBEC89051D762
md5: F2B0F56B96861C402CC718B0943BD68C | sha1: E35A19E369335FF415220E9D45AA5A47F0BB5506 | sha256: CBB656D72A4D643F0E450F95A94917BE889D49D52106D25F96B04B26E458B9DA | sha512: 2EF6F84CE82DFFA46A7518CE1609991E0400EE9E87CE1C015FB56035584D65AC8B55CC5B12873290A940CAFDE08BADC60676E5F3852DFCBC36883F0AAB316589
md5: BCDD533A5D858BD1C80A27BD90885D27 | sha1: 35D53A0CCD580970346B04446C43A61B6794C855 | sha256: 8FB6A147E56EA40B1D191648E78CE72B5C2C15C79BCFD390FBC7BE5FF683DD74 | sha512: 6CD8798EDB0F0C1E681902E4359D7C035222884DF426B5F6208C8B19AE526B46F52C932F46158DB9DB4CBE697DA45964633A50B2266AAD23436F2DC36C367792
md5: BE3C9DF9E1A91C564E528170525E4BF4 | sha1: 042210D73D36C1900749B60D6E6D7C15FA0C515B | sha256: 2285708847CAB44614BC95CD8B7679D01F7A7396416E10192F553BA668A5B086 | sha512: FA68C6F577878BEDF50875D96DA121E5B30E2CF0D5591F33099803A614D86BB173683DBCEB8A0AF0BC18BD9C959B19E8217323F2EAF7F7E0177BA6E38FF76D20
md5: 1DF0CFC8A624349EBD18E8285C22D0F5 | sha1: CC964D356DC24BCF676568899981013C4E4D20C6 | sha256: 13FB84F4D9799C06B7F773B6EE60B74038B7034EBAB1EE0FDF97263663FD107D | sha512: 2A36A70CAAD2E2FE6166A7E2F18EDF06CE5DABF67E9857270F3967CC427EE38A953421C6B845CAA6F5D5EB2C53833968BF3DD06EE01ABF3EF82E9837898A5A84
md5: 14865B34430D07D08413BDD89BB8E65D | sha1: B6CA5127C150C9A2AC9FC81F2AC34AB78C1CEBA0 | sha256: 89B96133A2F09A4FCD7E47D32DA9BCA749FD04C622678A958DB8F1A3DF84C854 | sha512: 6B9275327211DF2695905C012995DD4A2F072A7744D8CCC1D06530B3B7AE985EEEBBC37D72149DEE54A5DBE6542FB162C21182F244AFDFFE6B13DEAB6656BDBE
md5: D0F0B9B71A17964AEE7FC95BDB381C9A | sha1: 1B7262420C4858BE2F25D26493FB1196B4EFF67C | sha256: 1AB97F7F651F8F5EDC8765A02EF760ABF578FF3A6874E11A69E42F470F3CDE77 | sha512: 60456CC9588F22B752068FE2ACE7F51011748B43681AFB7AA6B09331D39737644C09210DF9F57FE538E042B3C0C821EAB3D053A6408A7010F0864A296A037347
md5: 9DC5C5B598D5D285385EBEF567E77E25 | sha1: F866248C5ED9B1B4D2544EEF7D0017A4C4A1D510 | sha256: F8EF080381BACABF1DA3FE20E937CEBB73B270BD1C6299E68E803DE6406833ED | sha512: 7BD3BB566905693B9DEB38AAAE217C1DA0719B57C5D085B98D5DF8D07CD544B55503CC73E4B468D4E023947E30ADBB5732D46C0685E1F5C017D7C23C956B17E9
md5: 2CD7E13BF73DDE1E798305B5F3DA8C9E | sha1: 8EE509CF344EDE29FD113C0AF0700F46948CE28C | sha256: 9B2CEB7CE3C44FF7FAAD7873BFC56F9B70963F0CDD545B60E91F8DB89EDEC5D7 | sha512: BF71EBAE01A23996052160FF1B0613E41260BB15138D40FB897524E29D6A21E474FD7E9886D1E30E5CCAE0DE0175B138CB662ABAE4A5080953216DBAA04FF087
md5: BAF5EAA25A5ABF537F45D1EAE4C6D388 | sha1: FC5F4F6A111BD89527B6275CBB551DF9D84D890C | sha256: 7B1CA1A21BEEFF248C58FEE8F9932C2BB3618EA9C56CD99B50E091FD14CD1570 | sha512: F5F829E43B04628B5C26DD76BBF9CCAB77DAEB871193D3C6D60FB72E3226F1D65B9A70AC865C3161FF45648E4E0F07FF1A286EF6284ACEBA3CE7493FFEA6E7CA
md5: 7F0900BDB23556C3929F36F764759282 | sha1: BECD2BAECAFA9DA25AA40B7EC1F46CD1F883D089 | sha256: 42900DD9834CF13B43085AB8C90E7D5F1230340DF97AB8E1F5923F32F3D63580 | sha512: 381D93DFE9216F9E14A4A8AF56B58ACD69C5A29E1ADC042FFA6F1A7B0EDA164F33B3D6B28974E006579EF0B663D32677A684A8846E81CB3C4E751064DE7BC7E9
md5: 2BCC0E4961C7B2231B69A734F4A107C3 | sha1: 0AD3E8E0924678BF7E3D8EA3E46250350C097974 | sha256: 230B2782D96B5072DCB367B425411F4D77EEF7A21D022771ECA574A2808F9D0A | sha512: D0EA3ED45A0ACDA2C3C80F5D1AA8B888AFDBA63A16AB18E24CC4F23316B55C26875B29FA690A93D0E9C1EDBAE13AA71CDB17E35AA4CBE554C26FE8607B3FDB6E
md5: 10CCB1954C07CEDF4E685149E12B4C98 | sha1: 6E6836043F55731E43649DA01A946ABBAC82B79D | sha256: 028AFD44D4F737F59749FCDDD488875F3BF619E23B8CF2016FC8AC1F73482767 | sha512: FCE3BA49A23446FCEADFE90F02451C5257FEDB671E6AD347FC5B72FB6ADDE693C2083EFAC90E8944A306FFA7072136DA1141B94ABB01EA5B054587892CD53E65
md5: 5EADA4EB16DF3D2FD0EB6B8961C84A0D | sha1: 7AD4F2CEB813757D9DCE11147A3ACA2F5487C826 | sha256: 26C67C05BF9E3D05E095D69980337B5FDCF1424ACC4E6CAAC5276C9FF1F51273 | sha512: 4543BF4BF0F1EA66CA6BD93D96325A86FAD53C2CC380B030D96AB919FBE682E32546F1B6D77CBB20625C4ACC1C7E74A4E60BEAF3CC3CB957E42E324A986CED2D
md5: E6427743A2208617C7443D812C49228A | sha1: 76A05D0A9D655C221FC1F1D2A70977952195CC12 | sha256: 34D10FE9310D023C4149A7BC7F7C051C9BB8326D98B61CEB299C0C0EEEF80042 | sha512: D32F70D91B304966751EC7E6F0E8330BF05D99EBC21575F822C0BB1804FA2BC2E33496EBC200985BAC0C8B9E1D46B0E7332709025D6D3E68FEB343DF4583A110
md5: 18A8B2223EC0EA93801AB751C82C4D46 | sha1: 6863BD99A319A5FD4F76F28D10C59C3A014ACDD7 | sha256: 3EFA4F50E9597226E1EBEB244F5AFBE1A7D4463F3E2E8A809823C413532F5218 | sha512: C6B87766C866A94728FD3AB1E1CA1D2BCF4B83785F1E1CCF831C01F1CFD8F8ECA814AE68A4C051A3A493275F1C83E6E3D1BC91010EF89DD3AD5B840897DED717
md5: 88F27E3027A9653DA0CCCDC253B6B7D9 | sha1: CA7AC6D527DAEE1B6145E21961072ACD0D496BF6 | sha256: C733407BD40DA88EBECF1297C7A9256B1FE20291938A9C444850689E29FC9ABE | sha512: 55F5B50C650E15F5A1056DCC72ACF5B3E3A18182C2412E4716412DE7EC652804CEC0FBB3FB6F532DE707D847D903580A6693E1C8259C9989195065E027BC82E3
md5: F8EBF8F7AB0F3B2C3229BD96FDF2DEC8 | sha1: B77F9E8845811CC22DBEC7436A8BEB184912A879 | sha256: 9A4EE26C844FF0DDD4DF0A604BFD00BAE132F730331A10B69A128AA3B057D4BE | sha512: 12F8211D930A69DA464AC42184C8A94C5977C45E182DE47AED8214C360CF87A4DA98CEB3DDF30528BD76E28516595B0C691599A74187A524F5E0D3A507BEF4FE
md5: AECC7D2A5E2DBB3920B56A0D91954BFC | sha1: E9B7F88A2D290CD987399E0D0CA562E58998C51A | sha256: 18ABBC06768BEE0EFBBF310E725E27CA64775A7EA8ACDD83F20CB14E4FAFB9A8 | sha512: AA24396C9DCE5D5BE51CE20264AEEDFB474AA5B6114DCF8AD0F59BC3D810DE19DEC34EA809F991E955BFE3C204C15F2605F068E616E03761B4CF6FB06A27A6A2
md5: 877D83B658AE9B31CABF1C4FAAAADA61 | sha1: B1259B42813EF13043B75AA4425FCDB30525286B | sha256: 1BB7668280BEF84E5B8749E6AAEDC39B52E296A1F4D6CAC9E6D6579599EE3830 | sha512: 274EB1E921AA093E617ECCCDCEBBDADA4FB915C14D47EC50CA9439B61607BD4F2A062C2163D846EFD9EF2DEB44A27780DF9B6250248128132E103A7A91B3B317
md5: 20BA462CCE9AAA8773DC1B85E0F228CB | sha1: 17AE4280E7C0FEFD38AD958DA8B30A9937CEDEF8 | sha256: 2466E395667CC969D9DEF55B44F9099E567295356ADEB013130887687A662BB9 | sha512: E911E938CF66150D5029AD2F4F2C944119A6A18B064B38F1E3296BBE62274EB5242C7560BDADC0C62997E87905FE31406542B8C9F31D2874731169DD8620D1E5
md5: 2174FAE42112ECFF925A45231F138E7F | sha1: 65844AEDF827E45422B2F8175419AFD55D8E7A53 | sha256: FBB8F46AF514F9FF312FA34C2A6A2F85C800113B9F938955CD7EC889B82D141B | sha512: 736B43CA0160F1B42AFD5FBECF3A173D998E137D04512D67A5E4196646E2F353DBFDA6E3CFCF019CB976562A2E77A209509BB9AD53D270AC82211B2C8C585B1F
md5: F4D9F4CF3D50583AB28862A705C7E8C3 | sha1: 8483E7B8F1B589AF0FE46512EA44F0FC057DC736 | sha256: 24A3D352B682B08EAC5AFE04E4C1835CB101E1A08E21320E52D4037DFC754D9F | sha512: E33A43B7E633D67E8ED2A982FB8268D2ACA7E1A5F231BC7CA9F56FA5938B6E023E235F79D2D968819820FF43748E30D2704A628CA6343005CAECBEC286CC0B1D
md5: D11926F7633017CF9B6B7E45E2E4383D | sha1: 9C18AE4CB00BCAE544D33185A9B8531FAD347565 | sha256: 29FCBA44FFA75FB5D9C8E928E0FC38DECBE3381D2B29248CC65A476AFB16A592 | sha512: 6ED011E259C6F6227BC4DB6E3D51A47A41BE43083D2965090DFD57BDCD8D59C1BCBFE34B279B9586DC1CB75A7A0A545DB6EA701A7C5F15367D92E6DE52973609
md5: AB0F297EA7654BCAA9BEB7EB3BE9B30A | sha1: 6C9FE5435E0639F6FD25AC082A561D19EF0A33AB | sha256: 6657676BC7DCF6E6F675F6DF67417E7EADBEE7A70978EA71E864FC0A00A3DEB1 | sha512: 8B3B81306B024E83C29E6EA570F9DF1BAF85B24C7E9240A3F5F6F9A6B4D47A9407249FE9ECB9DFAB857275F2248D089916AA072BCA0B5807A01AB81643F4CBA7
md5: F351F7FABD3C17AB1330AB5B0F42C02F | sha1: E261BBFF6D92EB430D47A5088BEE259359E10717 | sha256: CD00472BA7D7E30D94542F535074C692AC456C4A3263E7BCE81C9B61E6981815 | sha512: F6867098A8C31D02AE3056BA55CDB31394297712F09A312558C3B34B10A181A7C26CDA821104CCDBDD243E3A2FEFEA221E2C269EE51CF1D83A756BBF93A31DEC
md5: 7C743B16F764B93A0DE2B8F858A40CAD | sha1: E35F16BF1266B97F4E525DB9A37AA4564687DA5C | sha256: 12F6F656D5E7FC892D708B4EDB42A6F23D7C6E60A3A05A32AC3332CF3821908F | sha512: 4738B3B9B6033ED10D29AAF0EE30B63DCF930038D20E16615934E9592ABF99FB01D8C9890B71670134C9F81D54918378C31040513CC99CD7BB25F3E524E20DEA
md5: 69B56F597CFD6A855207526F16F376F1 | sha1: 4A7EBB1C0C29CADB7EAF47A85B812DE22FDA6C34 | sha256: 5AD92D3ABD7DC3DF3F8DBEB8476655FACDF09E1E3C2378D0996B6C7582862C6D | sha512: F8D583B27108C2CFE02A24D1D4E8D507BC212B9B249E9E3B782683EAE65C962F277197E281C97612D1BE2BA5F065E6CBFF15C76643CB86752F3225BAE617AD6D
md5: EB6788420A54F93EFA4C8BD04B6C7447 | sha1: 7356F5603A834C3ACA109C919F72E3FF56A15AC5 | sha256: 18477D570602536C7E83D31FA90BD2301EC9EBE33CB542C93593E89D688F1CBE | sha512: 9C1615263FC7270C18A2868F5871C8391F8841EA1F2FD370E869D691DC80DBD56DE76F4D842BD00839E3A71B080509D56B3FF00327AEA168CCD4A5DBE4D1C69E
md5: 0CBA2613E6432EF208433BA7E303AA38 | sha1: E7521EE99895DAEF67689B84D41F22086D7FA6C2 | sha256: 771483C5E3505F2C96EAFAFE739B4C40AFC0DC9685E169DC8C71011586E94E6D | sha512: 96D4A7D1C115B0D3AB86D821066D7BBDDD10D05BC9CCE66AC85BB51F4AC8FDEA8F447DD449E982F79D2F65C01801A922A0C72682468C691F783EA68E0BA613E2
md5: A0EA7E7833CD4F7694A4913FCCB9AACF | sha1: B6CEC5803AC68546118B82E7A38AAC5C7ACA6F66 | sha256: FA3C85A89E94D85D2027AF98B8E587A247E625A2A9EECD4B69A5C49F141CB874 | sha512: 74A01F67DF7101A6826381FB08AD7E1AB7F5BDF55AAC14672F68FF82E09E4540A71F5A330CB2DC841D7C816EC5AAFBCFF27FF00C7C10EED844C857221C3C5212
md5: 15E8BD9BEB4A7B386965248FA8687B5D | sha1: 4C3D3334DF7444793F8159CC2AC43F53975FF21F | sha256: B70FE4C64E47E9EA9BA1D190F02533729C42D8112911F70861C27EA9D81E2F9B | sha512: 35F7B29ED196FBD84F70C718CC4D5D5EBBF5129A53C08C876B347238C531E31A8C8CABA64AEEF7D4273F1206E86740418A6836B18403F8FEA14C4CC99F42394A
md5: 5D4C39E309B7FF8AE806268D9D8946B4 | sha1: AA704725AA4ABCEEEDEEE2CEB80CA9187A00196A | sha256: BAAA8145646B504576D1814D7C38F561C9DB7EAEA01614450CF86C3227A0CF1F | sha512: 94376034527968F11E25B66D1AB45692CC845D43859EE6B70F37B602EE3BD1653CEBD29DF433DFF84B083310578C7537028BC88873DAB12AA04B05DE4C6FA611
md5: 8347585BF1AF548B34981E59DF588E26 | sha1: 285793872D1D4DBA1C8CFD18C9A074054F6419B1 | sha256: DD83700173499D9CAB29FD538C7842338719DD82F63A99D7704EC8E151B0E842 | sha512: 77B7B2CE966A4A0493F231BBB4822A3DEEEB2CF5C26253113A9A9EDF7BDBB67E37FE9494063443FE42F3431D7AE6B85129202D8802492E00BEEF78E457828A2A
md5: F262653B7299DEB41B0360213123CF94 | sha1: 1CD053CA61C612BF85071C5678067D32A6A1ADA5 | sha256: 6268AAAD8046CCD345B5AFB0F82155C33DF96265B03830FEAE9260724861E0C5 | sha512: 9B9948562605F622CEB7B1F3E0CBA0601948DDC79A4A321E5CF5DB39BB266AF360DB45A5A08E13D3EF059DDBBE07AB476AD911B7A2226D1853B2FB4C1876F43C
md5: 7DD033128AB3EA84D25874DC3809E851 | sha1: F106B9F5DD6201F6A0D92DB6F7F682CCC65BB6E1 | sha256: 883240645F4BCD1CD8A4627D9935523AB617707E0CEFA46450F52F320A87D6BF | sha512: 8C6FA05E8BAA78A6B57D4439E7C904442E0C967976439B241404D98823DC6BB6B22DF4909BD1B0C1E58C482832B230626855030E8D787A7B69904A07C8058F5B
md5: BBCAF7243315DD9EE25A54149A9F01F7 | sha1: D65F6FD9FBF60B7D0E6B5B78869EA49127A9E21A | sha256: E2F9467C4E1DD9B582CB655C73250699FBF0C93BE2E2F0188B79D690C60B725B | sha512: 9094B37FF2635964BF0C872199E2A31DF4B5B131C2DF7BFAF657E69B57A4700D1A719E64E8571915496C9FC34EB5E7E57F18380561164F1AA74FBA5214AC0D8C
md5: 7111CD8C7327C4700F06D82611D19CBB | sha1: F159483507CB4CC044B73811B37EBCB1F8FFCFAC | sha256: 655291C4800BFC65571169D7FF12E5041E8EE3F1A4393CE4E478AAB99605CBA5 | sha512: 2C1427A26918CF743792960F61BAE4970D728B8B4FF10596EA1A623ADBF402FA92584A584897C4F87A65EBD13C5B13B8CACC8514E86F13D645FAF613E07DFE6A
md5: 73E0F5FF9A2B5145F0064B113E11E88F | sha1: CD576EC09F7C9050559AD40CF0B32FBB0E5CA473 | sha256: 51652FED1FDCF27823768A2D1436183DE0AF6F583EDABF3E06952E765291728C | sha512: A921BCD6606D336AEECBBDC0BCA7B115606B80705502E92DF280349474C7DD25EA1A96E0BF07FE131E155A8D298D2DCEE1E267B564F89B33BE4BEE33437FC8B2
md5: D9489AF311CB685EFDB22CD79CD9E424 | sha1: 31FA7EC1BA02AD676B3FD32D803BD0D8395D0EA1 | sha256: 16D8DE916FDFC7D637B2F967C6D0A4F711ABACFB5AB3FEB853F20DBF36078F36 | sha512: 94F05D2E6B4B22FD5787A81355F7121C423A76C888ED7915349C2DE6E23C4BA165F66F2BF853745E16B24E4ECD63C9D17FF8667CBF9103E05B676D73E1DB6A25
md5: E72CB2EA2800AA2D613A09777AA4A6ED | sha1: FB4F5F327ECBF01149FEE96872B1F23B6CB16ECB | sha256: 071B1C605C61C1CDFDAB13EAC9C95DC53911763A692A318C844209B87B6A6828 | sha512: 97481FB5FA81B74875741DA54762619CAB9752494905F1E9B1A5EDD40818D3A9552074765024375F5DCC9E518D162DD97423A96CBBADE99DABCC7F78D2CA8C70
md5: 6A755E77283D1DF74BBA4CEA0772648D | sha1: DE84C58D4EA65C48BA784F875C461002D6341D39 | sha256: A96BE0A484DFDBC762DFB146FAB54CC3F329B91E8E4185FB8693D2496795E2E5 | sha512: F7E19790C8D97077BE1304A09864A536BABF82DD2879277E53AF96A8AD79FCEBE561BCF40AE98648257631DA6D0D0D471B0A2573E8D5BE2B7C08904309153EA7
md5: 757C8B7343898E1489B505EC676A7543 | sha1: 07BFFC373004EB7E8555B89C1FA73EE497BA6268 | sha256: 44AD9C1F469F84FCBD746E9DDE1231BB8C9AC44A11378C919043F8EEC6425EC8 | sha512: D00943AEECE28F140C1AA79658E2E3D1CA6699646255B34351E8BD4E0EBE9D1066DAF052F0E14967EF6C92870749B3656EF848A3F9D4746F1AB456B725FD29D6
md5: B6EAF4A73A0D34F9DE5F190C5B42BD52 | sha1: 2E550EAA172B9BF6F0AB46B8C53E075E90DB34EB | sha256: F043CF6931A817652B624A2DE6C8FDEBECDC92859E4F7EBC7BEFE17EA7833B2E | sha512: 431AAEBE40A564DD4D8C3EA51109F2A036CDBD772101460666ECE0F1C297208E06858D056C01E26C2F6167E1706F8FC1AF713591C9FE393329B28207E396FBBD
md5: 0BE92BE905AF42AD6C6E1D7976CC9005 | sha1: 0E96F083A03D18EFA8E32247EF341C2BF41C991D | sha256: 206F6CFDB0CC963FCB0A94A7B5DAA71B255280B76A22459F1B8F2DFD89CC4965 | sha512: 7025EC6A65CCBE50B0E897BAEB8CD51E1A79AE044DCAC190BE2946A94184CAA652BE1FE707FE3D3D61B001E411635718B8CB17687E81A42413A14850F3DB4CFD
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
012e38b00c1e01d751885a08eae1fb5820acc63bcb20ba94d2255d5f2096af30 *Fonts\BArabicStyle.ttf
3ade34b43f6cfcf5f7940ea5925c21d84e08772d76f47202199f34b825622bf4 *Fonts\BArash.ttf
1e0bc7449d60c4345ec00886d0c408c34e4b18b8fa1c354a59a79840585e115b *Fonts\BAria.ttf
23f3ba15600dd77b21a685ea03e97970c9ef36ea695ecec856fda90f4d1c7a0f *Fonts\BArshia.ttf
92c6b0fdd86f06c72a9bcc7f65109891fc76cb2b97418bd904b389c8e4b2a4e3 *Fonts\BAseman.ttf
e70fba7253fae2419451ece0c3ee8f3ce853b0233ddbf09448850607f273db84 *Fonts\BAsemanItalic.ttf
fc9da734dbc24f96fff1b1a47d787a1c16007da40597370e13fe7680d69647e0 *Fonts\BBadkonak.ttf
29580ccc26cd082b82a2d22f241d6e470e8d4e6b968098facfcba646a6770fc3 *Fonts\BBadr.ttf
f0cc42ad4eaedd915536be6d5761e24c6659a65e003b813cd671a15dd409a8bf *Fonts\BBadrBold.ttf
e7c21c69961f8e1b2a3f2a5c96f19867da12bc82e1e0073ed693d2dc1ae25104 *Fonts\BBaran.ttf
df5a6049f74c5078e96de507ae0646ce7370a30a7114fcd8404f4a00f04a196f *Fonts\BBaranItalic.ttf
08b5b6b760b6fe7dc6d9a65c4a82e0bb1c1cfb9054c8fae6b158d01c1f478e90 *Fonts\BBaranOutline.ttf
c6f7f04a65210f75fa1c7e9ac73dc2cbbfaca564c14e93996a2968e9aa08295e *Fonts\BBaranOutlineItalic.ttf
9a0423a1a0f9068f9d946758cf14ca400d6a3761c15129dc99189307eed60fd2 *Fonts\BBardiya.ttf
1772cb19dc0530984f470c8817e9cb3a0fc4e31cd6058b958f90810ba238a476 *Fonts\BBardiyaBold.ttf
7e11b7d54f70acacb38da0675626f71363e5124af9d9f3da4c19a6fe6d809858 *Fonts\BCheshmeh.ttf
0d1f6338cdfec5082bcbff93334eef0ce05bf3338f4911dd5dc7506027cae0a4 *Fonts\BCheshmehBold.ttf
5b7668237f655552a46808c7037097cd4ca7d0e30c21c4454079e2c6155b9993 *Fonts\BChini.ttf
764a79242b3db29b17904bbe6a625b7e098ce30a9c179c079427373319a51ccb *Fonts\BCompset.ttf
bf80e9a0d4614cf03a0519f714140410a27b561dd0d4a18951f6a6b07c4ad3ef *Fonts\BCompsetBold.ttf
bf11d8e0112098d8094c6bbd35ab0250f2029003654ec05d73fadd23396ee736 *Fonts\BDavat.ttf
42983740a01cae6ec2c12d03b68685e0940b772685c42d3b959873c26ffc44c0 *Fonts\BElham.ttf
b940bf3be56b710320f6ade7db2a3be6e6a1c527ffa7793c33deb414020d253a *Fonts\BElm.ttf
18866071b21e3daf037ccc53e4e70ccd61ebd8a7c47216c658bf21bacc4efefb *Fonts\BElmBorder.ttf
b1ce06d58cadadeb3c7218eb4679b38fb4c20126ed35d3feb289d1d21aa660b2 *Fonts\BElmItalic.ttf
be39d087e7c0adb95f8b6d9aec743cdd08b6a746f499907b32fc8fc25e16f8f2 *Fonts\BEsfehanBold.ttf
82e2400c43f43e9a09e15cc923e87ee4f0150e556164f9c9377c1b30e80c203a *Fonts\BFantezy.ttf
5ae5bb7e9aa39a2c00961ea7b8bd9a9b332ad86f2839ca1f9fa0405682a310bb *Fonts\BFarnaz.ttf
6e2441740991ad9cbbbf94d6379bd14bafad02de3d846e6fb183aa2e2b83bb93 *Fonts\BFerdosi.ttf
3035d84ea49930a5e8227d9dc18922f7ca0a06eba5947484631672c48ee30a39 *Fonts\BHaleh.ttf
be96b8b3bf1f2ea12bbc868da5ee281d269a9a637f4f0c52c6e06197b11a3672 *Fonts\BHalehBold.ttf
593cace71827d8f72e1bc9d14c11fbe1e8915076623b1d2488daf459e7c06404 *Fonts\BHamid.ttf
7ba53d72863f4f95f5624075f1044d0b5598f206a371e03a15075b7666e0115b *Fonts\BHelal.ttf
8b9d4b4b07296c3c147c5183ceb013c42a9e99fa3f468ad347e37896f8b9a7e6 *Fonts\BHoma.ttf
213edab8ba4d27f37acc69ab74259167bdc10ffbce3e6b2c25ac9dca120f50a6 *Fonts\BJadidBold.ttf
c102b0de1a2aab77d587329264874346749b94b0562ce3e8186a6fc9de6bcc88 *Fonts\BJalal.ttf
bea24025fcd0e2f17f1d1b2fd7459fa948695535ee9fa786929ac518467bd358 *Fonts\BJalalBold.ttf
9046f19daab3a6a159ed56eb5de719ae749a9510f7599a824897358a881beee2 *Fonts\BJohar.ttf
25b6ae2ab5ea60b9e3d20b22eb5e56a1dd447b52e30c323d219cbcf9f45c1b1d *Fonts\BKaj.ttf
f9ad7c17c2fde838757a49aff8babf1fef8639c0dd80caaa2f87a9fd476eee75 *Fonts\BKamran.ttf
f8d187e12761df982cc8a3b92269212606dfa1deaea9f4c542541286c9e10f8d *Fonts\BKamranBold.ttf
d98de4cce63891f774f11c5fb8c2574e009ef889f8eebaff605a35cd09bc6ead *Fonts\BKamranOutline.ttf
5b589edb67c878d4b33e066c0a972c1e596a6f026e4d2634cbb7d1095a621ba3 *Fonts\BKarim.ttf
f4d8c91dca64ac8ddba8bfafbae9da3f1ce59515821ea41e4fcb5cd597cca298 *Fonts\BKarimBold.ttf
3ee0e0e966dc88e5a7831e4450c4db3ffa8ceba7736d8d344a326811474fdb71 *Fonts\BKaveh.ttf
bf9390de2c9773ab1512f96076c948a34ccf1fd16263933aa44dc105e901922f *Fonts\BKidnap.ttf
5fd93a626bda3e75f0ee6ce429f15acbd32cc5278b1d1d6fcf25a64ec693efc4 *Fonts\BKoodakBold.ttf
e0cc7b6d869673fb43cdd5fc6a47b3a2f63918e25363899e78bc6d4c0d34bc6e *Fonts\BKoodakOutline.ttf
a45e071546493544e15205b366b6d43c64f62e84b0dd6e2883773afc4f451da3 *Fonts\BKourosh.ttf
c9c262f1ec2c8ff05d78fc1c964698ecc9cc1b2e3553f7e8bda8559ffc1333c2 *Fonts\BLotus.ttf
192cc941b0ca1d4bd2dd05a9efe6494ac50df0ebdb499cc420e6bd8198340bbd *Fonts\BLotusBold.ttf
9c2568cf0154c104ed5a0d446a868eac93395c10b372d9534c2327f7ed86be27 *Fonts\BMah.ttf
361b40d03219b9756aad4017153b19998bc51082d416978c2b97eae8236ceada *Fonts\BMahsa.ttf
3c4a890f67c60572c096f2ef806aea0178882b1b89d057bf157f1e51c7094219 *Fonts\BMajidShadow.ttf
48bb645bccb4d29670289f9f01de67da418fb227dcb266828526e29503a8fd52 *Fonts\BMashhad.ttf
36d1924b99fc5a0d0f32b15b4d2db8eb67b385be1baa69d1665af535e4035329 *Fonts\BMashhadBold.ttf
a60a7d7b2ddcc4390afb3af266e3986fe50ddf3a2b683d557ec79e03d2fc8775 *Fonts\BMashhadBoldItalic.ttf
1b6de9f510dcaa74b6c31e585b623981b8b7931fc5b60ca6324cbbba9e8e1321 *Fonts\BMashhadItalic.ttf
42d173e81687179e357852e19e095cbb6a806a5f748451222e1ebcea33fc5085 *Fonts\BMasjed.ttf
bdce83ce5df50af0f8a21944084dad3f886f3eb53a094bbc5e41798b28017886 *Fonts\BMedad.ttf
9736c01367e93d925854e0e78c05ed2a23ccd21a389ef8d58932ead1bbd03b1c *Fonts\BMehrBold.ttf
5ca115be76d772816fdce608b3ddb9f548d28f0fe08a550c5c9e7b6e40ef3109 *Fonts\BMitra.ttf
85a4ea933672892c3d03cd7c590cc1b3809677be9f42a6f12c5532c89a3b0de4 *Fonts\BMitraBold.ttf
61227ebdd338374abbe25fcdcb434168ed1e415aa4c6cd5e8b17d032592a04b9 *Fonts\BMoj.ttf
116a1ee8f052d02363f6216069cb595a8248a654fdfb5a5ee3c54f9c7f2d800a *Fonts\BMorvarid.ttf
5f3938eaa17a4758c925eac8a3bc6aa0b79395f1ad54f97c955f9b23dd817531 *Fonts\BNarenj.ttf
12fd767c94e161b64e6629976cc5ed62d8e81d217b1c2d8fbe5817db5e18029e *Fonts\BNarm.ttf
563076b155ef9d69c807553817e84c311adca4da3cd1da12819535d256c42c2c *Fonts\BNasimBold.ttf
7ae508e94fbbf35f1a43f7a93d125f003debcf0e0af64805309f3a3ebac4188c *Fonts\BNazanin.ttf
2293311d5738f48bf7dbf3bb38e1b7fa1475e955893e0b026258493ac1d4658c *Fonts\BNazaninBold.ttf
772ed0adc0be930d5833212417f7784ff76f1eaea41e19227ac283827368e7b6 *Fonts\BNazaninOutline.ttf
bc0521fdf7cc96fe6eb3b22bf192cc5205094cee35466dcc1b7f01232798865f *Fonts\BNikiBorder.ttf
5982e4f21e0d1ef8a5e9e84fbe96081e5c7ab8e8332cb0345dfb43d79574f0b9 *Fonts\BNikiBorderItalic.ttf
9df2f3ba83b4c8fa1e5893fd0f71cac4b45d65fccf97984c031cfa029e3313a6 *Fonts\BNikiOutline.ttf
0f8a4dc2b8e502ab46710e302373a5673802a8e2de14363399450bdd5a660363 *Fonts\BNikiOutlineItalic.ttf
ef0c5e19f98245ecc8c8e9762412324a46ded11cb91b1bdd95ef69687cb4189f *Fonts\BNikiShadow.ttf
cbb656d72a4d643f0e450f95a94917be889d49d52106d25f96b04b26e458b9da *Fonts\BNikiShadowItalic.ttf
8fb6a147e56ea40b1d191648e78ce72b5c2c15c79bcfd390fbc7be5ff683dd74 *Fonts\BNikoo.ttf
2285708847cab44614bc95cd8b7679d01f7a7396416e10192f553ba668a5b086 *Fonts\BNikooItalic.ttf
13fb84f4d9799c06b7f773b6ee60b74038b7034ebab1ee0fdf97263663fd107d *Fonts\BPaatch.ttf
89b96133a2f09a4fcd7e47d32da9bca749fd04c622678a958db8f1a3df84c854 *Fonts\BPaatchBold.ttf
1ab97f7f651f8f5edc8765a02ef760abf578ff3a6874e11a69e42f470f3cde77 *Fonts\BRose.ttf
f8ef080381bacabf1da3fe20e937cebb73b270bd1c6299e68e803de6406833ed *Fonts\BRoya.ttf
9b2ceb7ce3c44ff7faad7873bfc56f9b70963f0cdd545b60e91f8db89edec5d7 *Fonts\BRoyaBold.ttf
7b1ca1a21beeff248c58fee8f9932c2bb3618ea9c56cd99b50e091fd14cd1570 *Fonts\BSahar.ttf
42900dd9834cf13b43085ab8c90e7d5f1230340df97ab8e1f5923f32f3d63580 *Fonts\BSahra.ttf
230b2782d96b5072dcb367b425411f4d77eef7a21d022771eca574a2808f9d0a *Fonts\BSara.ttf
028afd44d4f737f59749fcddd488875f3bf619e23b8cf2016fc8ac1f73482767 *Fonts\BSepideh.ttf
26c67c05bf9e3d05e095d69980337b5fdcf1424acc4e6caac5276c9ff1f51273 *Fonts\BSepidehOutline.ttf
34d10fe9310d023c4149a7bc7f7c051c9bb8326d98b61ceb299c0c0eeef80042 *Fonts\BSetareh.ttf
3efa4f50e9597226e1ebeb244f5afbe1a7d4463f3e2e8a809823c413532f5218 *Fonts\BSetarehBold.ttf
c733407bd40da88ebecf1297c7a9256b1fe20291938a9c444850689e29fc9abe *Fonts\BShadi.ttf
9a4ee26c844ff0ddd4df0a604bfd00bae132f730331a10b69a128aa3b057d4be *Fonts\BShiraz.ttf
18abbc06768bee0efbbf310e725e27ca64775a7ea8acdd83f20cb14e4fafb9a8 *Fonts\BShirazItalic.ttf
1bb7668280bef84e5b8749e6aaedc39b52e296a1f4d6cac9e6d6579599ee3830 *Fonts\BSiavash.ttf
2466e395667cc969d9def55b44f9099e567295356adeb013130887687a662bb9 *Fonts\BSinaBold.ttf
fbb8f46af514f9ff312fa34c2a6a2f85c800113b9f938955cd7ec889b82d141b *Fonts\BSooreh.ttf
24a3d352b682b08eac5afe04e4c1835cb101e1a08e21320e52d4037dfc754d9f *Fonts\BSoorehBold.ttf
29fcba44ffa75fb5d9c8e928e0fc38decbe3381d2b29248cc65a476afb16a592 *Fonts\BSorkhpust.ttf
6657676bc7dcf6e6f675f6df67417e7eadbee7a70978ea71e864fc0a00a3deb1 *Fonts\BTabassom.ttf
cd00472ba7d7e30d94542f535074c692ac456c4a3263e7bce81c9b61e6981815 *Fonts\BTanab.ttf
12f6f656d5e7fc892d708b4edb42a6f23d7c6e60a3a05a32ac3332cf3821908f *Fonts\BTawfigOutline.ttf
5ad92d3abd7dc3df3f8dbeb8476655facdf09e1e3c2378d0996b6c7582862c6d *Fonts\BTehran.ttf
18477d570602536c7e83d31fa90bd2301ec9ebe33cb542c93593e89d688f1cbe *Fonts\BTehranItalic.ttf
771483c5e3505f2c96eafafe739b4c40afc0dc9685e169dc8c71011586e94e6d *Fonts\BTir.ttf
fa3c85a89e94d85d2027af98b8e587a247e625a2a9eecd4b69a5c49f141cb874 *Fonts\BTitrBold.ttf
b70fe4c64e47e9ea9ba1d190f02533729c42d8112911f70861c27ea9d81e2f9b *Fonts\BTraffic.ttf
baaa8145646b504576d1814d7c38f561c9db7eaea01614450cf86c3227a0cf1f *Fonts\BTrafficBold.ttf
dd83700173499d9cab29fd538c7842338719dd82f63a99d7704ec8e151b0e842 *Fonts\BVahidBold.ttf
6268aaad8046ccd345b5afb0f82155c33df96265b03830feae9260724861e0c5 *Fonts\BVosta.ttf
883240645f4bcd1cd8a4627d9935523ab617707e0cefa46450f52f320a87d6bf *Fonts\BVostaItalic.ttf
e2f9467c4e1dd9b582cb655c73250699fbf0c93be2e2f0188b79d690c60b725b *Fonts\BYagut.ttf
655291c4800bfc65571169d7ff12e5041e8ee3f1a4393ce4e478aab99605cba5 *Fonts\BYagutBold.ttf
51652fed1fdcf27823768a2d1436183de0af6f583edabf3e06952e765291728c *Fonts\BYas.ttf
16d8de916fdfc7d637b2f967c6d0a4f711abacfb5ab3feb853f20dbf36078f36 *Fonts\BYasBold.ttf
071b1c605c61c1cdfdab13eac9c95dc53911763a692a318c844209b87b6a6828 *Fonts\BYekan.ttf
a96be0a484dfdbc762dfb146fab54cc3f329b91e8e4185fb8693d2496795e2e5 *Fonts\BZaman.ttf
44ad9c1f469f84fcbd746e9dde1231bb8c9ac44a11378c919043f8eec6425ec8 *Fonts\BZar.ttf
f043cf6931a817652b624a2de6c8fdebecdc92859e4f7ebc7befe17ea7833b2e *Fonts\BZarBold.ttf
206f6cfdb0cc963fcb0a94a7b5daa71b255280b76a22459f1b8f2dfd89cc4965 *Fonts\BZiba.ttf
SHA-256 can also be obtained in these steps:
1. Go to homepage.
2. Under section “Download cfr”, find link with version number.
3. Download the file and verify its checksum.
Log in or click on link to see number of positives.
- borna-fonts.2.1.nupkg (f13d47feebb4) - ## / 60
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.
Copyright © 2021 Bornaray co.
-
- chocolatey-font-helpers.extension (≥ 0.0.3.1)
Ground Rules:
- This discussion is only about Borna Fonts Pack and the Borna Fonts Pack package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Borna Fonts Pack, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.