Downloads:
2,065,400
Downloads of v 1.5.1881:
34,816
Last Update:
17 Jul 2023
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
winget-cli winget- 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
WinGet Client (Install)
This is not the latest version of WinGet Client (Install) available.
- 1
- 2
- 3
1.5.1881 | Updated: 17 Jul 2023
- 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,065,400
Downloads of v 1.5.1881:
34,816
Maintainer(s):
Software Author(s):
- Microsoft
WinGet Client (Install) 1.5.1881
This is not the latest version of WinGet Client (Install) available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install WinGet Client (Install), run the following command from the command line or from PowerShell:
To upgrade WinGet Client (Install), run the following command from the command line or from PowerShell:
To uninstall WinGet Client (Install), run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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: (additional options)
choco download winget-cli --internalize --version=1.5.1881 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade winget-cli -y --source="'INTERNAL REPO URL'" --version="'1.5.1881'" [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 winget-cli -y --source="'INTERNAL REPO URL'" --version="'1.5.1881'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install winget-cli
win_chocolatey:
name: winget-cli
version: '1.5.1881'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'winget-cli' do
action :install
source 'INTERNAL REPO URL'
version '1.5.1881'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.5.1881"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.5.1881',
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.
This package was approved by moderator Windos on 19 Jul 2023.
The winget command line tool enables users to discover, install, upgrade, remove and configure applications on Windows 10 and Windows 11 computers. This tool is the client interface to the Windows Package Manager service.
Notes:
- WinGet-CLI requires at least Windows 10 version 1809 (build 17763). See https://github.com/microsoft/winget-cli#installing-the-client for more information.
- WinGet-CLI requires 'Microsoft.UI.Xaml.2.7' Appx package and does not work if a later (2.8+) version only is installed. The Chocolatey package takes care of this by adding the
microsoft-ui-xaml-2-7
as a dependency. - This is an automatically updated package. If you find it out of date by more than a week, please let the maintainer know using the 'Contact Maintainers' link on the package page.
md5: 28BC9CF3A8BD96FFACF040321BB65016 | sha1: 6F37645EF3CF4C94218B2BDA2B144206FDDCF774 | sha256: 4A6F7FFEE0E5F2FD0CF0CEE9099515B7B6930CE22BB1C7B070E776D3891BB990 | sha512: 01E9CB9203DAFBDEF820A9886D88E22F94A2886777631A25ED6D44082CA62F7CAC697F6CE6FBF942B72187AD1ED5ADF144114691F5BDF5CA9BBBD1814998BE16
$ErrorActionPreference = 'Stop'
$toolsDir = "$(Split-Path -Parent $MyInvocation.MyCommand.Definition)"
. $(Join-Path -Path $toolsDir -ChildPath "$($env:ChocolateyPackageName)-helpers.ps1")
$failToRemove = $false
Get-AppxProvisionedPackage -Online | Where-Object -Property DisplayName -eq $internalAppXPackage.PackageName | ForEach-Object {
# sometimes this cmdlet throws an error about a conflict ir dependency but goes ahead and removes it anyway.
# this is why we are trapping it. We check if the packages have actually been removed, below.
try {
Remove-AppxProvisionedPackage -Packagename $_.PackageName -AllUsers -Online | Out-Null
}
catch {
$failToRemove = $true
}
}
if ($failToRemove) {
# Lets check if the packages actually didn't get removed
if (@(Get-AppxProvisionedPackage -Online | Where-Object -Property DisplayName -eq $internalAppXPackage.PackageName) -gt 0) {
Write-Warning "At least one app package architecture failed to uninstall. PLease uninstall it manually."
}
}
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
1. The software is downloaded from https://github.com/microsoft/winget-cli/releases - select the correct version.
2. You can use one of the following methods to obtain the checksum:
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
Installer URL: https://github.com/microsoft/winget-cli/releases/download/v1.5.1881/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle
Installer Checksum: 4A6F7FFEE0E5F2FD0CF0CEE9099515B7B6930CE22BB1C7B070E776D3891BB990
Installer Checksum Type: SHA256
License URL: https://github.com/microsoft/winget-cli/releases/download/v1.5.1881/c6bee58ade21451eb54dc52e559a314c_License1.xml
License Checksum: 7EA91645992B0769307826628F98BAE86B27C14C7787D7585CE5DFB9FD413A15
License Checksum Type: SHA256
File 'LICENSE.txt' is obtained from https://github.com/microsoft/winget-cli/blob/master/LICENSE
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE
$ErrorActionPreference = 'Stop'
$internalAppXPackage = @{
SoftwareName = 'WinGet-CLI'
PackageName = 'Microsoft.DesktopAppInstaller'
Version = '2023.707.2257.0'
}
$packagedAppxVersion = '1.5.1881.0'
<License xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" ID="7dab63cb-1a19-4b21-9b29-efcdd046faed" LicenseID="517cfcaf-138b-1796-2cea-62892204250a" ContentID="97612282-d1e8-1d6a-9e92-c271e7f177ef" Version="3" xmlns="urn:schemas-microsoft-com:windows:store:licensing:ls"><Binding Binding_Type="Machine"><ProductID>9NBLGGH4NNS1</ProductID><PFM>microsoft.desktopappinstaller_8wekyb3d8bbwe</PFM><LicenseInstanceID>1f2ba8a9-f0c0-470c-9948-430fd5e893e2</LicenseInstanceID><RequestorID>2c3f1d47-426d-c7d7-face-ef1add208818</RequestorID><LeaseRequired>False</LeaseRequired></Binding><LicenseInfo Type="Full" LicenseUsage="Offline" LicenseCategory="OEM"><IssuedDate>2023-07-10T17:54:43.3828778Z</IssuedDate><LastUpdateDate>2023-07-10T17:54:43.3916214Z</LastUpdateDate><BeginDate>2023-07-10T17:54:43.391621Z</BeginDate></LicenseInfo><SPLicenseBlock>FAAAAMAAAADJAAAACgAAAAMAAQDjRaxkAgDLAAAAEAAAAK/8fFGLE5YXLOpiiSIEJQrOAAAAWAAAAG0AaQBjAHIAbwBzAG8AZgB0AC4AZABlAHMAawB0AG8AcABhAHAAcABpAG4AcwB0AGEAbABsAGUAcgBfADgAdwBlAGsAeQBiADMAZAA4AGIAYgB3AGUAAADNAAAAIgAAAAEAPHRzkyJyTeprvahJYVs0C0HSgOyvT4hrOkNjQkRP3ZkgAAAABAAAAONFrGTMAAAARAAAAAEAAgD9yKZusDXPzr6QZPSvxOxoX5KsmmymFHgVsDiXy4QbkAX5n4WuVrd3bqL/6c4xsJ+jwK1whXZkBh1/lzYSz4NQ</SPLicenseBlock><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /><SignatureMethod Algorithm="http://www.w3.org/2001/04/xmldsig-more#rsa-sha256" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2001/04/xmlenc#sha256" /><DigestValue>gqRVzue3RJEp/ed8JS6mlxSYX1W77fzMZS22KX5C4ao=</DigestValue></Reference></SignedInfo><SignatureValue>IbxODIogSDFZLLw1P4TkfpdMTAUdr3tKD7TmOV0qBVWotxE80yIWrGYuZOthNzy24qQUumlwZHnycHQOUFtFkN5r+dx82qdSaUITNEM8EJoO9ERLSc6ymtmNIHLYWJtz+9ugsP+RXsU5kCdU87MHVDpDd8Qmxfm1XG35Wx1yFJIUXwh+KLeITMPu24n+n84X2PqQw5/0NX+7/GX3Xmqeu1uCPeMeo7VYnHYGSxKI+Xdc31nZwZ8Ay0X+OJQVV5CDFu9cz5aWyDbKl36d229e5yT3azryB8Mj+mf67motz/dd1TCWdHnk2Zxg6k/lk7h0IKWK6WJVX2Jw17vNkqe3lg==</SignatureValue><KeyInfo Id="_0f81b24f-bc40-2712-0d5d-e7c10085c330"><KeyValue><RSAKeyValue><Modulus>oVSJXItDsaAIfwyR9bhh/ZSppCAO+in9POLWdC2/TQodgeHZzbdBvxJvKhpbrq6ZP0FsSElLwRoLAmv7zIuVw3Vb7tfQt5bjCDHRAG9fesNlYKV3ybyNrHyzglfZPRB5UJZw32yi03zQa+LLa05fjs6joEmlHc5BrGQrGrbNMBahz4cmuxKC4/dhEb7JZFUkc0MRhs/M3Ve511HQfKuG+92g1OffJdRsAPzWRdskPoN35knnqno7F85OBmGV/LNBgdtDWUH6di1eUCQFeKGfMp+Q/LFUX9jawTTEPn72tYbpYASug05Skcg6KTHlcLGzevxGw7BYsOsqfDka5n0YGw==</Modulus><Exponent>AAEAAQ==</Exponent></RSAKeyValue></KeyValue></KeyInfo></Signature></License>
Log in or click on link to see number of positives.
- winget-cli.1.5.1881.nupkg (6cc865aef1d3) - ## / 63
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 |
---|---|---|---|---|
WinGet Client (Install) 1.9.25180 | 7160 | Monday, October 28, 2024 | Approved | |
WinGet Client (Install) 1.8.1911 | 202683 | Wednesday, July 10, 2024 | Approved | |
WinGet Client (Install) 1.8.1791 | 31 | Saturday, June 29, 2024 | Exempted | |
WinGet Client (Install) 1.7.11261 | 114149 | Tuesday, May 7, 2024 | Approved | |
WinGet Client (Install) 1.7.11132 | 21754 | Wednesday, April 24, 2024 | Exempted | |
WinGet Client (Install) 1.7.10861 | 140736 | Thursday, March 28, 2024 | Exempted | |
WinGet Client (Install) 1.7.10661 | 101058 | Wednesday, March 13, 2024 | Exempted | |
WinGet Client (Install) 1.7.10582 | 88910 | Wednesday, February 28, 2024 | Exempted | |
WinGet Client (Install) 1.6.3482 | 519476 | Tuesday, December 19, 2023 | Exempted | |
WinGet Client (Install) 1.6.3421 | 36183 | Tuesday, December 12, 2023 | Approved | |
WinGet Client (Install) 1.6.3133 | 320187 | Saturday, November 11, 2023 | Exempted | |
WinGet Client (Install) 1.6.2771 | 392149 | Friday, October 6, 2023 | Approved | |
WinGet Client (Install) 1.6.2721 | 13340 | Saturday, September 30, 2023 | Exempted | |
WinGet Client (Install) 1.5.2201 | 47165 | Thursday, August 10, 2023 | Approved | |
WinGet Client (Install) 1.5.1881 | 34816 | Monday, July 17, 2023 | Approved | |
WinGet Client (Install) 1.4.11071.0 | 25480 | Saturday, June 3, 2023 | Approved |
2023 Microsoft Corporation
This release is the second stable release of Windows Package Manager 1.5 for Windows 10 (1809+) and Windows 11.
This release contains a minor servicing fix to improve the ARP correlation experience as well as increasing the maximum length of the installation notes.
The Microsoft.WinGet.Client PowerShell module has been published to the PowerShell Gallery.
Experimental features have been disabled in this release. We will follow this release with another preview release build at GitHub so users can continue with experimental features available.
What's Changed
- Do not attempt post install ARP correlation if PackageFamilyName is provided and present for the user by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/3391
- Relax InstallationNotes max length by @yao-msft in https://github.com/microsoft/winget-cli/pull/3397
Full Changelog: https://github.com/microsoft/winget-cli/compare/release-v1.5.1572...release-v1.5.1881
-
- microsoft-ui-xaml-2-7 (≥ 2.7.0)
- microsoft-vclibs-140-00 (≥ 14.0.30704)
Ground Rules:
- This discussion is only about WinGet Client (Install) and the WinGet Client (Install) 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 WinGet Client (Install), 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.