Have you ever wanted to install apps & tools on your Windows computer with a simple command like:
winget install PowerToys
Y’can now with the Windows Package Manager 1.0.
We started a journey to build a native package manager for Windows 10 when we announced the Windows Package Manager preview at Microsoft Build 2020. We released the project on GitHub as an open-source collaborative effort and the community engagement has been wonderful to experience! Here we are today at Microsoft Build 2021…
We are excited to announce the release of Windows Package Manager 1.0!
WINDOWS PACKAGE MANAGER 1.0
CLIENT
The winget client is the main tool you will use to manage packages on your machine. The image below displayswinget
executed in Windows Terminal via PowerShell. You can see the list of available commands used to manage packages and work with manifests. You can search for a package (search looks at the name, moniker, and tags) usingwinget search vscode
. Installing something on your machine is as easy aswinget install PowerToys
. You can check for upgrades to packages withwinget upgrade
or you can just upgrade everything withwinget upgrade --all
. Are you setting up a new machine? Be sure towinget export packages.json
on your current machine (and copy the file to your new machine) so you canwinget import packages.json
on the new machine. Withwinget list
you can see everything installed in Add / Remove Programs, and you canwinget uninstall <SomePackage>
to remove it from your system. You can learn more about the commands and syntax from our documentation.…
More information – including how to get it – is available in the announcement post below.
- ANNOUNCEMENT: Windows Package Manager 1.0
https://devblogs.microsoft.com/commandline/windows-package-manager-1-0/