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

Downloads:
26,244
Downloads of v 1.15.18.0:
143
Last Update:
09 Nov 2019
Package Maintainer(s):
Software Author(s):
- Exzap
- Petergov
Tags:
wii u emulator- Software Specific:
- Software Site
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

CEMU - Wii U emulator
This is not the latest version of CEMU - Wii U emulator available.
- Software Specific:
- Software Site
- Software Docs
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
26,244
Downloads of v 1.15.18.0:
143
Maintainer(s):
Software Author(s):
- Exzap
- Petergov
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.
CEMU - Wii U emulator 1.15.18.0
This is not the latest version of CEMU - Wii U emulator available.
All Checks are Passing
2 Passing Test
To install CEMU - Wii U emulator, run the following command from the command line or from PowerShell:
To upgrade CEMU - Wii U emulator, run the following command from the command line or from PowerShell:
To uninstall CEMU - Wii U 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 cemu --internalize --version=1.15.18.0 --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 cemu -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 cemu -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 cemu installed
win_chocolatey:
name: cemu
state: present
version: 1.15.18.0
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 'cemu' do
action :install
version '1.15.18.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: cemu,
Version: 1.15.18.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller cemu
{
Name = 'cemu'
Ensure = 'Present'
Version = '1.15.18.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'cemu':
provider => 'chocolatey',
ensure => '1.15.18.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install cemu version="1.15.18.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 09 Nov 2019.
Highly experimental software to emulate Wii U applications on PC.
#System requirements:
- Windows 7 (x64) or above
- OpenGL 4.0 (4.5 is used if available)
- RAM: 4 GB minimum, 6 GB or more recommended
Get-Process "Cemu*" | Stop-Process -Force -ErrorAction SilentlyContinue
$ErrorActionPreference = 'Stop'
$packageName = 'cemu'
$url32 = 'http://cemu.info/releases/cemu_1.15.18.zip'
$checksum32 = '5554bbb01572f144631e1a254d926be99b691fa48537969e182942e8e44ed9c1'
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
$cemu_folder = "$toolsPath\cemu"
$packageArgs = @{
packageName = $packageName
url = $url32
checksum = $checksum32
checksumType = 'sha256'
unzipLocation = $toolsPath
}
Install-ChocolateyZipPackage @packageArgs
$latest = (Get-ChildItem $toolsPath -Recurse -ErrorAction SilentlyContinue | Where-Object {$_.Name -like '*cemu*'} | sort {$_.CreationTime} | select -First 1).FullName
Robocopy $latest $cemu_folder /R:0 /W:0 /E /XO
Remove-Item $latest -Recurse -Force -ErrorAction SilentlyContinue
Install-ChocolateyShortcut -shortcutFilePath "$env:ALLUSERSPROFILE\Microsoft\Windows\Start Menu\Programs\CEMU.lnk" "$cemu_folder\cemu.exe" -WorkingDirectory "$cemu_folder" -RunAsAdmin
$icon_name = (Get-ChildItem "$env:ALLUSERSPROFILE\Microsoft\Windows\Start Menu\Programs" -Filter "CEMU.lnk" -ErrorAction SilentlyContinue).FullName
Remove-Item $icon_name -ErrorAction SilentlyContinue
Log in or click on link to see number of positives.
- cemu.1.15.18.0.nupkg (6a264c9f83e1) - ## / 60
- cemu_1.15.18.zip (5554bbb01572) - ## / 58
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 |
---|---|---|---|
CEMU - Wii U emulator 1.22.4.0 | 285 | Friday, January 15, 2021 | Approved |
CEMU - Wii U emulator 1.22.3.100 | 364 | Saturday, January 2, 2021 | Approved |
CEMU - Wii U emulator 1.22.2.0 | 416 | Saturday, December 19, 2020 | Approved |
CEMU - Wii U emulator 1.22.1.0 | 291 | Wednesday, December 9, 2020 | Approved |
CEMU - Wii U emulator 1.22.0.1000 | 428 | Sunday, November 22, 2020 | Approved |
CEMU - Wii U emulator 1.22.0.900 | 20 | Sunday, November 22, 2020 | Approved |
CEMU - Wii U emulator 1.22.0.700 | 73 | Saturday, November 21, 2020 | Approved |
CEMU - Wii U emulator 1.22.0.600 | 24 | Saturday, November 21, 2020 | Approved |
CEMU - Wii U emulator 1.21.5.0 | 300 | Friday, November 6, 2020 | Approved |
CEMU - Wii U emulator 1.21.4.0 | 262 | Friday, October 23, 2020 | Approved |
CEMU - Wii U emulator 1.21.3.0 | 257 | Friday, October 9, 2020 | Approved |
CEMU - Wii U emulator 1.21.2.0 | 234 | Friday, September 25, 2020 | Approved |
CEMU - Wii U emulator 1.21.1.100 | 220 | Saturday, September 12, 2020 | Approved |
CEMU - Wii U emulator 1.21.1.0 | 45 | Saturday, September 12, 2020 | Approved |
CEMU - Wii U emulator 1.21.0.0 | 269 | Saturday, August 29, 2020 | Approved |
CEMU - Wii U emulator 1.20.2.100 | 225 | Saturday, August 15, 2020 | Approved |
CEMU - Wii U emulator 1.20.1.200 | 263 | Friday, July 31, 2020 | Approved |
CEMU - Wii U emulator 1.20.0.200 | 237 | Saturday, July 18, 2020 | Approved |
CEMU - Wii U emulator 1.19.3.0 | 301 | Saturday, June 27, 2020 | Approved |
CEMU - Wii U emulator 1.19.2.200 | 238 | Saturday, June 13, 2020 | Approved |
CEMU - Wii U emulator 1.19.2.100 | 40 | Friday, June 12, 2020 | Approved |
CEMU - Wii U emulator 1.19.1.100 | 273 | Friday, May 29, 2020 | Approved |
CEMU - Wii U emulator 1.19.0.300 | 234 | Friday, May 15, 2020 | Approved |
CEMU - Wii U emulator 1.18.2.200 | 50 | Sunday, May 3, 2020 | Approved |
CEMU - Wii U emulator 1.18.1.0 | 324 | Friday, April 17, 2020 | Approved |
CEMU - Wii U emulator 1.18.0.200 | 194 | Sunday, April 5, 2020 | Approved |
CEMU - Wii U emulator 1.18.0.100 | 85 | Saturday, April 4, 2020 | Approved |
CEMU - Wii U emulator 1.17.4.0 | 205 | Friday, March 20, 2020 | Approved |
CEMU - Wii U emulator 1.17.3.0 | 201 | Saturday, March 7, 2020 | Approved |
CEMU - Wii U emulator 1.17.2.100 | 191 | Friday, February 21, 2020 | Approved |
CEMU - Wii U emulator 1.17.1.0 | 204 | Saturday, February 8, 2020 | Approved |
CEMU - Wii U emulator 1.17.0.400 | 133 | Saturday, February 1, 2020 | Approved |
CEMU - Wii U emulator 1.17.0.300 | 115 | Saturday, January 25, 2020 | Approved |
CEMU - Wii U emulator 1.16.1.0 | 203 | Friday, January 3, 2020 | Approved |
CEMU - Wii U emulator 1.16.0.300 | 168 | Saturday, December 21, 2019 | Approved |
CEMU - Wii U emulator 1.16.0.200 | 91 | Friday, December 20, 2019 | Approved |
CEMU - Wii U emulator 1.15.20.500 | 141 | Wednesday, December 11, 2019 | Approved |
CEMU - Wii U emulator 1.15.20.400 | 104 | Sunday, December 8, 2019 | Approved |
CEMU - Wii U emulator 1.15.20.300 | 90 | Friday, December 6, 2019 | Approved |
CEMU - Wii U emulator 1.15.19.0 | 144 | Saturday, November 23, 2019 | Approved |
CEMU - Wii U emulator 1.15.18.0 | 143 | Saturday, November 9, 2019 | Approved |
CEMU - Wii U emulator 1.15.17.200 | 170 | Friday, October 25, 2019 | Approved |
CEMU - Wii U emulator 1.15.16.200 | 153 | Saturday, October 12, 2019 | Approved |
CEMU - Wii U emulator 1.15.16.100 | 68 | Wednesday, October 16, 2019 | Approved |
CEMU - Wii U emulator 1.15.15.100 | 152 | Saturday, September 28, 2019 | Approved |
CEMU - Wii U emulator 1.15.14.0 | 141 | Friday, September 13, 2019 | Approved |
CEMU - Wii U emulator 1.15.13.200 | 167 | Saturday, August 31, 2019 | Approved |
CEMU - Wii U emulator 1.15.13.100 | 86 | Thursday, September 5, 2019 | Approved |
CEMU - Wii U emulator 1.15.12.100 | 186 | Saturday, August 17, 2019 | Approved |
CEMU - Wii U emulator 1.15.11.200 | 175 | Saturday, August 3, 2019 | Approved |
CEMU - Wii U emulator 1.15.11.0 | 71 | Friday, August 2, 2019 | Approved |
CEMU - Wii U emulator 1.15.10.0 | 209 | Saturday, July 6, 2019 | Approved |
CEMU - Wii U emulator 1.15.9.200 | 148 | Friday, June 21, 2019 | Approved |
CEMU - Wii U emulator 1.15.8.0 | 173 | Friday, June 7, 2019 | Approved |
CEMU - Wii U emulator 1.15.7.200 | 161 | Saturday, May 25, 2019 | Approved |
CEMU - Wii U emulator 1.15.6.200 | 162 | Friday, May 10, 2019 | Approved |
CEMU - Wii U emulator 1.15.5.200 | 167 | Friday, April 26, 2019 | Approved |
CEMU - Wii U emulator 1.15.4.100 | 172 | Sunday, April 7, 2019 | Approved |
CEMU - Wii U emulator 1.15.3.100 | 200 | Friday, March 8, 2019 | Approved |
CEMU - Wii U emulator 1.15.2.300 | 227 | Saturday, February 9, 2019 | Approved |
CEMU - Wii U emulator 1.15.2.0 | 174 | Tuesday, February 5, 2019 | Approved |
CEMU - Wii U emulator 1.15.1.0 | 210 | Monday, January 7, 2019 | Approved |
CEMU - Wii U emulator 1.15.0.0 | 415 | Wednesday, December 5, 2018 | Approved |
CEMU - Wii U emulator 1.14.0.20181103 | 257 | Saturday, November 3, 2018 | Approved |
CEMU - Wii U emulator 1.14.0.0 | 322 | Tuesday, October 30, 2018 | Approved |
CEMU - Wii U emulator 1.13.2.0 | 279 | Friday, October 12, 2018 | Approved |
CEMU - Wii U emulator 1.13.1 | 285 | Tuesday, September 4, 2018 | Approved |
CEMU - Wii U emulator 1.13.0.20180806 | 355 | Monday, August 6, 2018 | Approved |
CEMU - Wii U emulator 1.13.0 | 257 | Sunday, August 5, 2018 | Approved |
CEMU - Wii U emulator 1.12.2.20180702 | 323 | Monday, July 2, 2018 | Approved |
CEMU - Wii U emulator 1.12.2 | 366 | Sunday, June 24, 2018 | Approved |
CEMU - Wii U emulator 1.12.1 | 307 | Friday, June 1, 2018 | Approved |
CEMU - Wii U emulator 1.12.0 | 588 | Wednesday, May 2, 2018 | Approved |
CEMU - Wii U emulator 1.11.6 | 403 | Tuesday, April 3, 2018 | Approved |
CEMU - Wii U emulator 1.11.5 | 398 | Saturday, March 3, 2018 | Approved |
CEMU - Wii U emulator 1.11.4 | 377 | Tuesday, February 6, 2018 | Approved |
CEMU - Wii U emulator 1.11.3 | 588 | Monday, January 1, 2018 | Approved |
CEMU - Wii U emulator 1.11.2 | 533 | Thursday, December 14, 2017 | Approved |
CEMU - Wii U emulator 1.11.1 | 435 | Monday, November 27, 2017 | Approved |
CEMU - Wii U emulator 1.11.0 | 534 | Tuesday, October 31, 2017 | Approved |
CEMU - Wii U emulator 1.10.0 | 457 | Tuesday, October 3, 2017 | Approved |
CEMU - Wii U emulator 1.9.1 | 509 | Tuesday, August 29, 2017 | Approved |
CEMU - Wii U emulator 1.9.0 | 387 | Wednesday, August 2, 2017 | Approved |
CEMU - Wii U emulator 1.8.2 | 387 | Tuesday, July 25, 2017 | Approved |
CEMU - Wii U emulator 1.8.1 | 434 | Friday, June 30, 2017 | Approved |
CEMU - Wii U emulator 1.8.0 | 423 | Tuesday, May 30, 2017 | Approved |
CEMU - Wii U emulator 1.7.5 | 372 | Monday, May 1, 2017 | Approved |
CEMU - Wii U emulator 1.7.4 | 408 | Sunday, April 9, 2017 | Approved |
CEMU - Wii U emulator 1.7.3.20170319 | 351 | Sunday, March 19, 2017 | Approved |
CEMU - Wii U emulator 1.7.3 | 384 | Friday, March 17, 2017 | Approved |
CEMU - Wii U emulator 1.7.2 | 384 | Friday, February 24, 2017 | Approved |
CEMU - Wii U emulator 1.7.1 | 381 | Friday, February 10, 2017 | Approved |
CEMU - Wii U emulator 1.7.0 | 379 | Monday, January 16, 2017 | Approved |
CEMU - Wii U emulator 1.6.4.1 | 330 | Tuesday, December 27, 2016 | Approved |
CEMU - Wii U emulator 1.6.4 | 375 | Monday, December 19, 2016 | Approved |
CEMU - Wii U emulator 1.6.3 | 448 | Monday, November 28, 2016 | Approved |
CEMU - Wii U emulator 1.6.2 | 380 | Sunday, November 6, 2016 | Approved |
CEMU - Wii U emulator 1.6.1 | 327 | Thursday, November 3, 2016 | Approved |
Ground Rules:
- This discussion is only about CEMU - Wii U emulator and the CEMU - Wii U 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 CEMU - Wii U 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.