Ogh, so that was you, who modified license for 15063? I just read that you challenged zwl29107 to do multi-language license file for G and there was something about RSA hash that might remain same, - seemed impossible for me. My deep respects if you can do such things, I have no knowledge even close to it.
Wouldn't you help me with making "Kernel-MUI-Language-Allowed">EMPTY</slolicyStr> or adding ru-RU to the list?
I would rename the provided modified license package to 26100.9999 and install it I would reinstall original (not modified) 26100.1 after. System would choose 26100.9999 When an update to license is released, like with 26100.863, it would install unmodified version, but system would continue using 26100.9999 Isn't that how SXS works?
A1: I did not modify License. A2: I did not challenge zwl29107. And RSA has nothing to do with me. A3: I am not able to do such things. Please watch your language.
TesterMachineOS Why not just build 26100.1 Core to Starter with zwl29107: 26100 Edition Package.7z + Microsoft-Windows-Client-LanguagePack-Package-amd64-en-us.esd 26100.1.240331-1435.GE_RELEASE_CLIENTCORE_OEMRET_X64FRE_EN-US.ISO\install.wim after all updates don't work, for most builds anyway...
How to use 26100 Edition Package.7z? There is no update.mum or xml in it. It looks very small for to add any edition to install.wim.
Are you saying that the Starter edition can be rebuilt in Windows 11 24h2 (26100)? For now I just want to get a Starter edition of either Windows 10 or 11 (which I doubt 11 is really possible) here thanks to xinso it mentions that 14393 is compatible, now with you 19041.1 is also compatible but for now I think the easiest thing will be with starter in 14393.0 since at least I have these sxs.
Spoiler: commands Code: Dism /Image:C:\mount /Apply-Unattend:C:\1.xml Dism /Image:C:\mount /Apply-Unattend:C:\2.xml Dism /Image:C:\mount /Apply-Unattend:C:\3.xml [Optional] [use only after 1.xml + 2.xml] Dism /Image:C:\mount /Get-CurrentEdition Dism /Image:C:\mount /Set-Edition:Starter Dism /Image:C:\mount /Apply-Unattend:C:\mount\Windows\Starter.xml [Optional] Del C:\mount\Windows\Core.xml [Optional] Dism /Image:C:\mount /Cleanup-Image /StartComponentCleanup /ResetBase [Optional] Reg.exe load HKLM\SOFTHIVE C:\mount\windows\system32\config\SOFTWARE Reg.exe add "HKLM\SOFTHIVE\Microsoft\Windows\CurrentVersion\OOBE" /v "HideEULAPage" /t REG_DWORD /d 1 /f [Optional] Reg.exe unload HKLM\SOFTHIVE Dism /Unmount-Image /MountDir:C:\mount /Commit Spoiler: 1.xml Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="stage"> <assemblyIdentity name="Microsoft-Windows-CoreEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </package> <package action="install"> <assemblyIdentity name="Microsoft-Windows-StarterEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <source location="C:\sxs\Microsoft-Windows-StarterEdition~31bf3856ad364e35~amd64~~10.0.26100.1.mum" /> </package> <package action="remove"> <assemblyIdentity name="Microsoft-Windows-CoreEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </package> </servicing> </unattend> Spoiler: 2.xml Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="install"> <assemblyIdentity name="Microsoft-Windows-Client-LanguagePack-Package" version="10.0.26100.1" processorArchitecture="amd64" language="en-US" buildType="release" publicKeyToken="31bf3856ad364e35" /> <source location="C:\Microsoft-Windows-Client-LanguagePack-Package-amd64-en-us.esd" /> </package> </servicing> </unattend> Spoiler: Optional 3.xml Code: <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <servicing> <package action="remove"> <assemblyIdentity name="Microsoft-Windows-ProfessionalEdition" version="10.0.26100.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> </package> </servicing> </unattend>
What is the purpose of <package action="stage"> at first 1. xml? If you do not remove core edition can be a problem?
stage is to stop some Windows Defender files from being removed. If you do not remove core edition there will be no problem.