Windows RE builds successfully, while I get "error 1168 element not found" for install.wim file. Here is full unattend.log file and whole _imgs folder.
Test 10586.1000 Unstaged ServerARM64 en-US Code: C:\windows\system32>dism /english /image:z:\1 /apply-unattend:Z:\packages\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10586.1000 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:z:\1 /add-package:z:\lp.cab Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10586.1000 Processing 1 of 1 - Adding package Microsoft-Windows-Server-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.10586.1000 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:Z:\1 /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10586.1000 Current edition is: Current Edition : ServerARM64 The operation completed successfully. C:\windows\system32>dism /english /image:Z:\1 /get-targeteditions Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.10586.1000 Editions that can be upgraded to: (The current edition cannot be upgraded to any target editions.) The operation completed successfully. C:\windows\system32> Q: Is there latest ARM64 Unstaged? If not, Q: How to DIY?
First of all, thanks to example12345678912345678 for providing the "19100.1051.210916-1011.VB_RELEASE_SVC_TEAM_FLIGHT_CLIENTUNSTAGED_RETAIL_X64FRE_EN-US.ISO.iso" download link. Homemade 22598.1.220408-1503.NI_RELEASE_CLIENTUNSTAGED_RETAIL_X64FRE_ZH-CN Spoiler
Creating 22598.1 Unstaged base.wim and install.wim amd64 Code: =============================================================================== Creating 22598.1 Unstaged base.wim and install.wim amd64 =============================================================================== ------------------------------------------------------------ Preparing sources ------------------------------------------------------------ ------------------------------------------------------------ Capturing base image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.746 Saving image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Exporting base image to base.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.746 Exporting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Capturing install image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.746 Saving image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Exporting install image to install.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.746 Exporting image [==========================100.0%==========================] The operation completed successfully. =============================================================================== 22598.1 Unstaged base.wim and install.wim amd64 has been successfully created. =============================================================================== Mission took 0:4:8.56 (248.56s total) Press any key to continue . . . Code: Windows_Client_(22598.1.amd64fre.ni_release.220408-1503)_EDITIONS:CloudEdition,CloudEditionN,CoreCountrySpecific,Core,CoreN,CoreSingleLanguage,Education,EducationN,Enterprise,EnterpriseG,EnterpriseGN,EnterpriseN,IoTEnterprise,PPIPro,ProfessionalCountrySpecific,Professional,ProfessionalEducation,ProfessionalEducationN,ProfessionalN,ProfessionalSingleLanguage,ProfessionalWorkstation,ProfessionalWorkstationN,ServerRdsh
OK, I don't know if I'm wrong, but it didn't create unstaged. It only created staged media which means only one SKU is created mentioned in config.ini and install.xml files. It looks like I have to copy wincore.wim, mount it, edit install.xml file, apply xml file to mounted image and repeat it 21 times (Or how many SKUs I can create). I'm pretty sure it's going to waste time and become staged media, but it's better than nothing.
tr-TR does not need: Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package tr-TR does not have: microsoft-windows-languagefeatures-speech-tr-tr-package-amd64 install.xml Code: <package action="install"> <assemblyIdentity name="Microsoft-Windows-LanguageFeatures-Fonts-Hans-Package" version="10.0.22000.1" processorArchitecture="amd64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <source location="Z:\langfeatures\microsoft-windows-languagefeatures-fonts-hans-package-amd64\update.mum" /> </package> langfeatures.txt Code: microsoft-windows-languagefeatures-fonts-hans-package-amd64 microsoft-windows-languagefeatures-speech-tr-tr-package-amd64
I kinda recreated windows 10 home, but dism /get-currentedition and /get-targeteditions not work. However reconstructed home features need look like a bit regular home. (really changed branding from winpe and certificates from some uup files) Spoiler
Windows_Client_(22598.1.amd64fre.ni_release.220408-1503)_EDITIONS: --> Windows Client (22598.1.amd64fre.ni_release.220408-1503) EDITIONS: [Before] Code: echo:Windows_Client_(%BUILDLABEX%)_EDITIONS:>temp\1.txt for /f %%x in ('findstr /i . temp\mum.txt') do echo:%%x,>>temp\1.txt for /f "usebackqdelims=" %%x in ("temp\1.txt") do @<nul set /p"=%%x">>temp\outfile.txt for /f %%x in ('findstr /i . temp\outfile.txt') do set "DISP1=%%x" set "DISP=%DISP1:~0,-1%" set "FLAG=Windows Foundation" set "NAME=Windows Client" files\wimlib-imagex info install.wim 1 --image-property NAME="" --image-property DESCRIPTION="" --image-property FLAGS="" --image-property DISPLAYNAME="" --image-property DISPLAYDESCRIPTION="" %_NUL% files\wimlib-imagex info install.wim 1 --image-property NAME="%NAME%" --image-property DESCRIPTION="%DISP%" --image-property FLAGS="%FLAG%" --image-property DISPLAYNAME="%NAME%" --image-property DISPLAYDESCRIPTION="%DISP%" %_NUL% Code: Windows_Client_(22598.1.amd64fre.ni_release.220408-1503)_EDITIONS:CloudEdition,CloudEditionN,CoreCountrySpecific,Core,CoreN,CoreSingleLanguage,Education,EducationN,Enterprise,EnterpriseG,EnterpriseGN,EnterpriseN,IoTEnterprise,PPIPro,ProfessionalCountrySpecific,Professional,ProfessionalEducation,ProfessionalEducationN,ProfessionalN,ProfessionalSingleLanguage,ProfessionalWorkstation,ProfessionalWorkstationN,ServerRdsh [After] Code: echo:Windows_Client_(%BUILDLABEX%)_EDITIONS:>temp\1.txt for /f %%x in ('findstr /i . temp\mum.txt') do echo:%%x,>>temp\1.txt for /f "usebackqdelims=" %%x in ("temp\1.txt") do @<nul set /p"=%%x">>temp\outfile.txt for /f %%x in ('findstr /i . temp\outfile.txt') do set "DISP1=%%x" set "DISP=%DISP1:~0,-1%" set "FLAG=Windows Foundation" set "NAME=Windows Client" echo:set "DISP=%DISP%">>temp\wiminfo.cmd echo:set "FLAG=%FLAG%">>temp\wiminfo.cmd echo:set "NAME=%NAME%">>temp\wiminfo.cmd echo:goto :eof>>temp\wiminfo.cmd powershell -Command "(gc temp\wiminfo.cmd) -replace '_', ' ' | sc temp\wiminfo.cmd" call temp\wiminfo.cmd files\wimlib-imagex info install.wim 1 --image-property NAME="" --image-property DESCRIPTION="" --image-property FLAGS="" --image-property DISPLAYNAME="" --image-property DISPLAYDESCRIPTION="" %_NUL% files\wimlib-imagex info install.wim 1 --image-property NAME="%NAME%" --image-property DESCRIPTION="%DISP%" --image-property FLAGS="%FLAG%" --image-property DISPLAYNAME="%NAME%" --image-property DISPLAYDESCRIPTION="%DISP%" %_NUL% Code: Windows Client (22598.1.amd64fre.ni release.220408-1503) EDITIONS:Cloud,CloudEdition,CloudEditionN,CoreCountrySpecific,Core,CoreN,CoreSingleLanguage,Education,EducationN,Enterprise,EnterpriseG,EnterpriseGN,EnterpriseN,IoTEnterprise,PPIPro,ProfessionalCountrySpecific,Professional,ProfessionalEducation,ProfessionalEducationN,ProfessionalN,ProfessionalSingleLanguage,ProfessionalWorkstation,ProfessionalWorkstationN,ServerRdsh wiminfo.cmd Code: set "DISP=Windows_Client_(22598.1.amd64fre.ni release.220408-1503)_EDITIONS:Cloud,CloudEdition,CloudEditionN,CoreCountrySpecific,Core,CoreN,CoreSingleLanguage,Education,EducationN,Enterprise,EnterpriseG,EnterpriseGN,EnterpriseN,IoTEnterprise,PPIPro,ProfessionalCountrySpecific,Professional,ProfessionalEducation,ProfessionalEducationN,ProfessionalN,ProfessionalSingleLanguage,ProfessionalWorkstation,ProfessionalWorkstationN,ServerRdsh" set "FLAG=Windows Foundation" set "NAME=Windows Client" goto :eof --> powershell -Command "(gc temp\wiminfo.cmd) -replace '_', ' ' | sc temp\wiminfo.cmd" Code: set "DISP=Windows Client (22598.1.amd64fre.ni release.220408-1503) EDITIONS:Cloud,CloudEdition,CloudEditionN,CoreCountrySpecific,Core,CoreN,CoreSingleLanguage,Education,EducationN,Enterprise,EnterpriseG,EnterpriseGN,EnterpriseN,IoTEnterprise,PPIPro,ProfessionalCountrySpecific,Professional,ProfessionalEducation,ProfessionalEducationN,ProfessionalN,ProfessionalSingleLanguage,ProfessionalWorkstation,ProfessionalWorkstationN,ServerRdsh" set "FLAG=Windows Foundation" set "NAME=Windows Client" goto :eof