Administrator PowerShell window: Install the Module: powershell Install-PackageProvider -Name NuGet -Force | Out-Null Install-Module -Name Microsoft.WinGet.Client -Force -Repository PSGallery Use code with caution. Copied to clipboard Repair/Bootstrap WinGet: powershell Repair-WinGetPackageManager -AllUsers Use code with caution. Copied to clipboard The "One-Liner" Community Method For a quick, automated setup (popular for dev environment scripts), many users turn to community-verified scripts: powershell powershell -ExecutionPolicy bypass -File winget-install.ps1 Use code with caution. Copied to clipboard Note: Popular repositories like asheroto/winget-install provide these scripts to handle dependencies like UI Xaml and VC++ Libs automatically. WinGet Review: The Pro's and Con's 13 sites Use WinGet to install and manage applications | Microsoft Learn Mar 24, 2026 —
| Action | Command | |--------|---------| | Search for app | winget search <app> | | Show app details | winget show <app> | | Install app | winget install <app> | | Uninstall app | winget uninstall <app> | | List installed apps | winget list | | Update a specific app | winget upgrade <app> | | Update all apps | winget upgrade --all | | Export installed apps | winget export -o apps.json | | Install from export | winget import -i apps.json | install winget powershell
Would you like a printable PDF version or a focus on with winget? WinGet is natively supported on: Windows 10 version
Before diving into the installation process, it is essential to ensure your system meets the necessary criteria. WinGet is natively supported on: Windows 10 version 1809 (build 17763) or later. Windows 11 (all versions). install winget powershell
If you are running a modern version of Windows 10 (specifically version 1809 or later) or any version of Windows 11, the Windows Package Manager is installed by default. It comes bundled with the package.
Once installed, you can perform several management tasks directly from your terminal: winget install Search for software: winget search Upgrade all apps: winget upgrade --all Uninstall software: winget uninstall