From 41063c46cf2f78c3bc5969b3282394de0d62bab6 Mon Sep 17 00:00:00 2001 From: KnifMelti Date: Mon, 29 Apr 2024 15:00:06 +0200 Subject: [PATCH] Req for WSB! --- .../functions/Install-Prerequisites.ps1 | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 b/Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 index 75a689f..98195d9 100644 --- a/Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 +++ b/Sources/WAU/Winget-AutoUpdate/functions/Install-Prerequisites.ps1 @@ -64,6 +64,28 @@ function Install-Prerequisites { } } + #Check if Microsoft.UI.Xaml.2.8 is installed (Req for WSB: https://learn.microsoft.com/en-us/windows/package-manager/winget/#install-winget-on-windows-sandbox) + if (!(Get-AppxPackage -Name 'Microsoft.UI.Xaml.2.8' -AllUsers)) { + try { + Write-ToLog "Microsoft.UI.Xaml.2.8 is not installed" "Red" + #Download + $UIXamlUrl = "https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx" + $UIXamlFile = "$env:TEMP\Microsoft.UI.Xaml.2.8.x64.appx" + Write-ToLog "-> Downloading Microsoft.UI.Xaml.2.8..." + Invoke-RestMethod -Uri $UIXamlUrl -OutFile $UIXamlFile + #Install + Write-ToLog "-> Installing Microsoft.UI.Xaml.2.8..." + Add-AppxProvisionedPackage -Online -PackagePath $UIXamlFile -SkipLicense | Out-Null + Write-ToLog "-> Microsoft.UI.Xaml.2.8 installed successfully." "Green" + } + catch { + Write-ToLog "-> Failed to intall Microsoft.UI.Xaml.2.8..." "Red" + } + finally { + Remove-Item -Path $UIXamlFile -Force + } + } + Write-ToLog "Prerequisites checked. OK`n" "Green" }