Winget | Powershell

WinGet comes pre-installed on modern versions of Windows 11 and recent Windows 10 builds. To verify you have it, open PowerShell and type: powershell winget --version Use code with caution.

# Simple list of installed apps names winget list | Select-String -Pattern "^\w" | ForEach-Object $_.Line.Trim() winget powershell

# Silent mode (no prompts) winget install --id 7zip.7zip --silent WinGet comes pre-installed on modern versions of Windows