WinGet

From Omnia
Revision as of 23:32, 13 August 2024 by Kenneth (talk | contribs) (→‎WinGet)
Jump to navigation Jump to search

WinGet

The WinGet command line tool, which is the client interface to the Windows Package Manager service, requires Windows 10 version 1809 (build 17763) or later, or Windows 11.
WinGet is the Windows Package Manager. This project includes a CLI (Command Line Interface), PowerShell modules, and a COM (Component Object Model) API (Application Programming Interface).

winget-cli GitHub

https://github.com/microsoft/winget-cli

Microsoft Store

https://www.microsoft.com/p/app-installer/9nblggh4nns1

Install Package

winget install <package>
https://github.com/microsoft/winget-pkgs

WinGet Community Packages

Repology
https://repology.org/

-

Windows Package Manager Community Repository
https://github.com/microsoft/winget-pkgs

Explore Windows Package Manager Tool

Explore the Windows Package Manager tool - Microsoft Learn
https://learn.microsoft.com/en-us/training/modules/explore-windows-package-manager-tool/?WT.mc_id=AZ-MVP-5004737

PowerShell

PS > import-module Microsoft.WinGet.Client -verbose
VERBOSE: Loading module from path 'C:\Program Files\WindowsPowerShell\Modules\Microsoft.WinGet.Client\1.8.1911\Microsoft.WinGet.Client.psd1'.
VERBOSE: Importing cmdlet 'Add-WinGetSource'.
VERBOSE: Importing cmdlet 'Assert-WinGetPackageManager'.
VERBOSE: Importing cmdlet 'Disable-WinGetSetting'.
VERBOSE: Importing cmdlet 'Enable-WinGetSetting'.
VERBOSE: Importing cmdlet 'Export-WinGetPackage'.
VERBOSE: Importing cmdlet 'Find-WinGetPackage'.
VERBOSE: Importing cmdlet 'Get-WinGetPackage'.
VERBOSE: Importing cmdlet 'Get-WinGetSettings'.
VERBOSE: Importing cmdlet 'Get-WinGetSource'.
VERBOSE: Importing cmdlet 'Get-WinGetUserSettings'.
VERBOSE: Importing cmdlet 'Get-WinGetVersion'.
VERBOSE: Importing cmdlet 'Install-WinGetPackage'.
VERBOSE: Importing cmdlet 'Remove-WinGetSource'.
VERBOSE: Importing cmdlet 'Repair-WinGetPackageManager'.
VERBOSE: Importing cmdlet 'Reset-WinGetSource'.
VERBOSE: Importing cmdlet 'Set-WinGetUserSettings'.
VERBOSE: Importing cmdlet 'Test-WinGetUserSettings'.
VERBOSE: Importing cmdlet 'Uninstall-WinGetPackage'.
VERBOSE: Importing cmdlet 'Update-WinGetPackage'.

keywords