Q1: How does Microsoft prepare UUP package without hash mismatched issue? or Q2: Why Reconstruction and Unstaged with captured package or WinSxS oftenly encounters hash mismatched problem? UUP package, created by Microsoft. WinSxS, installed by Microsoft.
If so, different mum will have different hashes, so in theory, they should not be installed in the system.
It can be installed. But there might be problem with Reconstruction\Unstaged. The mum hash is not correct, manifest may be not too. The manifest matters. The error, most oftenly, directs to manifest or file. ATM, the most reliable package extraction tool is owouwu's pureSxS. It copies. But it needs python.
You can easily. But... I CAN not. You teach zwl29107. I don't use Server. Any working one will do. We want it as perfect as possible.
I'm downloading it. It's possible. But does ServerARM64Edition exist in other repair content packages?
How should mum be modified? I mean, how to judge whether mum needs to be modified? I don't have PureSxS.
This package looks important, but it just seems to refer to other packages. I am extracting the x64 version of this package.
Code: Microsoft-Windows-Server-Shell-Package~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-Server-Shell-Package~31bf3856ad364e35~arm64~xx-XX~10.0.18362.1533.mum Code: Microsoft-Windows-ServerDatacenterACorEdition-Wrapper~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerDatacenterACorEdition~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerDatacenterCorEdition-Wrapper~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerDatacenterCorEdition~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerStandardACorEdition-Wrapper~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerStandardACorEdition~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerStandardCorEdition-Wrapper~31bf3856ad364e35~arm64~~10.0.18362.1533.mum Microsoft-Windows-ServerStandardCorEdition~31bf3856ad364e35~arm64~~10.0.18362.1533.mum
Microsoft-Windows-ServerCore-Package~31bf3856ad364e35~amd64~~10.0.25192.1000.mum Code: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0" copyright="Copyright (c) Microsoft Corporation. All Rights Reserved."> <assemblyIdentity name="Microsoft-Windows-ServerCore-Package" version="10.0.25192.1000" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <package identifier="Server Core" releaseType="Feature Pack"> <parent integrate="delegate"> <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="10.0.25192.1000" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </parent> <update description="Microsoft-Windows-Server-Core-Package-Description" displayName="Microsoft-Windows-Server-Core-Package-DisplayName" name="Server-Core"> <selectable disposition="staged"> <detectNone default="true" /> </selectable> </update> </package> </assembly> Modify to arm64: Microsoft-Windows-ServerCore-Package~31bf3856ad364e35~arm64~~10.0.25192.1000.mum Code: <?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v3" manifestVersion="1.0" copyright="Copyright (c) Microsoft Corporation. All Rights Reserved."> <assemblyIdentity name="Microsoft-Windows-ServerCore-Package" version="10.0.25192.1000" processorArchitecture="arm64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <package identifier="Server Core" releaseType="Feature Pack"> <parent integrate="delegate"> <assemblyIdentity name="Microsoft-Windows-Foundation-Package" version="10.0.25192.1000" processorArchitecture="arm64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </parent> <update description="Microsoft-Windows-Server-Core-Package-Description" displayName="Microsoft-Windows-Server-Core-Package-DisplayName" name="Server-Core"> <selectable disposition="staged"> <detectNone default="true" /> </selectable> </update> </package> </assembly>