Building Windows 11 Pro 24h2 (26100.1) to IoTEnterpriseS and EnterpriseS works, using the packages sent by @kibkalo . I'll share the script soon, but I have a problem, Windows Defender flags a "Loading Engine Updates" error and flags everything including the definitions version as 0.0.0.0 Is there a solution for this? It requires modifying some things in the sxs I guess.
when i've tried to re-install key, there was error. but FINALLY activation works thanks again xinso - great knowledge
1.xml stage Professional before removal stops a defender package from being removed... Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="stage"> <assemblyIdentity name="Microsoft-Windows-ProfessionalEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </package> <package action="install"> <assemblyIdentity name="Microsoft-Windows-IoTEnterpriseSEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <source location="Source Here" /> </package> <package action="remove"> <assemblyIdentity name="Microsoft-Windows-ProfessionalEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </package> </servicing> </unattend>
In this build that I share the style is official, the official one does not have a store but the lines from the DelAppx.txt file corresponding to the Microsoft store can be deleted to prevent the store from being deleted.
Do not you convert original professional iso to enterprises? Using uupdump? Uupdump has congfigure.ini kind of files to add remove store. Where the delappx.txt comes from?
Does this mean I have hotpatch working on my AzureStackHCI 26100.1. After install did not ask for reboot & when reboot I didn't loose GUI.
The question is... What causes the removal of these files in the mounted install.wim? The script itself does its job of removing apps and installing EnterpriseSEdition without any issues. There is no command inside the script that deletes these files.
No, I'm not using UUPDump, even in UUP Dump there are no EnterpriseS (26100.1) packages DelAppx.txt is part of the script I'll share to convert from Professional to EnterpriseS (sorry if I may have expressed myself badly)