1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 07:46:00 +02:00
tldr/pages/windows/winget.md
K.B.Dharun Krishna e43635feea
winget: update page, add Tamil translation (#10258)
* winget: update page, add Tamil translation

* winget: update validate definition

* Update pages/windows/winget.md

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>

* Update winget.md

* Update pages/windows/winget.md

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>

* Update pages.ta/windows/winget.md

---------

Co-authored-by: Jack Lin <blueskyson1401@gmail.com>
Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
2023-06-08 19:16:36 +02:00

835 B

winget

Windows Package Manager CLI. More information: https://learn.microsoft.com/windows/package-manager/winget.

  • Install a package:

winget install {{package}}

  • Remove a package (Note: remove can also be used instead of uninstall):

winget uninstall {{package}}

  • Display information about a package:

winget show {{package}}

  • Search for a package:

winget search {{package}}

  • Upgrade all packages to the latest versions:

winget upgrade --all

  • List all packages installed that can be managed with winget:

winget list --source winget

  • Import packages from a file, or export installed packages to a file:

winget {{import|export}} {{--import-file|--output}} {{path/to/file}}

  • Validate manifests before submitting a PR to the winget-pkgs repository:

winget validate {{path/to/manifest}}