Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Install Specific Version Of Microsoft.UI.Xaml

I'm trying to install WindowsSubsytemAndroid and PowerShell tell me that I Need The Following:

"Microsoft.UI.Xaml.2.6" with minimum version 2.62108.18004.0.

I managed to install (Get-AppxPackage Show This Two):

Microsoft.UI.Xaml.2.6 2.62106.23002.0

Microsoft.UI.Xaml.2.7 7.2109.13004.0

But This Doesn't Solve The Problem. Any Idea ?

like image 270
user232560 Avatar asked Oct 18 '25 14:10

user232560


2 Answers

click this link https://store.rg-adguard.net/ URL: https://www.microsoft.com/store/productId/9P3395VX91NR Channel: Slow click the tick button, below you will get a set of files. select the files you want and install it via powershell

like image 92
Phil Avatar answered Oct 21 '25 05:10

Phil


There is a way to download and install just the appx package directly from Microsoft GitHub using PowerShell:

Invoke-WebRequest -Uri https://github.com/microsoft/microsoft-ui-xaml/releases/download/v2.8.6/Microsoft.UI.Xaml.2.8.x64.appx -OutFile $env:TEMP\Microsoft.UI.Xaml.2.8.x64.appx
Add-AppxPackage $env:TEMP\Microsoft.UI.Xaml.2.8.x64.appx

You can get different versions by changing the v2.8.6 above to a different version. Unfortunately, I'm not able to see which ones are available this way. Most recent version of this writing is there.

like image 41
HackSlash Avatar answered Oct 21 '25 03:10

HackSlash



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!