PortValhalla/scripts/Windows/Software/winget/Install.ps1

12 lines
412 B
PowerShell
Raw Normal View History

#!/bin/pwsh
function Install-Winget {
$downloadLink = "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle";
$file = New-TemporaryFile;
2024-03-13 10:16:24 +00:00
$file = Rename-Item $file "$file.msixbundle" -PassThru;
Invoke-WebRequest "$downloadLink" -OutFile "$file";
2024-03-13 08:38:02 +00:00
choco install -y winget;
Add-AppxPackage "$file";
Remove-Item $file;
}