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:
931,433
Downloads of v 85.0.4341.75:
664
Last Update:
20 Apr 2022
Package Maintainer(s):
Software Author(s):
- Opera
Tags:
browser opera cross-platform internet admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Opera
This is not the latest version of Opera available.
- 1
- 2
- 3
85.0.4341.75 | Updated: 20 Apr 2022
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
931,433
Downloads of v 85.0.4341.75:
664
Maintainer(s):
Software Author(s):
- Opera
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
Opera
85.0.4341.75
This is not the latest version of Opera available.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Opera, run the following command from the command line or from PowerShell:
To upgrade Opera, run the following command from the command line or from PowerShell:
To uninstall Opera, 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 opera --internalize --version=85.0.4341.75 --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 opera -y --source="'INTERNAL REPO URL'" --version="'85.0.4341.75'" [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 opera -y --source="'INTERNAL REPO URL'" --version="'85.0.4341.75'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install opera
win_chocolatey:
name: opera
version: '85.0.4341.75'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'opera' do
action :install
source 'INTERNAL REPO URL'
version '85.0.4341.75'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller opera
{
Name = "opera"
Version = "85.0.4341.75"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'opera':
ensure => '85.0.4341.75',
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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 20 Apr 2022.
The Opera web browser makes the Web fast and fun, giving you a better web browser experience on any computer.
Parameters
/NoDesktopShortcut
- Do not create desktop shortcut for Opera/NoTaskbarShortcut
- Do not pin Opera to taskbar
These parameters can be passed to the installer with the use of --params
.
For example: --params '"/NoDesktopShortcut /NoTaskbarShortcut"'
$ErrorActionPreference = 'Stop'
$toolsPath = (Split-Path -Parent $MyInvocation.MyCommand.Definition)
. "$toolsPath\helpers.ps1"
$pp = Get-PackageParameters
$parameters += if ($pp.NoDesktopShortcut) { " /desktopshortcut=0"; Write-Host "Desktop shortcut won't be created" }
$parameters += if ($pp.NoTaskbarShortcut) { " /pintotaskbar=0"; Write-Host "Opera won't be pinned to taskbar" }
$packageArgs = @{
packageName = $env:ChocolateyPackageName
fileType = 'exe'
url = 'https://get.geo.opera.com/pub/opera/desktop/85.0.4341.75/win/Opera_85.0.4341.75_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera/desktop/85.0.4341.75/win/Opera_85.0.4341.75_Setup_x64.exe'
checksum = '9050b60a98911a917de2fb94e5484706bcd62887ca2d8ba199832ecbac8fd9d9'
checksum64 = '4f3de0ea960ff824bbb55a7e1bc1992eaaac744e6443f951389b04e6e205220f'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera=0 /setdefaultbrowser=0 /allusers=1' + $parameters
validExitCodes = @(0)
}
$version = '85.0.4341.75'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
}
else {
Install-ChocolateyPackage @packageArgs
}
$ErrorActionPreference = 'Stop'
$packageName = $env:chocolateyPackageName
$softwareNamePattern = 'Opera*'
[array] $key = Get-UninstallRegistryKey $softwareNamePattern
if ($key.Count -eq 1) {
$key | ForEach-Object {
$packageArgs = @{
packageName = $packageName
silentArgs = "/uninstall /silent"
fileType = 'EXE'
validExitCodes = @(0)
file = $_.UninstallString.replace(' /uninstall', '').trim('"')
}
Uninstall-ChocolateyPackage @packageArgs
}
}
elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
}
elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert package maintainer the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
function IsVersionAlreadyInstalled {
param($version)
if ($env:ChocolateyForce ) { return $false }
[array]$keys = Get-UninstallRegistryKey -SoftwareName "Opera*" -wa 0 | Where-Object { $_.DisplayVersion -and $_.DisplayVersion -eq $version }
return $keys.Count -gt 0
}
Log in or click on link to see number of positives.
- Opera.85.0.4341.75.nupkg (cef2d4d7eb81) - ## / 62
- Opera_85.0.4341.75_Setup_x64.exe (4f3de0ea960f) - ## / 63
- Opera_85.0.4341.75_Setup.exe (9050b60a9891) - ## / 63
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Opera 88.0.4412.53 | 3083 | Thursday, June 23, 2022 | Approved | |
Opera 88.0.4412.40 | 4227 | Monday, June 13, 2022 | Approved | |
Opera 88.0.4412.27 | 2659 | Wednesday, June 8, 2022 | Approved | |
Opera 87.0.4390.45 | 2940 | Thursday, June 2, 2022 | Approved | |
Opera 87.0.4390.36 | 3253 | Thursday, May 26, 2022 | Approved | |
Opera 87.0.4390.25 | 3930 | Tuesday, May 17, 2022 | Approved | |
Opera 86.0.4363.59 | 3646 | Tuesday, May 10, 2022 | Approved | |
Opera 86.0.4363.50 | 2760 | Thursday, May 5, 2022 | Approved | |
Opera 86.0.4363.32 | 3886 | Wednesday, April 27, 2022 | Approved | |
Opera 86.0.4363.23 | 3289 | Wednesday, April 20, 2022 | Approved | |
Opera 85.0.4341.75 | 664 | Wednesday, April 20, 2022 | Approved | |
Opera 85.0.4341.60 | 5044 | Thursday, April 7, 2022 | Approved | |
Opera 85.0.4341.47 | 2885 | Friday, April 1, 2022 | Approved | |
Opera 85.0.4341.39 | 191 | Thursday, March 31, 2022 | Approved | |
Opera 85.0.4341.28 | 2874 | Tuesday, March 29, 2022 | Approved | |
Opera 85.0.4341.18 | 3148 | Wednesday, March 23, 2022 | Approved | |
Opera 84.0.4316.42 | 3768 | Thursday, March 17, 2022 | Approved | |
Opera 84.0.4316.31 | 5577 | Thursday, March 3, 2022 | Approved | |
Opera 84.0.4316.21 | 3342 | Thursday, February 24, 2022 | Approved | |
Opera 84.0.4316.14 | 4076 | Wednesday, February 16, 2022 | Approved | |
Opera 83.0.4254.62 | 1390 | Tuesday, February 15, 2022 | Approved | |
Opera 83.0.4254.54 | 3432 | Wednesday, February 9, 2022 | Approved | |
Opera 83.0.4254.27 | 6305 | Wednesday, January 26, 2022 | Approved | |
Opera 83.0.4254.19 | 3605 | Wednesday, January 19, 2022 | Approved | |
Opera 82.0.4227.58 | 3376 | Wednesday, January 12, 2022 | Approved | |
Opera 82.0.4227.43 | 6851 | Tuesday, December 21, 2021 | Approved | |
Opera 82.0.4227.33 | 3530 | Tuesday, December 14, 2021 | Approved | |
Opera 82.0.4227.23 | 4862 | Thursday, December 2, 2021 | Approved | |
Opera 81.0.4196.60 | 3792 | Tuesday, November 23, 2021 | Approved | |
Opera 81.0.4196.54 | 3056 | Wednesday, November 17, 2021 | Approved | |
Opera 81.0.4196.37 | 4069 | Tuesday, November 9, 2021 | Approved | |
Opera 81.0.4196.31 | 3607 | Thursday, November 4, 2021 | Approved | |
Opera 80.0.4170.72 | 3957 | Wednesday, October 27, 2021 | Approved | |
Opera 80.0.4170.63 | 3874 | Wednesday, October 20, 2021 | Approved | |
Opera 80.0.4170.40 | 3900 | Thursday, October 14, 2021 | Approved | |
Opera 80.0.4170.16 | 4867 | Tuesday, October 5, 2021 | Approved | |
Opera 79.0.4143.72 | 4503 | Tuesday, September 28, 2021 | Approved | |
Opera 79.0.4143.66 | 2570 | Friday, September 24, 2021 | Approved | |
Opera 79.0.4143.56 | 1452 | Thursday, September 23, 2021 | Approved | |
Opera 79.0.4143.50 | 1631 | Tuesday, September 21, 2021 | Approved | |
Opera 79.0.4143.22 | 4035 | Tuesday, September 14, 2021 | Approved | |
Opera 78.0.4093.184 | 6846 | Wednesday, August 25, 2021 | Approved | |
Opera 78.0.4093.147 | 5177 | Thursday, August 12, 2021 | Approved | |
Opera 78.0.4093.112 | 3441 | Tuesday, August 3, 2021 | Approved | |
Opera 77.0.4054.277 | 4662 | Wednesday, July 21, 2021 | Approved | |
Opera 77.0.4054.254 | 3013 | Wednesday, July 14, 2021 | Approved | |
Opera 77.0.4054.203 | 2951 | Wednesday, July 7, 2021 | Approved | |
Opera 77.0.4054.146 | 4263 | Thursday, June 24, 2021 | Approved | |
Opera 77.0.4054.90 | 25366 | Thursday, June 17, 2021 | Approved | |
Opera 77.0.4054.80 | 2224 | Tuesday, June 15, 2021 | Approved | |
Opera 77.0.4054.64 | 2639 | Thursday, June 10, 2021 | Approved | |
Opera 77.0.4054.60 | 1476 | Wednesday, June 9, 2021 | Approved | |
Opera 76.0.4017.177 | 3222 | Wednesday, June 2, 2021 | Approved | |
Opera 76.0.4017.175 | 1314 | Tuesday, June 1, 2021 | Approved | |
Opera 76.0.4017.154 | 2879 | Wednesday, May 26, 2021 | Approved | |
Opera 76.0.4017.123 | 5768 | Wednesday, May 12, 2021 | Approved | |
Opera 76.0.4017.107 | 3175 | Thursday, May 6, 2021 | Approved | |
Opera 76.0.4017.94 | 3594 | Wednesday, April 28, 2021 | Approved | |
Opera 75.0.3969.243 | 2004 | Monday, April 26, 2021 | Approved | |
Opera 75.0.3969.218 | 3922 | Tuesday, April 20, 2021 | Approved | |
Opera 75.0.3969.171 | 3049 | Tuesday, April 13, 2021 | Approved | |
Opera 75.0.3969.149 | 4305 | Friday, April 2, 2021 | Approved | |
Opera 74.0.3911.232 | 6184 | Thursday, March 18, 2021 | Approved | |
Opera 74.0.3911.218 | 3541 | Thursday, March 11, 2021 | Approved | |
Opera 74.0.3911.203 | 3697 | Thursday, March 4, 2021 | Approved | |
Opera 74.0.3911.160 | 4578 | Monday, February 22, 2021 | Approved | |
Opera 74.0.3911.154 | 43 | Friday, February 19, 2021 | Approved | |
Opera 74.0.3911.144 | 2284 | Thursday, February 18, 2021 | Approved | |
Opera 74.0.3911.139 | 1320 | Wednesday, February 17, 2021 | Approved | |
Opera 74.0.3911.107 | 3484 | Tuesday, February 9, 2021 | Approved | |
Opera 74.0.3911.75 | 3430 | Wednesday, February 3, 2021 | Approved | |
Opera 73.0.3856.344 | 6288 | Thursday, January 14, 2021 | Approved | |
Opera 73.0.3856.329 | 4230 | Tuesday, January 5, 2021 | Approved | |
Opera 73.0.3856.284 | 5417 | Wednesday, December 16, 2020 | Approved | |
Opera 73.0.3856.257 | 3388 | Wednesday, December 9, 2020 | Approved | |
Opera 72.0.3815.400 | 4678 | Wednesday, November 25, 2020 | Approved | |
Opera 72.0.3815.378 | 2555 | Wednesday, November 18, 2020 | Approved | |
Opera 72.0.3815.371 | 532 | Wednesday, November 18, 2020 | Approved | |
Opera 72.0.3815.320 | 4101 | Tuesday, November 10, 2020 | Approved | |
Opera 72.0.3815.211 | 1262 | Monday, November 9, 2020 | Approved | |
Opera 72.0.3815.207 | 2436 | Thursday, November 5, 2020 | Approved | |
Opera 72.0.3815.200 | 905 | Wednesday, November 4, 2020 | Approved | |
Opera 72.0.3815.186 | 2957 | Thursday, October 29, 2020 | Approved | |
Opera 72.0.3815.148 | 3606 | Wednesday, October 21, 2020 | Approved | |
Opera 71.0.3770.284 | 1202 | Tuesday, October 20, 2020 | Approved | |
Opera 71.0.3770.271 | 2143 | Wednesday, October 14, 2020 | Approved | |
Opera 71.0.3770.228 | 4011 | Tuesday, October 6, 2020 | Approved | |
Opera 71.0.3770.198 | 3481 | Tuesday, September 29, 2020 | Approved | |
Opera 71.0.3770.171 | 2738 | Wednesday, September 23, 2020 | Approved | |
Opera 71.0.3770.148 | 3460 | Wednesday, September 16, 2020 | Approved | |
Opera 70.0.3728.189 | 834 | Tuesday, September 15, 2020 | Approved | |
Opera 70.0.3728.178 | 3460 | Wednesday, September 9, 2020 | Approved | |
Opera 70.0.3728.154 | 6234 | Wednesday, September 2, 2020 | Approved | |
Opera 70.0.3728.144 | 2092 | Monday, August 31, 2020 | Approved | |
Opera 70.0.3728.133 | 3156 | Tuesday, August 25, 2020 | Approved | |
Opera 70.0.3728.119 | 3700 | Tuesday, August 18, 2020 | Approved | |
Opera 70.0.3728.106 | 3426 | Tuesday, August 11, 2020 | Approved | |
Opera 70.0.3728.95 | 1937 | Saturday, August 8, 2020 | Approved | |
Opera 70.0.3728.71 | 4002 | Tuesday, July 28, 2020 | Approved | |
Opera 69.0.3686.95 | 1424 | Monday, July 27, 2020 | Approved | |
Opera 69.0.3686.77 | 4420 | Wednesday, July 15, 2020 | Approved | |
Opera 69.0.3686.57 | 3185 | Wednesday, July 8, 2020 | Approved | |
Opera 69.0.3686.49 | 2862 | Thursday, July 2, 2020 | Approved | |
Opera 69.0.3686.36 | 3606 | Wednesday, June 24, 2020 | Approved | |
Opera 68.0.3618.173 | 2678 | Thursday, June 18, 2020 | Approved | |
Opera 68.0.3618.165 | 3395 | Wednesday, June 10, 2020 | Approved | |
Opera 68.0.3618.125 | 5840 | Tuesday, May 19, 2020 | Approved | |
Opera 68.0.3618.104 | 3503 | Wednesday, May 13, 2020 | Approved | |
Opera 68.0.3618.63 | 4499 | Wednesday, April 29, 2020 | Approved | |
Opera 68.0.3618.56 | 2676 | Friday, April 24, 2020 | Approved | |
Opera 68.0.3618.46 | 2184 | Wednesday, April 22, 2020 | Approved | |
Opera 67.0.3575.137 | 4877 | Wednesday, April 8, 2020 | Approved | |
Opera 67.0.3575.115 | 4054 | Friday, March 27, 2020 | Approved | |
Opera 67.0.3575.97 | 3848 | Thursday, March 19, 2020 | Approved | |
Opera 67.0.3575.79 | 1792 | Thursday, March 12, 2020 | Approved | |
Opera 67.0.3575.53 | 109 | Tuesday, March 3, 2020 | Approved | |
Opera 67.0.3575.31 | 6647 | Tuesday, February 25, 2020 | Approved | |
Opera 66.0.3515.115 | 1405 | Monday, February 24, 2020 | Approved | |
Opera 66.0.3515.103 | 6345 | Tuesday, February 18, 2020 | Approved | |
Opera 66.0.3515.95 | 3046 | Thursday, February 13, 2020 | Approved | |
Opera 66.0.3515.60 | 5028 | Thursday, January 30, 2020 | Approved | |
Opera 66.0.3515.44 | 3639 | Wednesday, January 22, 2020 | Approved | |
Opera 66.0.3515.36 | 4066 | Thursday, January 16, 2020 | Approved | |
Opera 66.0.3515.27 | 4397 | Wednesday, January 8, 2020 | Approved | |
Opera 65.0.3467.78 | 4943 | Thursday, December 19, 2019 | Approved | |
Opera 65.0.3467.72 | 3654 | Thursday, December 12, 2019 | Approved | |
Opera 65.0.3467.69 | 2072 | Tuesday, December 10, 2019 | Approved | |
Opera 65.0.3467.62 | 138 | Wednesday, December 4, 2019 | Approved | |
Opera 65.0.3467.48 | 6444 | Wednesday, November 20, 2019 | Approved | |
Opera 65.0.3467.42 | 2952 | Friday, November 15, 2019 | Approved | |
Opera 65.0.3467.38 | 1542 | Thursday, November 14, 2019 | Approved | |
Opera 64.0.3417.92 | 3846 | Tuesday, November 5, 2019 | Approved | |
Opera 64.0.3417.83 | 3080 | Wednesday, October 30, 2019 | Approved | |
Opera 64.0.3417.73 | 3213 | Wednesday, October 23, 2019 | Approved | |
Opera 64.0.3417.61 | 3316 | Wednesday, October 16, 2019 | Approved | |
Opera 64.0.3417.54 | 3369 | Wednesday, October 9, 2019 | Approved | |
Opera 64.0.3417.47 | 1520 | Tuesday, October 8, 2019 | Approved | |
Opera 63.0.3368.71 | 7219 | Tuesday, September 3, 2019 | Approved | |
Opera 63.0.3368.66 | 1216 | Monday, September 2, 2019 | Approved | |
Opera 63.0.3368.53 | 3333 | Tuesday, August 27, 2019 | Approved | |
Opera 63.0.3368.43 | 2724 | Thursday, August 22, 2019 | Approved | |
Opera 63.0.3368.35 | 1792 | Tuesday, August 20, 2019 | Approved | |
Opera 62.0.3331.99 | 6233 | Wednesday, July 24, 2019 | Approved | |
Opera 62.0.3331.72 | 2978 | Friday, July 12, 2019 | Approved | |
Opera 62.0.3331.66 | 2604 | Wednesday, July 10, 2019 | Approved | |
Opera 62.0.3331.43 | 2968 | Wednesday, July 3, 2019 | Approved | |
Opera 62.0.3331.18 | 3024 | Thursday, June 27, 2019 | Approved | |
Opera 60.0.3255.151 | 6472 | Wednesday, June 5, 2019 | Approved | |
Opera 60.0.3255.109 | 4375 | Friday, May 24, 2019 | Approved | |
Opera 60.0.3255.95 | 2695 | Saturday, May 18, 2019 | Approved | |
Opera 60.0.3255.84 | 2996 | Friday, May 10, 2019 | Approved | |
Opera 60.0.3255.70 | 4502 | Friday, April 26, 2019 | Approved | |
Opera 60.0.3255.59 | 2832 | Sunday, April 21, 2019 | Approved | |
Opera 60.0.3255.56 | 2309 | Thursday, April 18, 2019 | Approved | |
Opera 60.0.3255.27 | 3517 | Tuesday, April 9, 2019 | Approved | |
Opera 58.0.3135.127 | 4191 | Thursday, March 28, 2019 | Approved | |
Opera 58.0.3135.118 | 2883 | Friday, March 22, 2019 | Approved | |
Opera 58.0.3135.117 | 1527 | Thursday, March 21, 2019 | Approved | |
Opera 58.0.3135.107 | 3417 | Thursday, March 14, 2019 | Approved | |
Opera 58.0.3135.90 | 3318 | Thursday, March 7, 2019 | Approved | |
Opera 58.0.3135.79 | 3666 | Tuesday, February 26, 2019 | Approved | |
Opera 58.0.3135.68 | 3226 | Wednesday, February 20, 2019 | Approved | |
Opera 58.0.3135.65 | 3651 | Tuesday, February 12, 2019 | Approved | |
Opera 58.0.3135.53 | 4286 | Wednesday, January 30, 2019 | Approved | |
Opera 58.0.3135.47 | 3212 | Wednesday, January 23, 2019 | Approved | |
Opera 57.0.3098.116 | 4333 | Wednesday, January 9, 2019 | Approved | |
Opera 57.0.3098.110 | 2658 | Thursday, January 3, 2019 | Approved | |
Opera 57.0.3098.106 | 3346 | Wednesday, December 19, 2018 | Approved | |
Opera 57.0.3098.102 | 2656 | Thursday, December 13, 2018 | Approved | |
Opera 57.0.3098.91 | 2658 | Thursday, December 6, 2018 | Approved | |
Opera 57.0.3098.76 | 3197 | Wednesday, November 28, 2018 | Approved | |
Opera 56.0.3051.116 | 1680 | Monday, November 26, 2018 | Approved | |
Opera 56.0.3051.104 | 3838 | Wednesday, November 14, 2018 | Approved | |
Opera 56.0.3051.99 | 3341 | Tuesday, November 6, 2018 | Approved | |
Opera 56.0.3051.88 | 4239 | Monday, October 29, 2018 | Approved | |
Opera 56.0.3051.52 | 4118 | Wednesday, October 17, 2018 | Approved | |
Opera 56.0.3051.36 | 5206 | Tuesday, October 2, 2018 | Approved | |
Opera 56.0.3051.31 | 3214 | Tuesday, September 25, 2018 | Approved | |
Opera 55.0.2994.61 | 3948 | Thursday, September 13, 2018 | Approved | |
Opera 55.0.2994.59 | 1389 | Wednesday, September 12, 2018 | Approved | |
Opera 55.0.2994.56 | 2468 | Thursday, September 6, 2018 | Approved | |
Opera 55.0.2994.44 | 3373 | Thursday, August 23, 2018 | Approved | |
Opera 55.0.2994.37 | 2782 | Thursday, August 16, 2018 | Approved | |
Opera 54.0.2952.71 | 3026 | Tuesday, August 7, 2018 | Approved | |
Opera 54.0.2952.64 | 3048 | Wednesday, July 25, 2018 | Approved | |
Opera 54.0.2952.60 | 2515 | Thursday, July 19, 2018 | Approved | |
Opera 54.0.2952.54 | 3883 | Wednesday, July 11, 2018 | Approved | |
Opera 54.0.2952.51 | 3080 | Friday, July 6, 2018 | Approved | |
Opera 54.0.2952.46 | 1908 | Thursday, July 5, 2018 | Approved | |
Opera 54.0.2952.41 | 3191 | Thursday, June 28, 2018 | Approved | |
Opera 53.0.2907.110 | 1056 | Tuesday, June 26, 2018 | Approved | |
Opera 53.0.2907.106 | 2188 | Thursday, June 21, 2018 | Approved | |
Opera 53.0.2907.99 | 2821 | Tuesday, June 12, 2018 | Approved | |
Opera 53.0.2907.88 | 12921 | Tuesday, June 5, 2018 | Approved | |
Opera 53.0.2907.68 | 3757 | Wednesday, May 23, 2018 | Approved | |
Opera 53.0.2907.57 | 3151 | Wednesday, May 16, 2018 | Approved | |
Opera 53.0.2907.37 | 2693 | Thursday, May 10, 2018 | Approved | |
Opera 52.0.2871.99 | 3247 | Thursday, April 26, 2018 | Approved | |
Opera 52.0.2871.97 | 1725 | Wednesday, April 25, 2018 | Approved | |
Opera 52.0.2871.64 | 3302 | Wednesday, April 11, 2018 | Approved | |
Opera 52.0.2871.40 | 2742 | Thursday, March 29, 2018 | Approved | |
Opera 52.0.2871.37 | 831 | Monday, March 26, 2018 | Approved | |
Opera 52.0.2871.30 | 2318 | Thursday, March 22, 2018 | Approved | |
Opera 51.0.2830.55 | 2811 | Thursday, March 8, 2018 | Approved | |
Opera 51.0.2830.40 | 3791 | Thursday, February 22, 2018 | Approved | |
Opera 51.0.2830.34 | 5321 | Thursday, February 15, 2018 | Approved | |
Opera 51.0.2830.26 | 5121 | Wednesday, February 7, 2018 | Approved | |
Opera 50.0.2762.67 | 6029 | Monday, January 22, 2018 | Approved | |
Opera 50.0.2762.58 | 4260 | Thursday, January 11, 2018 | Approved | |
Opera 50.0.2762.45 | 3620 | Wednesday, January 3, 2018 | Approved | |
Opera 49.0.2725.64 | 5085 | Tuesday, December 19, 2017 | Approved | |
Opera 49.0.2725.56 | 3239 | Monday, December 11, 2017 | Approved | |
Opera 49.0.2725.47 | 5891 | Thursday, November 23, 2017 | Approved | |
Opera 49.0.2725.39 | 4146 | Thursday, November 16, 2017 | Approved | |
Opera 49.0.2725.34 | 4618 | Tuesday, November 7, 2017 | Approved | |
Opera 48.0.2685.52 | 7092 | Tuesday, October 24, 2017 | Approved | |
Opera 48.0.2685.50 | 2710 | Thursday, October 19, 2017 | Approved | |
Opera 48.0.2685.39 | 4847 | Tuesday, October 10, 2017 | Approved | |
Opera 48.0.2685.35 | 3529 | Monday, October 2, 2017 | Approved | |
Opera 48.0.2685.32 | 2420 | Tuesday, September 26, 2017 | Approved | |
Opera 47.0.2631.80 | 6473 | Wednesday, September 6, 2017 | Approved | |
Opera 47.0.2631.71 | 3272 | Friday, August 25, 2017 | Approved | |
Opera 47.0.2631.55 | 2762 | Monday, August 14, 2017 | Approved | |
Opera 47.0.2631.48 | 1461 | Thursday, August 10, 2017 | Approved | |
Opera 47.0.2631.39 | 1232 | Wednesday, August 9, 2017 | Approved | |
Opera 46.0.2597.61 | 1212 | Monday, August 7, 2017 | Approved | |
Opera 46.0.2597.57 | 3865 | Wednesday, July 19, 2017 | Approved | |
Opera 46.0.2597.46 | 2246 | Tuesday, July 11, 2017 | Approved | |
Opera 46.0.2597.39 | 5864 | Tuesday, July 4, 2017 | Approved | |
Opera 46.0.2597.32 | 1799 | Tuesday, June 27, 2017 | Approved | |
Opera 46.0.2597.26 | 1733 | Wednesday, June 21, 2017 | Approved | |
Opera 45.0.2552.898 | 2575 | Tuesday, June 13, 2017 | Approved | |
Opera 45.0.2552.888 | 2201 | Wednesday, May 31, 2017 | Approved | |
Opera 45.0.2552.881 | 3962 | Thursday, May 25, 2017 | Approved | |
Opera 45.0.2552.812 | 2002 | Monday, May 15, 2017 | Approved | |
Opera 45.0.2552.635 | 1712 | Tuesday, May 9, 2017 | Approved | |
Opera 44.0.2510.1457 | 1823 | Friday, April 28, 2017 | Approved | |
Opera 44.0.2510.1449 | 1207 | Tuesday, April 25, 2017 | Approved | |
Opera 44.0.2510.1218 | 546 | Tuesday, April 25, 2017 | Approved | |
Opera 44.0.2510.857 | 3081 | Wednesday, March 22, 2017 | Approved | |
Opera 43.0.2442.991 | 2731 | Tuesday, February 21, 2017 | Approved | |
Opera 43.0.2442.806 | 3198 | Monday, February 6, 2017 | Approved | |
Opera 42.0.2393.94 | 4023 | Monday, December 19, 2016 | Approved | |
Opera 42.0.2393.85 | 1302 | Monday, December 12, 2016 | Approved | |
Opera 41.0.2353.69 | 2150 | Tuesday, November 22, 2016 | Approved | |
Opera 41.0.2353.56 | 1725 | Tuesday, November 8, 2016 | Approved | |
Opera 41.0.2353.46 | 1779 | Monday, October 24, 2016 | Approved | |
Opera 40.0.2308.90 | 1271 | Tuesday, October 18, 2016 | Approved | |
Opera 40.0.2308.81 | 1672 | Monday, October 3, 2016 | Approved | |
Opera 39.0.2256.48 | 17477 | Wednesday, August 3, 2016 | Approved | |
Opera 39.0.2256.43 | 829 | Monday, August 1, 2016 | Approved | |
Opera 38.0.2220.41 | 943 | Sunday, July 10, 2016 | Approved | |
Opera 38.0.2220.31 | 378 | Monday, June 13, 2016 | Approved | |
Opera 38.0.2220.29 | 365 | Tuesday, June 7, 2016 | Approved | |
Opera 37.0.2178.54 | 376 | Monday, May 30, 2016 | Approved | |
Opera 37.0.2178.43 | 365 | Monday, May 9, 2016 | Approved | |
Opera 37.0.2178.32 | 382 | Wednesday, May 4, 2016 | Approved | |
Opera 36.0.2130.65 | 1468 | Monday, April 11, 2016 | Approved | |
Opera 36.0.2130.46 | 1155 | Tuesday, March 29, 2016 | Approved | |
Opera 36.0.2130.32 | 1331 | Monday, March 14, 2016 | Approved | |
Opera 35.0.2066.92 | 1243 | Tuesday, March 1, 2016 | Approved | |
Opera 35.0.2066.82 | 844 | Monday, February 22, 2016 | Approved | |
Opera 35.0.2066.68 | 791 | Tuesday, February 16, 2016 | Approved | |
Opera 35.0.2066.37 | 1065 | Monday, February 1, 2016 | Approved | |
Opera 34.0.2036.50 | 1070 | Tuesday, January 19, 2016 | Approved | |
Opera 34.0.2036.47 | 848 | Monday, January 11, 2016 | Approved | |
Opera 34.0.2036.25 | 1470 | Monday, December 7, 2015 | Approved | |
Opera 33.0.1990.58 | 1498 | Monday, November 2, 2015 | Approved | |
Opera 33.0.1990.43 | 1090 | Monday, October 26, 2015 | Approved | |
Opera 32.0.1948.69 | 1384 | Monday, September 28, 2015 | Approved | |
Opera 32.0.1948.25 | 1031 | Monday, September 14, 2015 | Approved | |
Opera 31.0.1889.99 | 2317 | Monday, August 3, 2015 | Approved | |
Opera 30.0.1835.88 | 1744 | Tuesday, June 23, 2015 | Approved | |
Opera 30.0.1835.59 | 986 | Wednesday, June 10, 2015 | Approved | |
Opera 30.0.1835.52 | 493 | Monday, June 8, 2015 | Approved | |
Opera 29.0.1795.60 | 1168 | Tuesday, May 19, 2015 | Approved | |
Opera 29.0.1795.47 | 1140 | Monday, April 27, 2015 | Approved | |
Opera 28.0.1750.51 | 1094 | Wednesday, April 8, 2015 | Approved | |
Opera 28.0.1750.48 | 1527 | Tuesday, March 17, 2015 | Approved | |
Opera 28.0.1750.40 | 1122 | Monday, March 9, 2015 | Approved | |
Opera 27.0.1689.76 | 1371 | Monday, February 23, 2015 | Approved | |
Opera 27.0.1689.69 | 1320 | Tuesday, February 10, 2015 | Approved | |
Opera 27.0.1689.66 | 1210 | Monday, February 2, 2015 | Approved | |
Opera 27.0.1689.54 | 1141 | Monday, January 26, 2015 | Approved | |
Opera 26.0.1656.60 | 1630 | Wednesday, December 17, 2014 | Approved | |
Opera 26.0.1656.32 | 857 | Monday, December 1, 2014 | Approved | |
Opera 26.0.1656.24 | 740 | Thursday, November 20, 2014 | Approved | |
Opera 25.0.1614.71 | 575 | Monday, November 17, 2014 | Approved | |
Opera 25.0.1614.68 | 901 | Thursday, October 30, 2014 | Approved | |
Opera 25.0.1614.63 | 655 | Monday, October 27, 2014 | Approved | |
Opera 25.0.1614.50 | 734 | Wednesday, October 15, 2014 | Approved | |
Opera 24.0.1558.64 | 987 | Friday, September 26, 2014 | Approved | |
Opera 24.0.1558.61 | 817 | Tuesday, September 16, 2014 | Approved | |
Opera 24.0.1558.53 | 882 | Monday, September 1, 2014 | Approved | |
Opera 23.0.1522.77 | 728 | Monday, August 18, 2014 | Approved | |
Opera 23.0.1522.75 | 623 | Monday, August 11, 2014 | Approved | |
Opera 23.0.1522.72 | 608 | Tuesday, August 5, 2014 | Approved | |
Opera 23.0.1522.60 | 667 | Tuesday, July 22, 2014 | Approved | |
Opera 22.0.1471.70 | 853 | Wednesday, June 18, 2014 | Approved | |
Opera 22.0.1471.50 | 598 | Monday, June 2, 2014 | Approved | |
Opera 21.0.1432.68 | 446 | Wednesday, May 28, 2014 | Approved | |
Opera 21.0.1432.67 | 606 | Tuesday, May 13, 2014 | Approved | |
Opera 21.0.1432.57 | 542 | Monday, May 5, 2014 | Approved | |
Opera 20.0.1387.91 | 811 | Wednesday, April 2, 2014 | Approved | |
Opera 20.0.1387.82 | 612 | Thursday, March 20, 2014 | Approved | |
Opera 20.0.1387.77 | 591 | Wednesday, March 12, 2014 | Approved | |
Opera 20.0.1387.64 | 564 | Tuesday, March 4, 2014 | Approved | |
Opera 19.0.1326.63 | 578 | Wednesday, February 12, 2014 | Approved | |
Opera 19.0.1326.59 | 595 | Monday, February 3, 2014 | Approved | |
Opera 19.0.1326.56 | 502 | Wednesday, January 29, 2014 | Approved | |
Opera 19.0.1326.47 | 483 | Monday, January 27, 2014 | Approved | |
Opera 18.0.1284.68 | 711 | Monday, December 16, 2013 | Approved | |
Opera 18.0.1284.63 | 475 | Friday, December 6, 2013 | Approved | |
Opera 18.0.1284.49 | 528 | Tuesday, November 19, 2013 | Approved | |
Opera 17.0.1241.53 | 602 | Wednesday, October 23, 2013 | Approved | |
Opera 17.0.1241.45 | 494 | Tuesday, October 8, 2013 | Approved | |
Opera 16.0.1196.80 | 402 | Wednesday, September 25, 2013 | Approved | |
Opera 16.0.1196.73 | 528 | Thursday, September 5, 2013 | Approved | |
Opera 15.0.1147.141 | 682 | Thursday, July 18, 2013 | Approved | |
Opera 12.15 | 1719 | Friday, June 28, 2013 | Approved | |
Opera 12.02 | 1064 | Wednesday, September 12, 2012 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Opera and the Opera 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 Opera, 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.