Skip to content

Winget

Microsoft' command-line package manager for Windows - unlike scoop (and like Chocolatey), apps install in their normal location - All available apps can be found in the microsoft/winget-pkgs repo on GitHub - Supports downloading and installing straight from Microsoft store

The tool is preinstalled on all versions of Windows 11 and somewhat newer versions of Windows 10. If you are on either and don't have it, you can get it by getting App Installer from the Microsoft Store.

If for some reason you don't have it installed, run the following:

Install-PackageProvider -Name NuGet -Force | Out-Null
Install-Module -Name Microsoft.WinGet.Client -Force -Repository PSGallery -Scope AllUsers | Out-Null
Repair-WinGetPackageManager
If you uninstalled it before, you can bring it back with this:
Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe

Updating apps can be somewhat slow due to the manual verification from the moderators. If your favourite app isn't available or hasn't been updated, you can use simple tools like Komac or WingetCreate to make updating easier for the winget moderators

Don't see what you want?

Updating apps can be somewhat slow due to the manual verification from the moderators. If your favourite app isn't available or hasn't been updated, you can use simple tools like Komac or WingetCreate.

winget.app

This noob-friendly lets you pick software to install and builds up a command for you to simply paste in cmd.

Repos:

For more info you can read Microsoft's documentation here