Winget is a package manager based off Keivan Beigi’s AppGet, its goal is to be a “one-stop shop” to install all your Windows programs. It achieves this by having a central repository of installation scripts for all of your favorite applications such as Discord, Spotify, and Steam. Currently, Winget has to be manually installed, but later it should come bundled with Windows.

Windows Store Method

Direct Link to Winget (AppInstaller) in Windows Store:

PowerShell Method

Here’s a one-liner to get Winget installed through Powershell:

1
2
3
# Download Winget installer from Microsoft & launch it
Start-BitsTransfer "https://aka.ms/getwinget" getwinget.msixbundle
.\getwinget.msixbundle

Winget Basics

CommandDescription
winget install “appname”Install specified application
winget install -s source “appname”Select source (msstore, winget)
winget uninstall “appname”Uninstall specified application
winget upgrade “appname”Update specified application
winget upgrade –allUpdate all supported applications