Add-AppxPackage -Path ".\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
Add-AppxPackage -Path "vclibs.appx"
For enterprise environments managing many machines, you can use PowerShell DSC:
Configuration InstallWinget Import-DscResource -ModuleName 'PSDesiredStateConfiguration'Script InstallAppInstaller GetScript = return @ Result = $false SetScript = # Download and install logic from Method 2 $url = "https://aka.ms/getwinget" Invoke-WebRequest -Uri $url -OutFile "$env:TEMP\winget.msixbundle" Add-AppxPackage -Path "$env:TEMP\winget.msixbundle" TestScript = return (Get-Command winget -ErrorAction SilentlyContinue) -ne $null