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...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
14,779
Downloads of v 77.0.4023.0:
17
Last Update:
12 Apr 2021
Package Maintainer(s):
Software Author(s):
- Opera
Tags:
browser opera developer 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 Developer
- 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:
14,779
Downloads of v 77.0.4023.0:
17
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.
All Checks are Passing
2 Passing Test
To install Opera Developer, run the following command from the command line or from PowerShell:
To upgrade Opera Developer, run the following command from the command line or from PowerShell:
To uninstall Opera Developer, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
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
choco download opera-developer --internalize --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade opera-developer -y --source="'STEP 3 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 opera-developer -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure opera-developer installed
win_chocolatey:
name: opera-developer
state: present
version: 77.0.4023.0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'opera-developer' do
action :install
version '77.0.4023.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: opera-developer,
Version: 77.0.4023.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller opera-developer
{
Name = 'opera-developer'
Ensure = 'Present'
Version = '77.0.4023.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'opera-developer':
provider => 'chocolatey',
ensure => '77.0.4023.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install opera-developer version="77.0.4023.0" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. 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 12 Apr 2021.
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"'
Please Note: This is an automatically updated package. If you find it is
out of date by more than a day or two, please contact the maintainer(s) and
let them know the package is no longer updating correctly.
$ErrorActionPreference = 'Stop'
$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-developer/77.0.4023.0/win/Opera_Developer_77.0.4023.0_Setup.exe'
url64 = 'https://get.geo.opera.com/pub/opera-developer/77.0.4023.0/win/Opera_Developer_77.0.4023.0_Setup_x64.exe'
checksum = '8596903ee911245433e72424d0f39092e3d7159916c3781fa77ab0bc2495d3f9'
checksum64 = '742eb0fcf203c49f9c1a9ae57428918b064dff7a56f595c6cec0260ad8dc106f'
checksumType = 'sha256'
checksumType64 = 'sha256'
silentArgs = '/install /silent /launchopera 0 /setdefaultbrowser 0' + $parameters
validExitCodes = @(0)
}
$version = '77.0.4023.0'
if (!$Env:ChocolateyForce -and (IsVersionAlreadyInstalled $version)) {
Write-Output "Opera $version is already installed. Skipping download and installation."
} else {
Install-ChocolateyPackage @packageArgs
}
$ErrorActionPreference = 'Stop'
$packageName = 'opera'
$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-developer.77.0.4023.0.nupkg (c74875fd3914) - ## / 62
- Opera_Developer_77.0.4023.0_Setup_x64.exe (742eb0fcf203) - ## / 62
- Opera_Developer_77.0.4023.0_Setup.exe (8596903ee911) - ## / 62
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.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Opera Developer 77.0.4023.0 | 17 | Monday, April 12, 2021 | Approved |
Opera Developer 76.0.4016.0 | 27 | Tuesday, April 6, 2021 | Approved |
Opera Developer 76.0.4009.0 | 29 | Monday, March 29, 2021 | Approved |
Opera Developer 76.0.3995.0 | 54 | Tuesday, March 16, 2021 | Approved |
Opera Developer 76.0.3989.0 | 55 | Tuesday, March 9, 2021 | Approved |
Opera Developer 76.0.3981.0 | 47 | Monday, March 1, 2021 | Approved |
Opera Developer 76.0.3974.0 | 40 | Monday, February 22, 2021 | Approved |
Opera Developer 75.0.3967.0 | 48 | Tuesday, February 16, 2021 | Approved |
Opera Developer 75.0.3960.0 | 46 | Monday, February 8, 2021 | Approved |
Opera Developer 75.0.3953.0 | 45 | Monday, February 1, 2021 | Approved |
Opera Developer 75.0.3946.0 | 38 | Monday, January 25, 2021 | Approved |
Opera Developer 75.0.3939.0 | 62 | Monday, January 18, 2021 | Approved |
Opera Developer 75.0.3932.0 | 52 | Monday, January 11, 2021 | Approved |
Opera Developer 75.0.3925.0 | 50 | Monday, January 4, 2021 | Approved |
Opera Developer 74.0.3904.0 | 64 | Monday, December 14, 2020 | Approved |
Opera Developer 74.0.3897.0 | 43 | Monday, December 7, 2020 | Approved |
Opera Developer 74.0.3890.0 | 50 | Monday, November 30, 2020 | Approved |
Opera Developer 74.0.3883.0 | 40 | Monday, November 23, 2020 | Approved |
Opera Developer 74.0.3876.0 | 47 | Monday, November 16, 2020 | Approved |
Opera Developer 74.0.3870.0 | 54 | Tuesday, November 10, 2020 | Approved |
Opera Developer 74.0.3862.0 | 52 | Monday, November 2, 2020 | Approved |
Opera Developer 73.0.3856.0 | 43 | Tuesday, October 27, 2020 | Approved |
Opera Developer 73.0.3847.0 | 45 | Monday, October 19, 2020 | Approved |
Opera Developer 73.0.3841.0 | 42 | Tuesday, October 13, 2020 | Approved |
Opera Developer 73.0.3834.0 | 47 | Tuesday, October 6, 2020 | Approved |
Opera Developer 73.0.3827.0 | 56 | Tuesday, September 29, 2020 | Approved |
Opera Developer 73.0.3820.0 | 51 | Tuesday, September 22, 2020 | Approved |
Opera Developer 72.0.3814.0 | 46 | Wednesday, September 16, 2020 | Approved |
Opera Developer 72.0.3807.0 | 59 | Wednesday, September 9, 2020 | Approved |
Opera Developer 72.0.3798.0 | 54 | Monday, August 31, 2020 | Approved |
Opera Developer 72.0.3791.0 | 56 | Monday, August 24, 2020 | Approved |
Opera Developer 72.0.3784.0 | 52 | Monday, August 17, 2020 | Approved |
Opera Developer 72.0.3779.0 | 61 | Wednesday, August 12, 2020 | Approved |
Opera Developer 71.0.3770.0 | 64 | Monday, August 3, 2020 | Approved |
Opera Developer 71.0.3763.0 | 58 | Monday, July 27, 2020 | Approved |
Opera Developer 71.0.3756.0 | 62 | Monday, July 20, 2020 | Approved |
Opera Developer 71.0.3749.0 | 78 | Monday, July 13, 2020 | Approved |
Opera Developer 71.0.3742.0 | 69 | Monday, July 6, 2020 | Approved |
Opera Developer 71.0.3735.0 | 55 | Monday, June 29, 2020 | Approved |
Opera Developer 70.0.3728.0 | 75 | Monday, June 22, 2020 | Approved |
Opera Developer 70.0.3721.0 | 68 | Monday, June 15, 2020 | Approved |
Opera Developer 70.0.3714.0 | 74 | Monday, June 8, 2020 | Approved |
Opera Developer 70.0.3707.0 | 77 | Monday, June 1, 2020 | Approved |
Opera Developer 70.0.3701.0 | 71 | Tuesday, May 26, 2020 | Approved |
Opera Developer 70.0.3693.0 | 100 | Monday, May 18, 2020 | Approved |
Opera Developer 69.0.3686.0 | 101 | Monday, May 11, 2020 | Approved |
Opera Developer 69.0.3679.0 | 78 | Monday, May 4, 2020 | Approved |
Opera Developer 69.0.3673.0 | 117 | Tuesday, April 28, 2020 | Approved |
Opera Developer 69.0.3665.0 | 74 | Monday, April 20, 2020 | Approved |
Opera Developer 69.0.3660.0 | 78 | Wednesday, April 15, 2020 | Approved |
Opera Developer 69.0.3653.0 | 76 | Wednesday, April 8, 2020 | Approved |
Opera Developer 69.0.3651.0 | 90 | Monday, April 6, 2020 | Approved |
Opera Developer 69.0.3645.0 | 85 | Tuesday, March 31, 2020 | Approved |
Opera Developer 69.0.3638.0 | 67 | Tuesday, March 24, 2020 | Approved |
Opera Developer 69.0.3630.0 | 126 | Monday, March 16, 2020 | Approved |
Opera Developer 69.0.3623.0 | 88 | Monday, March 9, 2020 | Approved |
Opera Developer 68.0.3616.0 | 98 | Monday, March 2, 2020 | Approved |
Opera Developer 68.0.3609.0 | 54 | Monday, February 24, 2020 | Approved |
Opera Developer 68.0.3602.0 | 107 | Monday, February 17, 2020 | Approved |
Opera Developer 68.0.3590.0 | 111 | Wednesday, February 5, 2020 | Approved |
Opera Developer 68.0.3581.0 | 75 | Tuesday, January 28, 2020 | Approved |
Opera Developer 67.0.3574.0 | 53 | Monday, January 20, 2020 | Approved |
Opera Developer 67.0.3564.0 | 98 | Friday, January 10, 2020 | Approved |
Opera Developer 67.0.3554.0 | 100 | Tuesday, December 31, 2019 | Approved |
Opera Developer 67.0.3541.0 | 92 | Thursday, December 19, 2019 | Approved |
Opera Developer 67.0.3536.0 | 61 | Monday, December 16, 2019 | Approved |
Opera Developer 67.0.3523.0 | 105 | Tuesday, December 3, 2019 | Approved |
Opera Developer 66.0.3515.2 | 81 | Wednesday, November 27, 2019 | Approved |
Opera Developer 66.0.3511.0 | 83 | Thursday, November 21, 2019 | Approved |
Opera Developer 66.0.3508.0 | 83 | Monday, November 18, 2019 | Approved |
Opera Developer 66.0.3502.0 | 101 | Tuesday, November 12, 2019 | Approved |
Opera Developer 66.0.3494.0 | 92 | Monday, November 4, 2019 | Approved |
Opera Developer 66.0.3489.0 | 77 | Wednesday, October 30, 2019 | Approved |
Opera Developer 66.0.3487.0 | 89 | Monday, October 28, 2019 | Approved |
Opera Developer 66.0.3480.0 | 86 | Tuesday, October 22, 2019 | Approved |
Opera Developer 66.0.3475.0 | 88 | Thursday, October 17, 2019 | Approved |
Opera Developer 66.0.3472.0 | 89 | Monday, October 14, 2019 | Approved |
Opera Developer 65.0.3466.0 | 96 | Tuesday, October 8, 2019 | Approved |
Opera Developer 65.0.3459.0 | 90 | Tuesday, October 1, 2019 | Approved |
Opera Developer 65.0.3454.0 | 110 | Thursday, September 26, 2019 | Approved |
Opera Developer 65.0.3450.0 | 78 | Tuesday, September 24, 2019 | Approved |
Opera Developer 65.0.3445.0 | 86 | Wednesday, September 18, 2019 | Approved |
Opera Developer 65.0.3443.0 | 79 | Monday, September 16, 2019 | Approved |
Opera Developer 65.0.3437.0 | 120 | Tuesday, September 10, 2019 | Approved |
Opera Developer 65.0.3430.0 | 102 | Tuesday, September 3, 2019 | Approved |
Opera Developer 65.0.3425.0 | 134 | Thursday, August 29, 2019 | Approved |
Opera Developer 64.0.3416.0 | 103 | Wednesday, August 21, 2019 | Approved |
Opera Developer 64.0.3409.0 | 117 | Wednesday, August 14, 2019 | Approved |
Opera Developer 64.0.3407.0 | 59 | Monday, August 12, 2019 | Approved |
Opera Developer 64.0.3401.0 | 88 | Tuesday, August 6, 2019 | Approved |
Opera Developer 64.0.3396.0 | 85 | Thursday, August 1, 2019 | Approved |
Opera Developer 64.0.3394.0 | 71 | Tuesday, July 30, 2019 | Approved |
Opera Developer 64.0.3388.0 | 135 | Wednesday, July 24, 2019 | Approved |
Opera Developer 64.0.3380.0 | 86 | Tuesday, July 16, 2019 | Approved |
Opera Developer 64.0.3372.0 | 153 | Monday, July 8, 2019 | Approved |
Opera Developer 63.0.3367.0 | 77 | Wednesday, July 3, 2019 | Approved |
Opera Developer 63.0.3359.0 | 101 | Tuesday, June 25, 2019 | Approved |
Opera Developer 63.0.3353.0 | 95 | Wednesday, June 19, 2019 | Approved |
Opera Developer 63.0.3349.0 | 93 | Friday, June 14, 2019 | Approved |
Opera Developer 63.0.3347.0 | 67 | Wednesday, June 12, 2019 | Approved |
Opera Developer 63.0.3340.0 | 90 | Wednesday, June 5, 2019 | Approved |
Opera Developer 62.0.3331.2 | 111 | Wednesday, May 29, 2019 | Approved |
Opera Developer 62.0.3323.0 | 97 | Monday, May 20, 2019 | Approved |
Opera Developer 62.0.3319.0 | 98 | Wednesday, May 15, 2019 | Approved |
Opera Developer 61.0.3298.6 | 73 | Tuesday, May 7, 2019 | Approved |
Opera Developer 61.0.3298.3 | 97 | Monday, May 6, 2019 | Approved |
Opera Software
This package has no dependencies.
Ground Rules:
- This discussion is only about Opera Developer and the Opera Developer 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 Developer, 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.