MSIX of MAUII app does not installed on Window server 2012 R2

Hi,
I publish the MAUI project using this link: https://learn.microsoft.com/en-us/dotnet/maui/windows/deployment/overview
and later install it on my computer window 10 and it works.
But when I tried to install it on window server 2012 R2 is not working.
What do I miss ?
Thanks,,
In this article:https://github.com/microsoft/msix-packaging/issues/273 it said:
Yes, for MSIX core, specify MSIXCore.Server in the manifest and it should deploy on Server.
How is done here is my window manifest in MAUI app.
<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
<assemblyIdentity version="1.0.0.0" name="AutomationClient.MAUI.WinUI.app"/>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<!-- The combination of below two tags have the following effect:
1) Per-Monitor for >= Windows 10 Anniversary Update
2) System < Windows 10 Anniversary Update
-->
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/PM</dpiAware>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
</windowsSettings>
</application>
</assembly>
Did you get some errors that you install your application in the win Server? If so, please share it.
The symbol is blank see picture:
Based on your screenshot, you cannot open msix file in the window server 2012 R2.
I search msix supported-platforms like following thread, it support on following versions of Windows:
https://learn.microsoft.com/en-us/windows/msix/supported-platforms
It also on 2019 see:
May I ask the version of windows SDK on your Window server 2012 R2 and win10?
I used this link: https://stackoverflow.com/questions/2665755/how-to-get-installed-windows-sdk-version
"Look under Control Panel / Uninstall a program. "Windows Software Development Kit - Windows X.X.X.X" (where X.X.X.X is the version). It will be listed amongst all the other software you have installed on your machin"
Window 10 - Window Software Development Kit- Window 10.019041.685
Window Server-Not Found maybe with other name ?
Can you please answer ?
Could you find this path( C:\Program Files (x86)\Windows Kits\10\References\xx.xxx.xxx) in Windows Server 2012 R2?
No in server 2012 and 2019 , so what I need to do ?
What I need to install in server 2019?
Sign in to comment
MAUI doesn't support Server 2012R2 because MAUI for Windows runs on WinUI 3, and WinUI 3 doesn't run on Server 2012R2.
MSIX does not appear to be related to the actual problem here - from the error message, the issue is that the WinUI cannot be found.
WinUI 3 is supported on Windows 10 1809 and later, which is the client equivalent of Server 2019.
Why you can't run on Server 2019 can be discussed in your thread specific to that platform:
MSIX of MAUI app does not installed on Window server 2019
Wait for an answer for server 2019 -:)
Sign in to comment
0 additional answers
Sort by: Most helpful
Activity