Replace <package_name> with the name of the software you want to install.
Note: Adding -IncludePrerelease to the final command will install the preview version instead. Method 2: Manual MSIX Installation via PowerShell install winget using powershell updated
# Run as Administrator $githubUrl = "https://api.github.com/repos/microsoft/winget-cli/releases/latest" $release = Invoke-RestMethod -Uri $githubUrl $asset = $release.assets | Where-Object $_.name -like "*.msixbundle" $downloadUrl = $asset.browser_download_url $output = "$env:TEMP\winget.msixbundle" Replace <package_name> with the name of the software