Downloads:
2,065,400
Downloads of v 1.8.1791:
31
Last Update:
29 Jun 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.8.1791 | Updated: 29 Jun 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.8.1791:
31
Maintainer(s):
Software Author(s):
- Microsoft
WinGet Client (Install) 1.8.1791
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.8.1791 --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.8.1791'" [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.8.1791'"
$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.8.1791'
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.8.1791'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller winget-cli
{
Name = "winget-cli"
Version = "1.8.1791"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'winget-cli':
ensure => '1.8.1791',
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 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.627.1939.0'
}
$packagedAppxVersion = '1.8.1791.0'
Log in or click on link to see number of positives.
- winget-cli.1.8.1791.nupkg (2e9878f8b3f7) - ## / 68
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 is the first stable release of Windows Package Manager 1.8 for Windows 10 (1809+), and Windows 11.
Experimental features have been disabled in this release.
> WinGet v1.8 will be the last stable version of WinGet with experimental features disabled. Starting in WinGet v1.9, stable releases will include the ability to enable experimental features unless blocked by Group Policy Objects (GPO).
Features
- HTTP Proxy support
- WinGet Configuration Mixed Elevation Mode support via COM
- WinGet Package Icon support via COM
- PowerShell Modules work on ARM64
- Control Characters shouldn't be allowed in user generated content
- Downloading MSStore packages
- Extracting archives using tar.exe
What's Changed
- Update WinGet Download spec with accurate PS cmdlet help by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4182
- Add Troubleshooting Step for CDN by @Trenly in https://github.com/microsoft/winget-cli/pull/4188
- CodeCoverage pipeline for submission to onefuzz. by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4177
- Update fuzzing code coverage pipeline id by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4191
- Increment version to 1.8 by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4192
- Remove x86 platform from fuzzing pipeline by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4195
- Make SQLite wrapper more resilient by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4196
- Pull in latest localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4202
- Fix settings.schema.0.2.json not validating against schema by @Mat2095 in https://github.com/microsoft/winget-cli/pull/4200
- Fix test error and change pipeline to properly report test crash by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4204
- Refactor
IPackage
by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4174 - Update Repair-WinGetPackageManager with UiXaml 2.8 by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4218
- Copy semver.dll to direct dependencies by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4226
- Fix xamlAsset value (powershell module) by @vedantmgoyal9 in https://github.com/microsoft/winget-cli/pull/4240
- Update Triage Triggers by @Trenly in https://github.com/microsoft/winget-cli/pull/4239
- Remove Needs-Triage when labels are applied by @Trenly in https://github.com/microsoft/winget-cli/pull/4243
- Standardize Formatting of Documentation by @Trenly in https://github.com/microsoft/winget-cli/pull/4244
- Fix conflict with Issue Forms by @Trenly in https://github.com/microsoft/winget-cli/pull/4245
- Fix PowerShellCmdlet by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4247
- Add support for proxies #190 by @florelis in https://github.com/microsoft/winget-cli/pull/4203
- Make Ignore Warnings suppress the output level entirely by @Trenly in https://github.com/microsoft/winget-cli/pull/4221
- Add spec for proxy support by @florelis in https://github.com/microsoft/winget-cli/pull/4152
- Add Trigger for Needs-Repro Label by @Trenly in https://github.com/microsoft/winget-cli/pull/4276
- Ignore corrupted source data by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4291
- Update similarissues.yml to include body information as well by @craigloewen-msft in https://github.com/microsoft/winget-cli/pull/4295
- Fix
EnableWindowsPackageManagerCommandLineInterfaces
Policy Behavior by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4293 - Better server start coordination by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4292
- Add experimental support for multiple installed versions by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4282
- Remove duplicates from MultiQuery by @Trenly in https://github.com/microsoft/winget-cli/pull/4286
- Add support for setting source trust level by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4216
- Remove macro condition for GetAdminSettingPolicy by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4314
- Fix header for AdminSettings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4315
- Add Triggers for context labels by @Trenly in https://github.com/microsoft/winget-cli/pull/4335
- Add support for optional limitation set in configuration remote server and processors by @yao-msft in https://github.com/microsoft/winget-cli/pull/4349
- Dynamic runtime configuration support by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4355
- Improve MSStore installation success rate by trying Restart or Cancel when applicable by @yao-msft in https://github.com/microsoft/winget-cli/pull/4356
- Refactor HttpClientHelper to CommonCore by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4371
- Added AdditionalLibraryDirectories to UndockedRegFreeWinRT by @AmelBawa-msft in https://github.com/microsoft/winget-cli/pull/4374
- Index v2 by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4387
- Make DLL directory work in packaged cases as well by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4389
- Enable Microsoft.WinGet.Client arm64 support by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4392
- Add Arm64 to list of architectures in Module Initialization. by @snickler in https://github.com/microsoft/winget-cli/pull/4251
- Fix e2e tests by setting the test source package as trusted by @yao-msft in https://github.com/microsoft/winget-cli/pull/4409
- Fix mixed elevation integration issue by using MemoryStream by @yao-msft in https://github.com/microsoft/winget-cli/pull/4413
- Pull in microsoft sfs-client repo as subtree by @yao-msft in https://github.com/microsoft/winget-cli/pull/4408
- Add initial support for msstore download experimental feature by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4386
- Explicitly add Microsoft.Management.Configuration as remoting server dependency by @yao-msft in https://github.com/microsoft/winget-cli/pull/4418
- Update instructions to build repo locally with vcpkg enabled by @yao-msft in https://github.com/microsoft/winget-cli/pull/4426
- Make SecurityContext field name camelCase by @yao-msft in https://github.com/microsoft/winget-cli/pull/4433
- Add Workflow logs and fix installed version workflow bug by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4432
- Block control codes and truncate longer configuration text blocks by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4436
- Configure export command by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4434
- Create local Microsoft.WindowsPackageManager.Utils nuget by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4439
- Use GitHub's built in markdown highlighting to highlight notes in README by @alvinsjoy in https://github.com/microsoft/winget-cli/pull/4441
- Remove Parent Directory when Empty by @Trenly in https://github.com/microsoft/winget-cli/pull/4451
- Complete MSStore download and licensing by @yao-msft in https://github.com/microsoft/winget-cli/pull/4464
- Make proxy feature stable by @yao-msft in https://github.com/microsoft/winget-cli/pull/4466
- Index V2 consumption by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4462
- Remove PAT token for ADO fuzzing task by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4478
- Update the correlation tools by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4479
- Allow a property to force the /debugtype override onto some projects by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4480
- Initialize logging of global logger for inproc invocations by @yao-msft in https://github.com/microsoft/winget-cli/pull/4490
- Fix limit mode metadata blocking by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4489
- Move paths code to shared by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4484
- WinGetDownload E_ACCESSDENIED by @msftrubengu in https://github.com/microsoft/winget-cli/pull/4518
- Update sfs-client to 1.0.0 release by @yao-msft in https://github.com/microsoft/winget-cli/pull/4517
- Enable Microsoft Entra Id auth for displaycatalog and use enterprise offline sku by @yao-msft in https://github.com/microsoft/winget-cli/pull/4544
- Winget Repair - Eliminate installer type mapping for MSI/WIX and MSIX NonStore ,code refactoring & E2E Test Coverage by @Madhusudhan-MSFT in https://github.com/microsoft/winget-cli/pull/4534
- Add support for extracting archives using tar.exe by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4541
- Make SxS stable by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4563
- Fix export manifest with multiple locales by @yao-msft in https://github.com/microsoft/winget-cli/pull/4569
- Make Store package download stable by @yao-msft in https://github.com/microsoft/winget-cli/pull/4570
- Update expired certificate with incoming one by @JohnMcPMS in https://github.com/microsoft/winget-cli/pull/4568
- Apply latest patch for localized strings by @ryfu-msft in https://github.com/microsoft/winget-cli/pull/4578
- Update winget server com security by @yao-msft in https://github.com/microsoft/winget-cli/pull/4577
- Component Governance fix: Update libyaml by @yao-msft in https://github.com/microsoft/winget-cli/pull/4583
New Contributors
- @Mat2095 made their first contribution in https://github.com/microsoft/winget-cli/pull/4200
- @snickler made their first contribution in https://github.com/microsoft/winget-cli/pull/4251
- @alvinsjoy made their first contribution in https://github.com/microsoft/winget-cli/pull/4441
Full Changelog: https://github.com/microsoft/winget-cli/compare/release-v1.7.10514...release-v1.8.1791
-
- 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.