WinGet Client (Install) 1.12.350
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-choco.oraclestar.dev/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-choco.oraclestar.dev/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-choco.oraclestar.dev/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.12.350'
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.12.350'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.12.350"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.12.350',
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-7as 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.1021.1948.0'
}
$packagedAppxVersion = '1.12.350.0'
Log in or click on link to see number of positives.
- winget-cli.1.12.350.nupkg (95e1ab1f24d5) - ## / 65
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.12.350 | 56014 | Wednesday, October 29, 2025 | Exempted | |
| WinGet Client (Install) 1.11.510 | 65207 | Wednesday, October 1, 2025 | Exempted | |
| WinGet Client (Install) 1.11.430 | 45023 | Wednesday, July 30, 2025 | Exempted | |
| WinGet Client (Install) 1.11.400 | 74696 | Wednesday, June 25, 2025 | Exempted | |
| WinGet Client (Install) 1.10.390 | 107849 | Tuesday, April 22, 2025 | Exempted | |
| WinGet Client (Install) 1.10.340 | 69199 | Monday, March 3, 2025 | Exempted | |
| WinGet Client (Install) 1.10.320 | 85 | Tuesday, February 25, 2025 | Exempted | |
| WinGet Client (Install) 1.9.25200 | 86893 | Friday, November 15, 2024 | Approved | |
| WinGet Client (Install) 1.9.25180 | 43649 | Monday, October 28, 2024 | Approved | |
| WinGet Client (Install) 1.8.1911 | 202930 | Wednesday, July 10, 2024 | Approved | |
| WinGet Client (Install) 1.8.1791 | 95 | Saturday, June 29, 2024 | Exempted | |
| WinGet Client (Install) 1.7.11261 | 114259 | Tuesday, May 7, 2024 | Approved | |
| WinGet Client (Install) 1.7.11132 | 21797 | Wednesday, April 24, 2024 | Exempted | |
| WinGet Client (Install) 1.7.10861 | 141056 | Thursday, March 28, 2024 | Exempted | |
| WinGet Client (Install) 1.7.10661 | 104403 | Wednesday, March 13, 2024 | Exempted | |
| WinGet Client (Install) 1.7.10582 | 88967 | Wednesday, February 28, 2024 | Exempted | |
| WinGet Client (Install) 1.6.3482 | 519597 | Tuesday, December 19, 2023 | Exempted | |
| WinGet Client (Install) 1.6.3421 | 36223 | Tuesday, December 12, 2023 | Approved | |
| WinGet Client (Install) 1.6.3133 | 320228 | Saturday, November 11, 2023 | Exempted | |
| WinGet Client (Install) 1.6.2771 | 392265 | Friday, October 6, 2023 | Approved | |
| WinGet Client (Install) 1.6.2721 | 13462 | Saturday, September 30, 2023 | Exempted | |
| WinGet Client (Install) 1.5.2201 | 47234 | Thursday, August 10, 2023 | Approved | |
| WinGet Client (Install) 1.5.1881 | 34882 | Monday, July 17, 2023 | Approved | |
| WinGet Client (Install) 1.4.11071.0 | 25562 | Saturday, June 3, 2023 | Approved |
2023 Microsoft Corporation
This is the second release candidate build of Windows Package Manager v1.12. If you find any bugs or problems, please help us out by filing an issue.
New in v1.12
- MCP server available; run
winget mcpfor assistance on configuring your client. - App Installer now uses WinUI 3. The package dependency on WinUI 2 has been replaced by a dependency on the Windows App Runtime 1.8.
- Manifest schema and validation updated to v1.12. This version update adds
Fontas anInstallerTypeandNestedInstallerType. - Font Install, Uninstall, and a winget-fonts source have been added and are non-experimental.
Bug Fixes
- Manifest validation no longer fails using
UTF-8 BOMencoding when the schema header is on the first line - Upgrading a portable package with dev mode disabled will no longer remove the package from the PATH variable.
- Fixed source open failure when there were multiple sources but less than two non-explicit sources.
- Fixed a failure that would happen while closing App Installer.
Font Support
Font Install and Uninstall via manifest and package source for user and machine scopes has been added.
A sample Font manifest can be found at:
https://github.com/microsoft/winget-pkgs/tree/master/fonts/m/Microsoft/FluentFonts/1.0.0.0
At this time install and removal of fonts is only supported for fonts installed via WinGet Package.
Fonts must either be the Installer or a .zip archive of NestedInstaller fonts.
A new explicit source for fonts has been added "winget-font".
winget search font -s winget-font
This source is not yet accepting public submissions at this time.
Experimental Features
- Experimental support still exists for the 'font' command.
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
}
}
The font 'list' command has been updated with a new '--details' feature for an alternate view of the installed fonts.
What's Changed
- Update the other TDBuild task by @florelis in https://github.com/microsoft/winget-cli/pull/5534
- Use windows-latest agents in localization pipeline by @florelis in https://github.com/microsoft/winget-cli/pull/5538
- Bump version to v1.12 by @florelis in https://github.com/microsoft/winget-cli/pull/5532
- Allow set foreground from PS by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5541
- Move to proper signal for dev/not-dev by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5552
- Use SDK 26100 in CommonCore project by @florelis in https://github.com/microsoft/winget-cli/pull/5570
- Repair Repair-WinGetPackageManager by @florelis in https://github.com/microsoft/winget-cli/pull/5568
- Use cpprestsdk v2.10.18 by @florelis in https://github.com/microsoft/winget-cli/pull/5567
- Undefined-behaviour fix: safely call std::isspace in CompletionData by @mohiuddin-khan-shiam in https://github.com/microsoft/winget-cli/pull/5564
- Add missing compilation flags for vcpkg ports by @florelis in https://github.com/microsoft/winget-cli/pull/5587
- Add more missing flags for vcpkg by @florelis in https://github.com/microsoft/winget-cli/pull/5592
- Swallow provisioned package errors by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5595
- Update detours vcpkg to use prior version by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5601
- Remove TestRelease by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5613
- Handle Byte Order Mark during validation by @Trenly in https://github.com/microsoft/winget-cli/pull/5585
- Initial MCP Server implementation by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5610
- Update release notes for BOM Handling by @Trenly in https://github.com/microsoft/winget-cli/pull/5622
- Don't build MCP for fuzzing by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5625
- Resolve nuget package graph for .NET projects together by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5627
- Update to latest MCP nuget by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5633
- Update release notes to mention WinUI dependency change by @florelis in https://github.com/microsoft/winget-cli/pull/5656
- Improve COM server quiescing by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5652
- Improve issue forms & add corresponding label triggers by @mdanish-kh in https://github.com/microsoft/winget-cli/pull/5661
- Fix conflict with issue forms by @Trenly in https://github.com/microsoft/winget-cli/pull/5663
- Improve COM static store usage by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5680
- Update schema to 1.12 with Font InstallerType by @dkbennett in https://github.com/microsoft/winget-cli/pull/5687
- Download MS Store package for target OS by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5689
- Fixes for older OSes by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5691
- Add RestSource and tests for Manifest v1.12 by @dkbennett in https://github.com/microsoft/winget-cli/pull/5695
- Improve slow searches involving installed items by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5701
- Shorter default installer log filename by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5705
- Add the ARP correlation entry to the context for portable installs by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5707
- Fix two unrelated version issues by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5719
- Heal tracking database if it can't open by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5724
- MS Store cert pinning updates by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5732
- Update MCP GP name by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5736
- Add workflow for automatic issue deduplication by @cinnamon-msft in https://github.com/microsoft/winget-cli/pull/5738
- moving workflow to parent by @denelon in https://github.com/microsoft/winget-cli/pull/5740
- Cache information responses from REST sources by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5726
- Shared build props by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5749
- Improve shared props layout by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5751
- Fix portable path removal on upgrade by @dkbennett in https://github.com/microsoft/winget-cli/pull/5756
- Minor update to release notes for v1.12 by @florelis in https://github.com/microsoft/winget-cli/pull/5761
- Font Install, Uninstall, additional Font List by @dkbennett in https://github.com/microsoft/winget-cli/pull/5566
- Fix install source and final progress by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5764
- Use winrt for time conversion by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5763
- Change label_as_duplicate to false in workflow by @Trenly in https://github.com/microsoft/winget-cli/pull/5773
- Remove openssl from sfsclient cgmanifest by @florelis in https://github.com/microsoft/winget-cli/pull/5775
- Add admin check to uninstall of machine font by @dkbennett in https://github.com/microsoft/winget-cli/pull/5779
- Add Font source group policy support by @dkbennett in https://github.com/microsoft/winget-cli/pull/5646
- Improve window thread termination by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5781
- Fix portable installer issues when installing to non ascii path by @yao-msft in https://github.com/microsoft/winget-cli/pull/5788
- Remove experimental from Font Install, Uninstall, and source by @dkbennett in https://github.com/microsoft/winget-cli/pull/5791
- Update NOTICE by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5801
- Update localized strings by @florelis in https://github.com/microsoft/winget-cli/pull/5805
- Move to latest 7.4 PS SDK (1.12) by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/5812
New Contributors
- @mohiuddin-khan-shiam made their first contribution in https://github.com/microsoft/winget-cli/pull/5564
Full Changelog: https://github.com/microsoft/winget-cli/compare/v1.11.400...v1.12.350
-
- 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.
Ansible
PS DSC