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:
2,232
Downloads of v 0.8.0:
180
Last Update:
30 Dec 2018
Package Maintainer(s):
Software Author(s):
- Moonlight Game Streaming Project
Tags:
moonlight-qt game streaming moonlight- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Moonlight PC
This is not the latest version of Moonlight PC available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
2,232
Downloads of v 0.8.0:
180
Software Author(s):
- Moonlight Game Streaming 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.
Moonlight PC 0.8.0
This is not the latest version of Moonlight PC available.
All Checks are Passing
2 Passing Test
To install Moonlight PC, run the following command from the command line or from PowerShell:
To upgrade Moonlight PC, run the following command from the command line or from PowerShell:
To uninstall Moonlight PC, 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 moonlight-qt --internalize --version=0.8.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 moonlight-qt -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 moonlight-qt -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 moonlight-qt installed
win_chocolatey:
name: moonlight-qt
state: present
version: 0.8.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 'moonlight-qt' do
action :install
version '0.8.0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: moonlight-qt,
Version: 0.8.0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller moonlight-qt
{
Name = 'moonlight-qt'
Ensure = 'Present'
Version = '0.8.0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'moonlight-qt':
provider => 'chocolatey',
ensure => '0.8.0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install moonlight-qt version="0.8.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 by moderator gep13 on 03 Jan 2019.
Moonlight PC is an open source implementation of NVIDIA's GameStream, as used by the NVIDIA Shield, but built to run on Windows, Mac, and Linux.
$ErrorActionPreference = 'Stop'; # stop on all errors
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = 'https://github.com/moonlight-stream/moonlight-qt/releases/download/v0.8.0/MoonlightPortable-x86-0.8.0.zip'
$url64 = 'https://github.com/moonlight-stream/moonlight-qt/releases/download/v0.8.0/MoonlightPortable-x64-0.8.0.zip'
$packageArgs = @{
packageName = $env:ChocolateyPackageName
unzipLocation = $toolsDir
url = $url
url64bit = $url64
checksum = 'BC63781735B0D0E961FD65BDEDB393CC'
checksumType = 'md5'
checksum64 = '2B0D0086FC727EDB3F7C91239F723322'
checksumType64= 'md5'
}
Install-ChocolateyZipPackage @packageArgs
Install-ChocolateyShortcut -ShortcutFilePath "$([Environment]::GetFolderPath('CommonStartMenu'))\Programs\Moonlight.lnk" -Target "$toolsDir\moonlight.exe"
remove-item "$([Environment]::GetFolderPath('CommonStartMenu'))\Programs\Moonlight.lnk"
Log in or click on link to see number of positives.
- vcruntime140.dll (02fcb91909ed) - ## / 68
- concrt140.dll (7c73819a903d) - ## / 67
- msvcp140.dll (29206a9a3abb) - ## / 70
- moonlight-qt.0.8.0.nupkg (1637c2bceee9) - ## / 60
- MoonlightPortable-x64-0.8.0.zip (145f8f16400c) - ## / 59
- MoonlightPortable-x86-0.8.0.zip (c852ab39f729) - ## / 59
- AntiHooking.dll (b560a41d7eab) - ## / 69
- avcodec-58.dll (ce7b2a911e3d) - ## / 66
- avutil-56.dll (37e1aaa0e00b) - ## / 70
- d3dcompiler_47.dll (ee5de065dfda) - ## / 70
- dialogplugin.dll (712a29d782a7) - ## / 68
- dialogsprivateplugin.dll (b7c242d31622) - ## / 70
- libcrypto-1_1-x64.dll (30256252273f) - ## / 70
- libeay32.dll (7541e517ede9) - ## / 70
- libEGL.dll (cfc26dd5b7f8) - ## / 69
- libGLESV2.dll (8216453bf1ef) - ## / 70
- libssl-1_1-x64.dll (15de9d548e3b) - ## / 70
- modelsplugin.dll (7656b65431ad) - ## / 68
- Moonlight.exe (21a3180a1f1d) - ## / 70
- msvcp140_1.dll (be63e698f132) - ## / 68
- msvcp140_2.dll (be51db03d6bd) - ## / 67
- opus.dll (f66683b98534) - ## / 67
- qgenericbearer.dll (a88bf8a0c6d6) - ## / 69
- qgif.dll (4c450f0ffed1) - ## / 68
- qicns.dll (3245a393ab36) - ## / 70
- qico.dll (ff0bc29fc88f) - ## / 70
- qjpeg.dll (957c2a86b1dc) - ## / 70
- qmldbg_debugger.dll (cb0508addeff) - ## / 68
- qmldbg_inspector.dll (ff12eb5dda1d) - ## / 70
- qmldbg_local.dll (469edb429ca5) - ## / 70
- qmldbg_messages.dll (bdef23591907) - ## / 68
- qmldbg_native.dll (95665a42c028) - ## / 68
- qmldbg_nativedebugger.dll (4c2197edab61) - ## / 67
- qmldbg_preview.dll (462ebf39d0c3) - ## / 69
- qmldbg_profiler.dll (58db79deab54) - ## / 70
- qmldbg_quickprofiler.dll (85b1f0e3a6b7) - ## / 68
- qmldbg_server.dll (52fdcb85d619) - ## / 67
- qmldbg_tcp.dll (cd8039995024) - ## / 68
- qmlfolderlistmodelplugin.dll (98ea93b6ca3f) - ## / 68
- qmlsettingsplugin.dll (53f768fc12ac) - ## / 70
- qquicklayoutsplugin.dll (7c82daeab4d7) - ## / 70
- qsgd3d12backend.dll (1797e7297941) - ## / 70
- qsvg.dll (6e75e045e4b1) - ## / 68
- qsvgicon.dll (50f46c161ab5) - ## / 70
- Qt5Core.dll (a9da64c9e3d6) - ## / 69
- Qt5Gui.dll (db1f06b50ad5) - ## / 69
- Qt5Network.dll (4d3d3976670e) - ## / 69
- Qt5Qml.dll (fc8f6a6a4ad1) - ## / 68
- Qt5Quick.dll (4133167b7412) - ## / 69
- Qt5QuickControls2.dll (32a0b69e99c8) - ## / 69
- Qt5QuickTemplates2.dll (a8b3b63f0408) - ## / 70
- Qt5RemoteObjects.dll (6a2efc7a121e) - ## / 69
- Qt5Svg.dll (eb60442a4681) - ## / 68
- Qt5Widgets.dll (be20212e31a8) - ## / 69
- qtga.dll (ba8cbb747960) - ## / 69
- qtgraphicaleffectsplugin.dll (e2af70bb5da9) - ## / 69
- qtgraphicaleffectsprivate.dll (5aa8f00bc945) - ## / 68
- qtiff.dll (52b4c32a45dc) - ## / 69
- qtqmlremoteobjects.dll (952f0c96b7ec) - ## / 70
- qtqmlstatemachine.dll (c90453f02e50) - ## / 70
- qtquick2plugin.dll (2387a83505f8) - ## / 69
- qtquickcontrols2fusionstyleplugin.dll (850e6f568c27) - ## / 69
- qtquickcontrols2imaginestyleplugin.dll (f8a92c0f3be8) - ## / 70
- qtquickcontrols2materialstyleplugin.dll (2144c934bdd9) - ## / 70
- qtquickcontrols2plugin.dll (fddef3e92270) - ## / 70
- qtquickcontrols2universalstyleplugin.dll (08eb94120dbb) - ## / 69
- qtquickcontrolsplugin.dll (9ae6505b33e6) - ## / 64
- qtquickextrasflatplugin.dll (d8f2e1aedfc7) - ## / 70
- qtquickextrasplugin.dll (2f5c289ef5fc) - ## / 70
- qtquicktemplates2plugin.dll (39d07fe4bfc8) - ## / 70
- qwbmp.dll (d0478c9c3279) - ## / 70
- qwebp.dll (877cb4be1ef4) - ## / 70
- qwindows.dll (2a63ce2e61be) - ## / 69
- qwindowsvistastyle.dll (b2d80e902f79) - ## / 69
- SDL2.dll (a6de255958a0) - ## / 70
- ssleay32.dll (79f8aef978a7) - ## / 69
- vccorlib140.dll (a4fc9ec570eb) - ## / 63
- widgetsplugin.dll (9193ba4fceba) - ## / 68
- windowplugin.dll (b95329413824) - ## / 68
- AntiHooking.dll (f29ca0d68978) - ## / 69
- avcodec-58.dll (ceba9d03a688) - ## / 70
- avutil-56.dll (20286bcbcff7) - ## / 70
- concrt140.dll (049e56f9c97e) - ## / 68
- d3dcompiler_47.dll (a04786f1f57d) - ## / 70
- dialogplugin.dll (388a1b2d8d3f) - ## / 70
- dialogsprivateplugin.dll (284bec51aadb) - ## / 71
- libcrypto-1_1.dll (a1b29f31165f) - ## / 70
- libeay32.dll (ca7be33b1482) - ## / 69
- libEGL.dll (bc724a5cebbb) - ## / 70
- libGLESV2.dll (127a6dab9c3c) - ## / 69
- libssl-1_1.dll (9b923b7e89d6) - ## / 69
- modelsplugin.dll (68d002b17633) - ## / 69
- Moonlight.exe (a45a71b80c0b) - ## / 70
- msvcp140.dll (1ecd899f18b5) - ## / 70
- msvcp140_1.dll (93d42826a58e) - ## / 66
- msvcp140_2.dll (a39dd4202cec) - ## / 67
- opus.dll (17d11980486d) - ## / 69
- qgenericbearer.dll (9a026e0118a1) - ## / 69
- qgif.dll (9187a8ea2361) - ## / 70
- qicns.dll (3683ac32309d) - ## / 70
- qico.dll (fc686423c360) - ## / 69
- qjpeg.dll (49009b41a433) - ## / 69
- qmldbg_debugger.dll (6e35de2935cd) - ## / 69
- qmldbg_inspector.dll (25f32c10e4ee) - ## / 66
- qmldbg_local.dll (c4ad6db77623) - ## / 70
- qmldbg_messages.dll (5b3ce3cdbe2b) - ## / 69
- qmldbg_native.dll (3cd03fcd06ef) - ## / 68
- qmldbg_nativedebugger.dll (229956d970e3) - ## / 70
- qmldbg_preview.dll (1ae91f226f8d) - ## / 69
- qmldbg_profiler.dll (22a8e4402dcb) - ## / 70
- qmldbg_quickprofiler.dll (882da16c8ae8) - ## / 69
- qmldbg_server.dll (27d0be9f4b3b) - ## / 70
- qmldbg_tcp.dll (f1f23883ad3e) - ## / 69
- qmlfolderlistmodelplugin.dll (838db01811f7) - ## / 69
- qmlsettingsplugin.dll (4ceca0c54eac) - ## / 70
- qquicklayoutsplugin.dll (31bba06d7faa) - ## / 70
- qsgd3d12backend.dll (b80fff829b3f) - ## / 70
- qsvg.dll (9f9f53c7b1df) - ## / 69
- qsvgicon.dll (8b6ec3dddbae) - ## / 71
- Qt5Core.dll (bda8e235731a) - ## / 69
- Qt5Gui.dll (42a2432aead4) - ## / 68
- Qt5Network.dll (df3735420368) - ## / 68
- Qt5Qml.dll (e2baf746c439) - ## / 69
- Qt5Quick.dll (7335b50f8008) - ## / 69
- Qt5QuickControls2.dll (da5402beef20) - ## / 68
- Qt5QuickTemplates2.dll (0a02b977ef7b) - ## / 68
- Qt5RemoteObjects.dll (2523456dad50) - ## / 70
- Qt5Svg.dll (26a2e9dce0b8) - ## / 70
- Qt5Widgets.dll (b11d45c367bd) - ## / 68
- qtga.dll (909bee1a6373) - ## / 67
- qtgraphicaleffectsplugin.dll (d175f53dbb1b) - ## / 69
- qtgraphicaleffectsprivate.dll (8f048fc2f411) - ## / 68
- qtiff.dll (41cca3bd01b6) - ## / 70
- qtqmlremoteobjects.dll (993007dd0395) - ## / 69
- qtqmlstatemachine.dll (fcba2584e2fa) - ## / 70
- qtquick2plugin.dll (b42ac51a3afb) - ## / 69
- qtquickcontrols2fusionstyleplugin.dll (1943e1182828) - ## / 69
- qtquickcontrols2imaginestyleplugin.dll (a4e8f6282006) - ## / 70
- qtquickcontrols2materialstyleplugin.dll (bf95e0f3cd7c) - ## / 70
- qtquickcontrols2plugin.dll (c045736cb2a3) - ## / 70
- qtquickcontrols2universalstyleplugin.dll (50e8f9236150) - ## / 68
- qtquickcontrolsplugin.dll (406da9cf200f) - ## / 71
- qtquickextrasflatplugin.dll (6e2aaf18b02a) - ## / 69
- qtquickextrasplugin.dll (b5d7cfb004ca) - ## / 70
- qtquicktemplates2plugin.dll (3b178b2dfce2) - ## / 68
- qwbmp.dll (fcc21c8b6b8f) - ## / 69
- qwebp.dll (c2e3aefb10fb) - ## / 69
- qwindows.dll (4119212bead9) - ## / 69
- qwindowsvistastyle.dll (a190d7563af5) - ## / 69
- SDL2.dll (b5a422ad4947) - ## / 70
- ssleay32.dll (f80cdddb0cd6) - ## / 70
- vccorlib140.dll (31529aa992c2) - ## / 68
- vcruntime140.dll (7a114a9c1ca8) - ## / 68
- widgetsplugin.dll (ac42643c8da6) - ## / 71
- windowplugin.dll (77a659e9d4fc) - ## / 70
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 |
---|---|---|---|
Moonlight PC 2.2.0 | 462 | Thursday, September 10, 2020 | Approved |
Moonlight PC 2.1.0 | 358 | Sunday, May 17, 2020 | Approved |
Moonlight PC 1.2.1 | 359 | Sunday, December 22, 2019 | Approved |
Moonlight PC 1.2.0 | 100 | Wednesday, December 18, 2019 | Approved |
Moonlight PC 1.1.1 | 161 | Monday, September 30, 2019 | Approved |
Moonlight PC 1.1.0 | 128 | Tuesday, August 6, 2019 | Approved |
Moonlight PC 1.0.1 | 151 | Monday, May 27, 2019 | Approved |
Moonlight PC 1.0.0 | 104 | Monday, May 27, 2019 | Approved |
Moonlight PC 0.8.0 | 180 | Sunday, December 30, 2018 | Approved |
Moonlight PC 0.7.0 | 148 | Thursday, December 20, 2018 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Moonlight PC and the Moonlight PC 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 Moonlight PC, 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.