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

12 lines
418 B
PowerShell
Raw Normal View History

#!/bin/pwsh
. "$PSScriptRoot/../../Scripts/Context.ps1";
function Install-Winget {
$downloadLink = "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle";
$file = New-TemporaryFile;
$file = Rename-Item $file "$file.msixbundle";
Invoke-WebRequest "$downloadLink" -OutFile "$file";
Add-AppxPackage "$file";
Remove-Item $file;
}