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:
257,464
Downloads of v 5.0.11700-beta:
60
Last Update:
26 Feb 2020
Package Maintainer(s):
Software Author(s):
- Dolphin Emulator Project
Tags:
gaming emulator wii gamecube dolphin
Dolphin Emulator
This is a prerelease version of Dolphin Emulator.
Downloads:
257,464
Downloads of v 5.0.11700-beta:
60
Maintainer(s):
Software Author(s):
- Dolphin Emulator Project
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 Dolphin Emulator, run the following command from the command line or from PowerShell:
To upgrade Dolphin Emulator, run the following command from the command line or from PowerShell:
To uninstall Dolphin Emulator, 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://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 dolphin --internalize --version=5.0.11700-beta --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade dolphin -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 dolphin -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 dolphin installed
win_chocolatey:
name: dolphin
state: present
version: 5.0.11700-beta
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'dolphin' do
action :install
version '5.0.11700-beta'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: dolphin,
Version: 5.0.11700-beta,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller dolphin
{
Name = 'dolphin'
Ensure = 'Present'
Version = '5.0.11700-beta'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'dolphin':
provider => 'chocolatey',
ensure => '5.0.11700-beta',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install dolphin version="5.0.11700-beta" 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 27 Feb 2020.
Dolphin is an emulator for running GameCube, Wii, and Triforce games on Windows, Linux, OS X, and recent Android devices.
It allows PC gamers to enjoy games for these two consoles in full HD (1080p) with several enhancements: compatibility with all PC controllers, turbo speed, networked multiplayer, and even more!
Package Parameters
The following package parameters can be set:
/NOSTART
- Do not add a start menu item/DesktopIcon
- Add a desktop shorcut
To pass parameters, use --params "''"
(e.g. choco install packageID [other options] --params="'/ITEM:value /ITEM2:value2 /FLAG_BOOLEAN'"
).
To have choco remember parameters on upgrade, be sure to set choco feature enable -n=useRememberedArgumentsForUpgrades
.
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$pp = Get-PackageParameters
$shortcutName = 'Dolphin Emulator.lnk'
$extractDir = $(Get-ToolsLocation)
$dolphinDir = (Join-Path $extractDir Dolphin-x64)
$exepath = (Join-Path $dolphinDir Dolphin.exe)
$url64 = 'https://dl.dolphin-emu.org/builds/c8/1b/dolphin-master-5.0-11700-x64.7z'
$checksum64 = '888844cc95b6c464e878e659d3cb1e127152c7c422d380892c86c99c449468a4'
$packageArgs = @{
Url64bit = $url64
Checksum64 = $checksum64
ChecksumType64 = 'sha256'
UnzipLocation = $extractDir
PackageName = 'dolphin'
}
Install-ChocolateyZipPackage @packageArgs
Install-BinFile -Name 'Dolphin' -Path $exepath -UseStart
if ($pp['desktopicon']) {
$desktopicon = (Join-Path ([Environment]::GetFolderPath("Desktop")) $shortcutName)
Write-Host -ForegroundColor white 'Adding ' $desktopicon
Install-ChocolateyShortcut -ShortcutFilePath $desktopicon -TargetPath $exepath -RunAsAdmin
}
if (!$pp['nostart']) {
$starticon = (Join-Path ([environment]::GetFolderPath([environment+specialfolder]::Programs)) $shortcutName)
Write-Host -ForegroundColor white 'Adding ' $starticon
Install-ChocolateyShortcut -ShortcutFilePath $starticon -TargetPath $exepath -RunAsAdmin
}
$ErrorActionPreference = 'Stop';
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$dolphinDir = (Join-Path $(Get-ToolsLocation) Dolphin-x64)
$exepath = (Join-Path $dolphinDir Dolphin.exe)
$shortcutName = 'Dolphin Emulator.lnk'
$desktopicon = (Join-Path ([Environment]::GetFolderPath("Desktop")) $shortcutName)
$starticon = (Join-Path ([environment]::GetFolderPath([environment+specialfolder]::Programs)) $shortcutName)
if (Test-Path $desktopicon) {
Remove-Item $desktopicon
Write-Host -ForegroundColor white 'Removed ' $desktopicon
} else {
Write-Host -ForegroundColor yellow 'Did not find ' $desktopicon 'to remove'
}
if (Test-Path $starticon) {
Remove-Item $starticon
Write-Host -ForegroundColor white 'Removed ' $starticon
} else {
Write-Host -ForegroundColor yellow 'Did not find ' $starticon 'to remove'
}
Uninstall-BinFile -Name 'Dolphin' -Path $exepath
Write-Host -ForegroundColor white 'Removing ' $dolphinDir
Remove-Item $DolphinDir -Recurse -ea 0
Log in or click on link to see number of positives.
- dolphin.5.0.11700-beta.nupkg (033883ed2900) - ## / 63
- dolphin-master-5.0-11700-x64.7z (888844cc95b6) - ## / 60
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Dolphin Emulator 5.0.13603-beta | 601 | Thursday, February 11, 2021 | Exempted |
Dolphin Emulator 5.0.13178-beta | 957 | Thursday, December 10, 2020 | Approved |
Dolphin Emulator 5.0.12716-beta | 518 | Monday, October 5, 2020 | Approved |
Dolphin Emulator 5.0.12247-beta | 452 | Sunday, July 5, 2020 | Exempted |
Dolphin Emulator 5.0.11991-beta | 344 | Thursday, May 7, 2020 | Approved |
Dolphin Emulator 5.0.11879-beta | 79 | Thursday, April 23, 2020 | Approved |
Dolphin Emulator 5.0.11863-beta | 56 | Monday, April 20, 2020 | Approved |
Dolphin Emulator 5.0.11845-beta | 80 | Thursday, April 16, 2020 | Approved |
Dolphin Emulator 5.0.11843-beta | 59 | Monday, April 13, 2020 | Approved |
Dolphin Emulator 5.0.11832-beta | 57 | Thursday, April 9, 2020 | Approved |
Dolphin Emulator 5.0.11827-beta | 130 | Monday, May 4, 2020 | Exempted |
Dolphin Emulator 5.0.11824-beta | 73 | Thursday, April 2, 2020 | Approved |
Dolphin Emulator 5.0.11819-beta | 97 | Thursday, March 26, 2020 | Approved |
Dolphin Emulator 5.0.11801-beta | 55 | Monday, March 23, 2020 | Approved |
Dolphin Emulator 5.0.11790-beta | 46 | Saturday, March 21, 2020 | Approved |
Dolphin Emulator 5.0.11788-beta | 46 | Friday, March 20, 2020 | Approved |
Dolphin Emulator 5.0.11784-beta | 54 | Thursday, March 19, 2020 | Approved |
Dolphin Emulator 5.0.11782-beta | 44 | Tuesday, March 24, 2020 | Approved |
Dolphin Emulator 5.0.11770-beta | 70 | Monday, March 23, 2020 | Approved |
Dolphin Emulator 5.0.11767-beta | 48 | Monday, March 16, 2020 | Approved |
Dolphin Emulator 5.0.11746-beta | 82 | Sunday, March 15, 2020 | Approved |
Dolphin Emulator 5.0.11719-beta | 56 | Thursday, March 12, 2020 | Approved |
Dolphin Emulator 5.0.11713-beta | 59 | Tuesday, March 10, 2020 | Approved |
Dolphin Emulator 5.0.11711-beta | 47 | Sunday, March 8, 2020 | Approved |
Dolphin Emulator 5.0.11707-beta | 76 | Friday, March 6, 2020 | Approved |
Dolphin Emulator 5.0.11701-beta | 58 | Saturday, February 29, 2020 | Approved |
Dolphin Emulator 5.0.11700-beta | 60 | Wednesday, February 26, 2020 | Approved |
Dolphin Emulator 5.0.11698-beta | 58 | Wednesday, February 26, 2020 | Approved |
Dolphin Emulator 5.0.11688-beta | 95 | Monday, February 24, 2020 | Approved |
Dolphin Emulator 5.0.11686-beta | 79 | Sunday, February 23, 2020 | Approved |
Dolphin Emulator 5.0.11684-beta | 55 | Saturday, February 22, 2020 | Approved |
Dolphin Emulator 5.0.11673-beta | 72 | Monday, February 17, 2020 | Approved |
Dolphin Emulator 5.0.11669-beta | 54 | Saturday, February 15, 2020 | Approved |
Dolphin Emulator 5.0.11667-beta | 53 | Tuesday, March 10, 2020 | Approved |
Dolphin Emulator 5.0.11665-beta | 72 | Tuesday, February 11, 2020 | Approved |
Dolphin Emulator 5.0.11663-beta | 33 | Monday, February 10, 2020 | Approved |
Dolphin Emulator 5.0.11651-beta | 83 | Sunday, February 9, 2020 | Approved |
Dolphin Emulator 5.0.11630-beta | 68 | Saturday, February 8, 2020 | Approved |
Dolphin Emulator 5.0.11624-beta | 47 | Saturday, February 8, 2020 | Approved |
Dolphin Emulator 5.0.11622-beta | 104 | Tuesday, February 4, 2020 | Approved |
Dolphin Emulator 5.0.11617-beta | 58 | Sunday, February 2, 2020 | Exempted |
Dolphin Emulator 5.0.11608-beta | 86 | Saturday, February 1, 2020 | Exempted |
Dolphin Emulator 5.0.11605-beta | 44 | Friday, January 31, 2020 | Approved |
Dolphin Emulator 5.0.11600-beta | 58 | Thursday, January 30, 2020 | Approved |
Dolphin Emulator 5.0.11598-beta | 54 | Tuesday, January 28, 2020 | Approved |
Dolphin Emulator 5.0.11590-beta | 95 | Monday, January 27, 2020 | Approved |
Dolphin Emulator 5.0.11583-beta | 53 | Sunday, January 26, 2020 | Approved |
Dolphin Emulator 5.0.11558-beta | 57 | Saturday, January 25, 2020 | Approved |
Dolphin Emulator 5.0.11552-beta | 42 | Saturday, January 25, 2020 | Approved |
Dolphin Emulator 5.0.11537-beta | 91 | Saturday, January 25, 2020 | Approved |
Dolphin Emulator 5.0.11535-beta | 52 | Friday, January 24, 2020 | Approved |
Dolphin Emulator 5.0.11530-beta | 77 | Wednesday, January 22, 2020 | Approved |
Dolphin Emulator 5.0.11526-beta | 50 | Tuesday, January 21, 2020 | Approved |
Dolphin Emulator 5.0.11524-beta | 49 | Monday, January 20, 2020 | Approved |
Dolphin Emulator 5.0.11520-beta | 45 | Saturday, January 25, 2020 | Exempted |
Dolphin Emulator 5.0.11518-beta | 58 | Thursday, January 16, 2020 | Approved |
Dolphin Emulator 5.0.11516-beta | 36 | Wednesday, January 15, 2020 | Approved |
Dolphin Emulator 5.0.11507-beta | 38 | Wednesday, January 15, 2020 | Approved |
Dolphin Emulator 5.0.11501-beta | 51 | Tuesday, January 14, 2020 | Approved |
Dolphin Emulator 5.0.11494-beta | 42 | Tuesday, January 14, 2020 | Approved |
Dolphin Emulator 5.0.11476-beta | 38 | Monday, January 13, 2020 | Approved |
Dolphin Emulator 5.0.11455-beta | 59 | Sunday, January 12, 2020 | Approved |
Dolphin Emulator (Stable) 5.0.0.20201120 | 1283 | Friday, November 20, 2020 | Approved |
Dolphin 5.0 | 5628 | Monday, January 9, 2017 | Approved |
Dolphin 4.0.2 | 792 | Thursday, December 19, 2013 | Approved |
© Dolphin Emulator Project 2020
-
- vcredist140 (≥ 14.16)
Ground Rules:
- This discussion is only about Dolphin Emulator and the Dolphin Emulator 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 Dolphin Emulator, 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.