Skip to main content
  1. Posts/

Installing Winget

··

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:

# 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 Winget’s installation source (msstore, winget)
winget uninstall “appname”Uninstall specified application
winget upgrade “appname”Update specified application
winget upgrade –allUpdate all supported applications
Author
Hayden Plumley