Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

365,640

Downloads of v 5.0.11824-beta:

202

Last Update:

02 Apr 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.

  • 1
  • 2
  • 3

5.0.11824-beta | Updated: 02 Apr 2020

Downloads:

365,640

Downloads of v 5.0.11824-beta:

202

Maintainer(s):

Software Author(s):

  • Dolphin Emulator Project

Dolphin Emulator 5.0.11824-beta

This is a prerelease version of Dolphin Emulator.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Dolphin Emulator Project. The inclusion of Dolphin Emulator Project trademark(s), if any, upon this webpage is solely to identify Dolphin Emulator Project goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

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

  • 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

3. Copy Your Script

choco upgrade dolphin -y --source="'INTERNAL REPO URL'" --version="'5.0.11824-beta'" --prerelease [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade dolphin -y --source="'INTERNAL REPO URL'" --version="'5.0.11824-beta'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install dolphin
  win_chocolatey:
    name: dolphin
    version: '5.0.11824-beta'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'dolphin' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '5.0.11824-beta'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller dolphin
{
    Name        = "dolphin"
    Version     = "5.0.11824-beta"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'dolphin':
  ensure          => '5.0.11824-beta',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 02 Apr 2020.

Description

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 specific

Automatic updates on monday and thursday.

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.


tools\chocolateyInstall.ps1
$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/a6/20/dolphin-master-5.0-11824-x64.7z'
$checksum64            = '308b9351ea2803866214a4f7f85364b1230f83cba10f1b942c6d527d6d96d932'

$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
}
tools\chocolateyuninstall.ps1
$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.

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
Dolphin Emulator 2409.0.0 1117 Tuesday, September 17, 2024 Approved
Dolphin Emulator 5.0.21460-beta 541 Tuesday, April 30, 2024 Approved
Dolphin Emulator 5.0.21264-beta 242 Tuesday, March 26, 2024 Approved
Dolphin Emulator 5.0.21088-beta 272 Saturday, February 10, 2024 Approved
Dolphin Emulator 5.0.20347-beta 384 Saturday, November 25, 2023 Approved
Dolphin Emulator 5.0.19870-beta 570 Sunday, August 13, 2023 Approved
Dolphin Emulator 5.0.19368-beta 557 Sunday, May 21, 2023 Approved
Dolphin Emulator 5.0.18498-beta 653 Sunday, February 12, 2023 Approved
Dolphin Emulator 5.0.17995-beta 487 Wednesday, December 21, 2022 Approved
Dolphin Emulator 5.0.17269-beta 796 Tuesday, September 13, 2022 Approved
Dolphin Emulator 5.0.16793-beta 537 Thursday, July 7, 2022 Approved
Dolphin Emulator 5.0.16380-beta 585 Tuesday, May 17, 2022 Approved
Dolphin Emulator 5.0.16101-beta 637 Tuesday, March 8, 2022 Approved
Dolphin Emulator 5.0.15993-beta 358 Wednesday, February 9, 2022 Approved
Dolphin Emulator 5.0.15445-beta 924 Saturday, November 13, 2021 Approved
Dolphin Emulator 5.0.15260-beta 555 Monday, October 4, 2021 Approved
Dolphin Emulator 5.0.15105-beta 413 Tuesday, September 7, 2021 Approved
Dolphin Emulator 5.0.14790-beta 478 Sunday, August 1, 2021 Exempted
Dolphin Emulator 5.0.14344-beta 568 Sunday, June 6, 2021 Approved
Dolphin Emulator 5.0.14095-beta 419 Thursday, May 6, 2021 Approved
Dolphin Emulator 5.0.13963.20210413-beta 356 Monday, April 12, 2021 Approved
Dolphin Emulator 5.0.13963.20210412-beta 128 Monday, April 12, 2021 Exempted
Dolphin Emulator 5.0.13963-beta 329 Monday, April 5, 2021 Approved
Dolphin Emulator 5.0.13603-beta 1367 Thursday, February 11, 2021 Exempted
Dolphin Emulator 5.0.13178-beta 1102 Thursday, December 10, 2020 Approved
Dolphin Emulator 5.0.12716-beta 672 Monday, October 5, 2020 Approved
Dolphin Emulator 5.0.12247-beta 626 Sunday, July 5, 2020 Exempted
Dolphin Emulator 5.0.11991-beta 489 Thursday, May 7, 2020 Approved
Dolphin Emulator 5.0.11879-beta 251 Thursday, April 23, 2020 Approved
Dolphin Emulator 5.0.11863-beta 219 Monday, April 20, 2020 Approved
Dolphin Emulator 5.0.11845-beta 219 Thursday, April 16, 2020 Approved
Dolphin Emulator 5.0.11843-beta 206 Monday, April 13, 2020 Approved
Dolphin Emulator 5.0.11832-beta 194 Thursday, April 9, 2020 Approved
Dolphin Emulator 5.0.11827-beta 246 Monday, May 4, 2020 Exempted
Dolphin Emulator 5.0.11824-beta 202 Thursday, April 2, 2020 Approved
Dolphin Emulator 5.0.11819-beta 252 Thursday, March 26, 2020 Approved
Dolphin Emulator 5.0.11801-beta 195 Monday, March 23, 2020 Approved
Dolphin Emulator 5.0.11790-beta 175 Saturday, March 21, 2020 Approved
Dolphin Emulator 5.0.11788-beta 168 Friday, March 20, 2020 Approved
Dolphin Emulator 5.0.11784-beta 212 Thursday, March 19, 2020 Approved
Dolphin Emulator 5.0.11782-beta 172 Tuesday, March 24, 2020 Approved
Dolphin Emulator 5.0.11770-beta 187 Monday, March 23, 2020 Approved
Dolphin Emulator 5.0.11767-beta 190 Monday, March 16, 2020 Approved
Dolphin Emulator 5.0.11746-beta 269 Sunday, March 15, 2020 Approved
Dolphin Emulator 5.0.11719-beta 190 Thursday, March 12, 2020 Approved
Dolphin Emulator 5.0.11713-beta 192 Tuesday, March 10, 2020 Approved
Dolphin Emulator 5.0.11711-beta 202 Sunday, March 8, 2020 Approved
Dolphin Emulator 5.0.11707-beta 227 Friday, March 6, 2020 Approved
Dolphin Emulator 5.0.11701-beta 177 Saturday, February 29, 2020 Approved
Dolphin Emulator 5.0.11700-beta 189 Wednesday, February 26, 2020 Approved
Dolphin Emulator 5.0.11698-beta 199 Wednesday, February 26, 2020 Approved
Dolphin Emulator 5.0.11688-beta 214 Monday, February 24, 2020 Approved
Dolphin Emulator 5.0.11686-beta 229 Sunday, February 23, 2020 Approved
Dolphin Emulator 5.0.11684-beta 184 Saturday, February 22, 2020 Approved
Dolphin Emulator 5.0.11673-beta 230 Monday, February 17, 2020 Approved
Dolphin Emulator 5.0.11669-beta 195 Saturday, February 15, 2020 Approved
Dolphin Emulator 5.0.11667-beta 184 Tuesday, March 10, 2020 Approved
Dolphin Emulator 5.0.11665-beta 219 Tuesday, February 11, 2020 Approved
Dolphin Emulator 5.0.11663-beta 170 Monday, February 10, 2020 Approved
Dolphin Emulator 5.0.11651-beta 234 Sunday, February 9, 2020 Approved
Dolphin Emulator 5.0.11630-beta 201 Saturday, February 8, 2020 Approved
Dolphin Emulator 5.0.11624-beta 200 Saturday, February 8, 2020 Approved
Dolphin Emulator 5.0.11622-beta 237 Tuesday, February 4, 2020 Approved
Dolphin Emulator 5.0.11617-beta 177 Sunday, February 2, 2020 Exempted
Dolphin Emulator 5.0.11608-beta 231 Saturday, February 1, 2020 Exempted
Dolphin Emulator 5.0.11605-beta 179 Friday, January 31, 2020 Approved
Dolphin Emulator 5.0.11600-beta 187 Thursday, January 30, 2020 Approved
Dolphin Emulator 5.0.11598-beta 197 Tuesday, January 28, 2020 Approved
Dolphin Emulator 5.0.11590-beta 214 Monday, January 27, 2020 Approved
Dolphin Emulator 5.0.11583-beta 188 Sunday, January 26, 2020 Approved
Dolphin Emulator 5.0.11558-beta 193 Saturday, January 25, 2020 Approved
Dolphin Emulator 5.0.11552-beta 179 Saturday, January 25, 2020 Approved
Dolphin Emulator 5.0.11537-beta 211 Saturday, January 25, 2020 Approved
Dolphin Emulator 5.0.11535-beta 179 Friday, January 24, 2020 Approved
Dolphin Emulator 5.0.11530-beta 240 Wednesday, January 22, 2020 Approved
Dolphin Emulator 5.0.11526-beta 178 Tuesday, January 21, 2020 Approved
Dolphin Emulator 5.0.11524-beta 228 Monday, January 20, 2020 Approved
Dolphin Emulator 5.0.11520-beta 192 Saturday, January 25, 2020 Exempted
Dolphin Emulator 5.0.11518-beta 194 Thursday, January 16, 2020 Approved
Dolphin Emulator 5.0.11516-beta 182 Wednesday, January 15, 2020 Approved
Dolphin Emulator 5.0.11507-beta 158 Wednesday, January 15, 2020 Approved
Dolphin Emulator 5.0.11501-beta 207 Tuesday, January 14, 2020 Approved
Dolphin Emulator 5.0.11494-beta 148 Tuesday, January 14, 2020 Approved
Dolphin Emulator 5.0.11476-beta 161 Monday, January 13, 2020 Approved
Dolphin Emulator 5.0.11455-beta 221 Sunday, January 12, 2020 Approved
Dolphin 5.0.3834-beta 462 Friday, January 10, 2020 Exempted
Dolphin Emulator (Stable) 5.0.0.20201120 7158 Friday, November 20, 2020 Approved
Dolphin 5.0 5847 Monday, January 9, 2017 Approved
Dolphin 4.0.2 940 Thursday, December 19, 2013 Approved
Discussion for the Dolphin Emulator Package

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.
comments powered by Disqus