Downloads:
2,371,774
Downloads of v 1.11.400:
2,563
Last Update:
25 Jun 2025
Package Maintainer(s):
Software Author(s):
- Microsoft
Tags:
- 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)
- 1
- 2
- 3
1.11.400 | Updated: 25 Jun 2025
- 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,371,774
Downloads of v 1.11.400:
2,563
Maintainer(s):
Software Author(s):
- Microsoft
WinGet Client (Install) 1.11.400
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 --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'" [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'"
$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.11.400'
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.11.400'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.11.400"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.11.400',
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 is exempt from moderation. While it is likely safe for you, there is more risk involved.
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 is out-of-date by more than a week, please contact the maintainer(s), to let the know using the 'Package Source' link on the package page and raising an issue.
- If you find the package has issues (for software issues, please contact the vendor / author), please contact the maintainer(s), to let the know using the 'Package Source' link on the package page and raising an issue.
$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 = '2025.617.2222.0'
}
$packagedAppxVersion = '1.11.400.0'
Log in or click on link to see number of positives.
- winget-cli.1.11.400.nupkg (f288b3a7fb4a) - ## / 66
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.11.400 | 2563 | Wednesday, June 25, 2025 | Exempted | |
WinGet Client (Install) 1.10.390 | 107725 | Tuesday, April 22, 2025 | Exempted | |
WinGet Client (Install) 1.10.340 | 69166 | Monday, March 3, 2025 | Exempted | |
WinGet Client (Install) 1.10.320 | 65 | Tuesday, February 25, 2025 | Exempted | |
WinGet Client (Install) 1.9.25200 | 86843 | Friday, November 15, 2024 | Approved | |
WinGet Client (Install) 1.9.25180 | 43624 | Monday, October 28, 2024 | Approved | |
WinGet Client (Install) 1.8.1911 | 202898 | Wednesday, July 10, 2024 | Approved | |
WinGet Client (Install) 1.8.1791 | 75 | Saturday, June 29, 2024 | Exempted | |
WinGet Client (Install) 1.7.11261 | 114227 | Tuesday, May 7, 2024 | Approved | |
WinGet Client (Install) 1.7.11132 | 21774 | Wednesday, April 24, 2024 | Exempted | |
WinGet Client (Install) 1.7.10861 | 140971 | Thursday, March 28, 2024 | Exempted | |
WinGet Client (Install) 1.7.10661 | 103574 | Wednesday, March 13, 2024 | Exempted | |
WinGet Client (Install) 1.7.10582 | 88949 | Wednesday, February 28, 2024 | Exempted | |
WinGet Client (Install) 1.6.3482 | 519559 | Tuesday, December 19, 2023 | Exempted | |
WinGet Client (Install) 1.6.3421 | 36198 | Tuesday, December 12, 2023 | Approved | |
WinGet Client (Install) 1.6.3133 | 320207 | Saturday, November 11, 2023 | Exempted | |
WinGet Client (Install) 1.6.2771 | 392224 | Friday, October 6, 2023 | Approved | |
WinGet Client (Install) 1.6.2721 | 13442 | Saturday, September 30, 2023 | Exempted | |
WinGet Client (Install) 1.5.2201 | 47194 | Thursday, August 10, 2023 | Approved | |
WinGet Client (Install) 1.5.1881 | 34852 | Monday, July 17, 2023 | Approved | |
WinGet Client (Install) 1.4.11071.0 | 25518 | Saturday, June 3, 2023 | Approved |
2023 Microsoft Corporation
This release represents our first stable Windows Package Manager 1.11 release build for Windows 10 (1809+), and Windows 11.
New in v1.11
- Dropped support for running on 32-bit ARM
- Support for Microsoft Desired State Configuration (DSC) v3.
- Support for exporting the configuration of the current device. This includes Windows Settings, packages from configured WinGet sources, and package settings from DSC v3 enabled packages.
Experimental Features
- Experimental support for Fonts
Experimental support for Fonts
The following snippet enables experimental support for fonts via winget settings
. The winget font list
command will list installed font families and the number of installed font faces.
{
"$schema" "https://aka.ms/winget-settings.schema.json",
"experimentalFeatures": {
"fonts": true
}
}
What's Changed
- Apply latest loc patch by @florelis in https://github.com/microsoft/winget-cli/pull/5174
- Fix certain msstore source 404 failures by treating them as empty responses by @yao-msft in https://github.com/microsoft/winget-cli/pull/5179
- Use embedded CsWinRT by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5178
- Update configuration environment behavior by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5182
- Fix configure export test tear down by @yao-msft in https://github.com/microsoft/winget-cli/pull/5184
- Bump version to 1.11 by @florelis in https://github.com/microsoft/winget-cli/pull/5167
- Update Newtonsoft.Json to be same version across all projects by @Trenly in https://github.com/microsoft/winget-cli/pull/5158
- Completion of missing
}
by @DuckDuckStudio in https://github.com/microsoft/winget-cli/pull/5192 - Convert cpprestsdk to WIL exception for better handling by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5188
- Refactor configuration processor by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5194
- Add support for 1.10 manifest in rest source parsing and winget utils interop by @yao-msft in https://github.com/microsoft/winget-cli/pull/5197
- For truly async calls we must maintain our lifetime by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5199
- Update YamlDotNet to Latest by @Trenly in https://github.com/microsoft/winget-cli/pull/5191
- Update primary index when moving package by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5204
- Don't rely on parameter order when creating VersionRange by @Trenly in https://github.com/microsoft/winget-cli/pull/5213
- Validate URLs map to unique hashes by @Trenly in https://github.com/microsoft/winget-cli/pull/5233
- Add developer guidance for debugging & running tests by @mdanish-kh in https://github.com/microsoft/winget-cli/pull/5234
- Consider installer applicability in IsUpdateAvailable COM api by @yao-msft in https://github.com/microsoft/winget-cli/pull/5228
- Don't let unset error codes be thrown by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5255
- Fix logging channel setting by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5261
- Experimental support for DSC v3 processing by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5252
- Add max nest level limit to yaml parser by @yao-msft in https://github.com/microsoft/winget-cli/pull/5275
- Update winget.resw by @pressRtowin in https://github.com/microsoft/winget-cli/pull/5279
- Fix e2e test failure caused by message change by @yao-msft in https://github.com/microsoft/winget-cli/pull/5284
- Build in parallel by @florelis in https://github.com/microsoft/winget-cli/pull/5283
- Remove support for arm32 by @florelis in https://github.com/microsoft/winget-cli/pull/5290
- Add validation option for portable installer type in archives by @Trenly in https://github.com/microsoft/winget-cli/pull/5237
- Handle access denied error when setting owner if already owner by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5282
- Add securityContext entry to 0.2 schema by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5295
- Dscv3 command base by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5280
- Fix DynamicProcessor crash when working on individual units without a set by @yao-msft in https://github.com/microsoft/winget-cli/pull/5304
- Add securityContext to configuration file by @mdanish-kh in https://github.com/microsoft/winget-cli/pull/5309
- Support official DSC v3 release by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5313
- Apply Registry Entries Last During Update Flow by @Trenly in https://github.com/microsoft/winget-cli/pull/5214
- Use version comparison function rather than string compare in PS by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5323
- Enable shadow stack by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5326
- Only download during COM download by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5327
- More graceful MSIX enumeration failure handling by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5329
- Fix arm64 builds by @yao-msft in https://github.com/microsoft/winget-cli/pull/5335
- Update roadmap by @Gijsreyn in https://github.com/microsoft/winget-cli/pull/5331
- DSC v3 Export by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5319
- Refactor ProcessMultiplePackages for clarity by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5340
- troubleshooting source error by @denelon in https://github.com/microsoft/winget-cli/pull/5370
- Fixes for pipeline stability by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5359
- Fix it twice by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5381
- Handle not finding metadata by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5350
- DSC v3 adapter support by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5302
- Lower Schema Header Validation to include 1.7+ manifests by @Trenly in https://github.com/microsoft/winget-cli/pull/5330
- Update OneFuzzConfig.json by @florelis in https://github.com/microsoft/winget-cli/pull/5380
- Better DefaultInstallVersion by @yao-msft in https://github.com/microsoft/winget-cli/pull/5389
- Remove most checked-in dependency libraries by @florelis in https://github.com/microsoft/winget-cli/pull/5390
- Add api to find unit processors based on search path by @yao-msft in https://github.com/microsoft/winget-cli/pull/5386
- Remove clones of transitive dependencies available from vcpkg by @florelis in https://github.com/microsoft/winget-cli/pull/5399
- Update curl to 1.12.1 by @florelis in https://github.com/microsoft/winget-cli/pull/5404
- Disable assembly info override by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5405
- Dscv3 package resource by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5395
- Dscv3 source resource by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5418
- Enable NuGet Central Package Management by @florelis in https://github.com/microsoft/winget-cli/pull/5420
- Ensure all vcpkgs use our custom triplets by @florelis in https://github.com/microsoft/winget-cli/pull/5423
- Update sample projects to 1.10.340 by @florelis in https://github.com/microsoft/winget-cli/pull/5427
- Added dscv3 user-settings resource by @AmelBawa-msft in https://github.com/microsoft/winget-cli/pull/5421
- Fix debug build with vcpkg by @yao-msft in https://github.com/microsoft/winget-cli/pull/5430
- Add support for exporting package related DSC v3 resources and some predefined resources in configure export all by @yao-msft in https://github.com/microsoft/winget-cli/pull/5428
- Fix arm64-release-static vcpkg triplet by @florelis in https://github.com/microsoft/winget-cli/pull/5431
- Remove purelib.vcxproj by @florelis in https://github.com/microsoft/winget-cli/pull/5429
- Create a vcpkg overlay for cpprestsdk and libyaml by @florelis in https://github.com/microsoft/winget-cli/pull/5424
- Allow preview dsc while experimental by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5434
- Place DSCv3 resource manifests in the package by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5433
- Install dsc v3 package if not found when processing dsc v3 configuration file by @yao-msft in https://github.com/microsoft/winget-cli/pull/5437
- Use Microsoft.Windows.Settings in configure export all by @yao-msft in https://github.com/microsoft/winget-cli/pull/5441
- Make partial the default for user-settings-file by @AmelBawa-msft in https://github.com/microsoft/winget-cli/pull/5442
- Ignore comments when writing JSON output in WinGet DSC v3 resources by @AmelBawa-msft in https://github.com/microsoft/winget-cli/pull/5445
- Attempt to use DSCv3 resources even if they were not found by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5443
- Elevated for exported Microsoft.Windows.Settings by @yao-msft in https://github.com/microsoft/winget-cli/pull/5444
- Use Microsoft.Windows.Settings module for enabling developer mode by @mdanish-kh in https://github.com/microsoft/winget-cli/pull/5448
- Fix fuzzing job path by @yao-msft in https://github.com/microsoft/winget-cli/pull/5447
- Only forward the verbose property if it has been set by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5449
- Make UndockedRegFreeWinRT use same vcpkg_installed directory by @florelis in https://github.com/microsoft/winget-cli/pull/5454
- Use more recent version for libyaml by @florelis in https://github.com/microsoft/winget-cli/pull/5455
- DSCv3 admin settings resource by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5458
- Fix debug build with latest VS version by @yao-msft in https://github.com/microsoft/winget-cli/pull/5461
- Add ReleaseStatic configuration to WinGetServer project by @florelis in https://github.com/microsoft/winget-cli/pull/5477
- Fix catalog connection failure due to AppCapability::CreateWithProcessIdForUser throwing E_INVALIDARG when called with a null user on Windows 10 v1903 by @Fulgen301 in https://github.com/microsoft/winget-cli/pull/5475
- Fix crash due to static weak pointer referencing an object in an unloaded DLL by @Fulgen301 in https://github.com/microsoft/winget-cli/pull/5474
- Add support for DSCv3 in configuration PowerShell modules by @yao-msft in https://github.com/microsoft/winget-cli/pull/5470
- Missing comma in cgmanifest.json by @florelis in https://github.com/microsoft/winget-cli/pull/5486
- Make dsc3 and export experimentals stable by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5487
- Update DSC command descriptions by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5489
- Increase libyaml vcpkg port version by @florelis in https://github.com/microsoft/winget-cli/pull/5504
- Apply latest loc patch by @florelis in https://github.com/microsoft/winget-cli/pull/5507
- Update Store endpoint certificates by @yao-msft in https://github.com/microsoft/winget-cli/pull/5512
- Use release dscv3 package in release build by @yao-msft in https://github.com/microsoft/winget-cli/pull/5508
- Change how we determine which framework architectures to install by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5517
- Add text file with the release notes by @florelis in https://github.com/microsoft/winget-cli/pull/5519
- Expose TestUnit method to COM API by @t-ggarzia-MSFT in https://github.com/microsoft/winget-cli/pull/5520
- Refresh PATH in configuration remoting server by @yao-msft in https://github.com/microsoft/winget-cli/pull/5511
- Ensure required modules for configuration export and import by @yao-msft in https://github.com/microsoft/winget-cli/pull/5521
- Support for DSC minimum version by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5525
- Fix AV in portable flow by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5526
- Add VS Professional and VS Enterprise configurations by @dkbennett in https://github.com/microsoft/winget-cli/pull/5515
- Use newer version of TDBuild task by @florelis in https://github.com/microsoft/winget-cli/pull/5533
- Swap WinForm for native window proc by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5530
New Contributors
- @DuckDuckStudio made their first contribution in https://github.com/microsoft/winget-cli/pull/5192
- @pressRtowin made their first contribution in https://github.com/microsoft/winget-cli/pull/5279
- @Fulgen301 made their first contribution in https://github.com/microsoft/winget-cli/pull/5475
- @t-ggarzia-MSFT made their first contribution in https://github.com/microsoft/winget-cli/pull/5520
- @dkbennett made their first contribution in https://github.com/microsoft/winget-cli/pull/5515
Full Changelog: https://github.com/microsoft/winget-cli/compare/v1.10.390...v1.11.400
-
- 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.