Downloads:
2,065,400
Downloads of v 1.7.11261:
114,149
Last Update:
07 May 2024
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.7.11261 | Updated: 07 May 2024
- 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.7.11261:
114,149
Maintainer(s):
Software Author(s):
- Microsoft
WinGet Client (Install) 1.7.11261
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
This Package Contains an Exempted Check
Not All Tests Have Passed
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.7.11261 --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.7.11261'" [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.7.11261'"
$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.7.11261'
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.7.11261'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.7.11261"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.7.11261',
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 08 Jun 2024.
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.
$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."
}
}
$ErrorActionPreference = 'Stop'
$internalAppXPackage = @{
SoftwareName = 'WinGet-CLI'
PackageName = 'Microsoft.DesktopAppInstaller'
Version = '2024.506.2113.0'
}
$packagedAppxVersion = '1.7.11261.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 |
---|---|---|---|---|
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 fifth stable release of Windows Package Manager 1.7 for Windows 10 (1809+), and Windows 11.
Experimental features have been disabled in this release.
What's Changed
- Fix mixed elevation integration issue by using MemoryStream by @yao-msft in https://github.com/microsoft/winget-cli/pull/4413
- Explicitly add Microsoft.Management.Configuration as remoting server dependency by @yao-msft in https://github.com/microsoft/winget-cli/pull/4418
- Make SecurityContext field name camelCase by @yao-msft in https://github.com/microsoft/winget-cli/pull/4433
- Block control codes and truncate longer configuration text blocks by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4436
Full Changelog: https://github.com/microsoft/winget-cli/compare/release-v1.7.11132...release-v1.7.11261
-
- 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.