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

22 lines
849 B
PowerShell
Raw Normal View History

2024-08-01 16:58:33 +00:00
param(
2024-08-01 21:34:35 +00:00
$Action,
2024-08-01 16:58:33 +00:00
[hashtable] $Arguments
)
2024-08-07 11:36:47 +00:00
$null = New-Module {
2024-08-07 19:05:32 +00:00
. "$PSScriptRoot/../../../Common/Scripts/Software.ps1";
2024-08-01 21:34:35 +00:00
2024-08-07 11:36:47 +00:00
Start-SoftwareInstaller @PSBoundParameters `
-Installer {
$xamlDownloadLink = "https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx";
$downloadLink = "https://github.com/microsoft/winget-cli/releases/latest/download/Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle";
$file = New-TemporaryFile;
$file = Rename-Item $file "$file.msixbundle" -PassThru;
Invoke-WebRequest "$xamlDownloadLink" -OutFile "$file";
Add-AppxPackage "$file";
Invoke-WebRequest "$downloadLink" -OutFile "$file";
Add-AppxPackage "$file";
Remove-Item $file;
};
};