There are three mandatory Edition-Specific packages for an edition. 1. Branding 2. Editions 3. SPP Among them, two sub packages are oftenly updated by CU for 17763.1 LTSC. 1. Editions 2. SPP License (Default is hardly updated)
What to do today? Except arm64 22621\23403 Unstage (twins) which I just can't make it. gailium119 is away for a year. zhanglin disappeared for a long time. Today, zhanglin can do better than me. Unfortunately, he cannot make his own script. Actually, you don't need to make it yourself. I started with some simple scrip which I can understand. Then based on it, I refurbish with my own needs.
[Windows] Core Professional EnterpriseG Windows in different structures. [Hamburger] Chicken Pork Beef Hamburger in different recipes. To sum it up: Reconstruction can do conversion, from 1 to 1. Construction allows any combination, from 0 to 1.
Test manual Construction of 22621.1 Windows 11 Enterprise arm64 en-US (with Wrecore image 76,952 KB) Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.22621.1 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\3 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] The changes due to package Package_for_ServicingStack_1344 requires the current servicing session to be reloaded. All the packages will be processed again. Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] Processing 2 of 3 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~22621.1391.1.1 [==========================100.0%==========================] Processing 3 of 3 - Adding package Package_for_KB5023595~31bf3856ad364e35~arm64~~22621.1390.1.0 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22624.1391 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>
Q: How to remove package, keeping compontnts? e.g. Microsoft-Windows-ServicingStack-OneCoreDS-CrossArch-Package~31bf3856ad364e35~arm64~~10.0.22621.1.mum [Before] 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-ServicingStack-OneCoreDS-CrossArch-Package" version="10.0.22621.1" processorArchitecture="arm64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <package identifier="ServicingStack-OneCoreDS-Package_x86" releaseType="Feature Pack"> <update name="Microsoft-Windows-ServicingStack-OneCoreDS-Package_x86"> <component> <assemblyIdentity name="Microsoft-Windows-ServicingStack-OnecoreDs-Deployment" version="10.0.22621.1" processorArchitecture="x86" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS" /> </component> </update> </package> </assembly> ---> Delete Code: <component> <assemblyIdentity name="Microsoft-Windows-ServicingStack-OnecoreDs-Deployment" version="10.0.22621.1" processorArchitecture="x86" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" versionScope="nonSxS" /> </component> [After] 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-ServicingStack-OneCoreDS-CrossArch-Package" version="10.0.22621.1" processorArchitecture="arm64" language="neutral" buildType="release" publicKeyToken="31bf3856ad364e35" /> <package identifier="ServicingStack-OneCoreDS-Package_x86" releaseType="Feature Pack"> <update name="Microsoft-Windows-ServicingStack-OneCoreDS-Package_x86"> </update> </package> </assembly> PS: Windows has same components of it, but no package. Because they are incorporated in some system core package.
Now, all done as you said. Though it gets a bit bigger (77,008 KB). But I still get happier. Thank you. Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.22621.1 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\3 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] The changes due to package Package_for_ServicingStack_1344 requires the current servicing session to be reloaded. All the packages will be processed again. Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] Processing 2 of 3 - Adding package Package_for_KB5023595~31bf3856ad364e35~arm64~~22621.1390.1.0 [==========================100.0%==========================] Processing 3 of 3 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~22621.1465.1.0 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22624.1465 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32> PS: If you delete something manually, it may get bigger.
Test manual Construction of 23403.1001 Windows 11 Enterprise arm64 en-US (with 22621.1 Wrecore image at #10846) Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.23403.1001 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32> K:\Windows\servicing\Version\10.0.22621.1 ---> automatically K:\Windows\servicing\Version\10.0.23403.1 But those 22621.1 files and folders stay in WinSxS\Manifests and WinSxS.
[Unstage Workaround 20,990 KB] Code: [Image] Windows\System32\Dism CbsProvider.dll (22000.1) OSProvider.dll (22000.1) Windows\SysWOW64\Dism CbsProvider.dll (22000.1) OSProvider.dll (22000.1 Windows\servicing\Version 10.0.22000.1 Windows\WinSxS arm64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_5fa30728cc138270 x86_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_0384636b13b61c9e [Construction] dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml ren K:\Windows\servicing\Version\10.0.22000.1 10.0.22621.1 rd /s /q K:\Windows\WinSxS\arm64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_5fa30728cc138270 rd /s /q K:\Windows\WinSxS\x86_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_0384636b13b61c9e dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 [==========================100.0%==========================] Error: 14104 The file is not a part of the assembly. The DISM log file can be found at z:\1.log C:\windows\system32>ren K:\Windows\servicing\Version\10.0.22000.1 10.0.22621.1 C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.22621.1 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.22621.1 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\3 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22621.1 Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] The changes due to package Package_for_ServicingStack_1344 requires the current servicing session to be reloaded. All the packages will be processed again. Processing 1 of 3 - Adding package Package_for_ServicingStack_1344~31bf3856ad364e35~arm64~~22621.1344.1.2 [==========================100.0%==========================] Processing 2 of 3 - Adding package Package_for_KB5023595~31bf3856ad364e35~arm64~~22621.1390.1.0 [==========================100.0%==========================] Processing 3 of 3 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~22621.1465.1.0 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.22624.1465 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>
Test manual Construction of 23403.1001 Windows 11 Enterprise arm64 en-US (with Unstage image based on #10848) [Unstage Workaround 21,223 KB] Code: [Image] Windows\System32\Dism CbsProvider.dll (22000.1) OSProvider.dll (22000.1) Windows\SysWOW64\Dism CbsProvider.dll (22000.1) OSProvider.dll (22000.1 Windows\servicing\Version 10.0.22000.1 Windows\WinSxS arm64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_5fa30728cc138270 x86_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_0384636b13b61c9e [Construction] dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml ren K:\Windows\servicing\Version\10.0.22000.1 10.0.23403.1001 rd /s /q K:\Windows\WinSxS\arm64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_5fa30728cc138270 rd /s /q K:\Windows\WinSxS\x86_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_0384636b13b61c9e dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 [==========================100.0%==========================] Error: 14104 The file is not a part of the assembly. The DISM log file can be found at z:\1.log C:\windows\system32>ren K:\Windows\servicing\Version\10.0.22000.1 10.0.23403.1001 C:\windows\system32>rd /s /q K:\Windows\WinSxS\arm64_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_5fa30728cc138270 C:\windows\system32>rd /s /q K:\Windows\WinSxS\x86_microsoft-windows-servicingstack_31bf3856ad364e35_10.0.22000.1_none_0384636b13b61c9e C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.23403.1001 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Current edition is: Current Edition : Enterprise The operation completed successfully. C:\windows\system32>
Test Construct 19044.2728 Windows 10 Enterprise N LTSC arm64 fr-FR (Unstage) Code: ------------------------------------------------------------ Extract source packages ------------------------------------------------------------ Creating files: 46707 of 46707 (100%) done Extracting file data: 5533 MiB of 5533 MiB (100%) done Applying metadata to files: 46707 of 46707 (100%) done Done extracting files. ------------------------------------------------------------ Expand Cumulative update ------------------------------------------------------------ ======================================================================================================== Construct 19044.2728 Windows 10 Enterprise N LTSC arm64 fr-FR ======================================================================================================== :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Unstage image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Construct EnterpriseSN :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Add fr-FR Client language :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add fr-FR language features ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-fr-fr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-fr-fr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-OCR-fr-fr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Speech-fr-fr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-fr-fr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add FOD ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package OpenSSH-Client-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add fr-FR FOD language ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~fr-FR~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~fr-FR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Export fr-FR winre.wim to EnterpriseSN image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Servicing Stack update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Reset Winre base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.2728 [====================== 38.4% ] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\temp\mount\Windows\System32\Recovery\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Optimize winre.wim ------------------------------------------------------------ "temp\mount\Windows\System32\Recovery\winre.wim" original size: 551289 KiB Using LZX compression with 12 threads Archiving file data: 914 MiB of 914 MiB (100%) done "temp\mount\Windows\System32\Recovery\winre.wim" optimized size: 367968 KiB Space saved: 183320 KiB ------------------------------------------------------------ Add Servicing Stack update to EnterpriseSN image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add 21H2Enablement to EnterpriseSN image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5003791~31bf3856ad364e35~arm64~~19041.1237.1.3 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to EnterpriseSN image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set EnterpriseSN key ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 Starting to install product key... Finished installing product key. The operation completed successfully. ============================================================ Current Edition : EnterpriseSN (Volume) ============================================================ ------------------------------------------------------------ Reset EnterpriseSN base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 [===== 10.0% ] [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount EnterpriseSN image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\Combined.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set WIM information ------------------------------------------------------------ Setting the NAME property of image 1 to "Windows 10 Enterprise N LTSC 2021". Setting the DESCRIPTION property of image 1 to "Windows 10 Enterprise N LTSC 2021". Setting the FLAGS property of image 1 to "EnterpriseSN". Setting the DISPLAYNAME property of image 1 to "Windows 10 Enterprise N LTSC". Setting the DISPLAYDESCRIPTION property of image 1 to "19044.2728 Windows 10 Enterprise N LTSC". ------------------------------------------------------------ Export EnterpriseSN image to install.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Delete temporary folder ------------------------------------------------------------ ======================================================================================================== 19044.2728 Windows 10 Enterprise N LTSC arm64 fr-FR has been successfully constructed on 2023/3/18 ======================================================================================================== Mission took 0:25:33.15 (1533.15s total) Press any key to continue . . . Test Construct 19044.2728 Windows 10 Enterprise LTSC arm64 he-IL (Wrecore) Code: ------------------------------------------------------------ Extract source packages ------------------------------------------------------------ Creating files: 46707 of 46707 (100%) done Extracting file data: 5533 MiB of 5533 MiB (100%) done Applying metadata to files: 46707 of 46707 (100%) done Done extracting files. ------------------------------------------------------------ Expand Cumulative update ------------------------------------------------------------ ======================================================================================================== Construct 19044.2728 Windows 10 Enterprise LTSC arm64 he-IL ======================================================================================================== :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Wrecore image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Construct EnterpriseS :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Add he-IL Client language :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add he-IL language features ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-he-il-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Fonts-Hebr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-he-il-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add FOD ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package OpenSSH-Client-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add he-IL FOD language ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~he-IL~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~he-IL~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add VCLibs ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 The operation completed successfully. ------------------------------------------------------------ Export he-IL winre.wim to EnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Servicing Stack update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add SystemReset update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5021043~31bf3856ad364e35~arm64~~19041.2247.1.0 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Reset Winre base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.2728 [====================== 38.4% ] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\temp\mount\Windows\System32\Recovery\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Optimize winre.wim ------------------------------------------------------------ "temp\mount\Windows\System32\Recovery\winre.wim" original size: 550639 KiB Using LZX compression with 12 threads Archiving file data: 936 MiB of 936 MiB (100%) done "temp\mount\Windows\System32\Recovery\winre.wim" optimized size: 367624 KiB Space saved: 183015 KiB ------------------------------------------------------------ Add Servicing Stack update to EnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add 21H2Enablement to EnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5003791~31bf3856ad364e35~arm64~~19041.1237.1.3 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to EnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set EnterpriseS key ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 Starting to install product key... Finished installing product key. The operation completed successfully. ============================================================ Current Edition : EnterpriseS (Volume) ============================================================ ------------------------------------------------------------ Reset EnterpriseS base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 [===== 10.0% ] [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount EnterpriseS image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\Combined.wim Image Index : 2 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set WIM information ------------------------------------------------------------ Setting the NAME property of image 2 to "Windows 10 Enterprise LTSC 2021". Setting the DESCRIPTION property of image 2 to "Windows 10 Enterprise LTSC 2021". Setting the FLAGS property of image 2 to "EnterpriseS". Setting the DISPLAYNAME property of image 2 to "Windows 10 Enterprise LTSC". Setting the DISPLAYDESCRIPTION property of image 2 to "19044.2728 Windows 10 Enterprise LTSC". ------------------------------------------------------------ Export EnterpriseS image to install.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Delete temporary folder ------------------------------------------------------------ ======================================================================================================== 19044.2728 Windows 10 Enterprise LTSC arm64 he-IL has been successfully constructed on 2023/3/18 ======================================================================================================== Mission took 0:26:43.06 (1603.06s total) Press any key to continue . . .
Test Construct 19044.2728 Windows 10 IoT Enterprise LTSC arm64 hr-HR (Wincore) Code: ------------------------------------------------------------ Extract source packages ------------------------------------------------------------ Creating files: 46707 of 46707 (100%) done Extracting file data: 5533 MiB of 5533 MiB (100%) done Applying metadata to files: 46707 of 46707 (100%) done Done extracting files. ------------------------------------------------------------ Expand Cumulative update ------------------------------------------------------------ ======================================================================================================== Construct 19044.2728 Windows 10 IoT Enterprise LTSC arm64 hr-HR ======================================================================================================== :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Wincore image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Construct IoTEnterpriseS :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Add hr-HR Client language :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add hr-HR language features ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-hr-hr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-hr-hr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-OCR-hr-hr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-hr-hr-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add FOD ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package OpenSSH-Client-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add hr-HR FOD language ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~hr-HR~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-PMCPPC-FoD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~hr-HR~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Export hr-HR winre.wim to IoTEnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Servicing Stack update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add SystemReset update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5021043~31bf3856ad364e35~arm64~~19041.2247.1.0 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Reset Winre base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.2728 [====================== 38.4% ] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\temp\mount\Windows\System32\Recovery\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Optimize winre.wim ------------------------------------------------------------ "temp\mount\Windows\System32\Recovery\winre.wim" original size: 550269 KiB Using LZX compression with 12 threads Archiving file data: 940 MiB of 940 MiB (100%) done "temp\mount\Windows\System32\Recovery\winre.wim" optimized size: 367358 KiB Space saved: 182910 KiB ------------------------------------------------------------ Add Servicing Stack update to IoTEnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2664~31bf3856ad364e35~arm64~~19041.2664.1.4 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add 21H2Enablement to IoTEnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5003791~31bf3856ad364e35~arm64~~19041.1237.1.3 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to IoTEnterpriseS image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2728.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set IoTEnterpriseS key ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 Starting to install product key... Finished installing product key. The operation completed successfully. ============================================================ Current Edition : IoTEnterpriseS (OEM) ============================================================ ------------------------------------------------------------ Reset IoTEnterpriseS base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19044.2728 [===== 10.0% ] [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount IoTEnterpriseS image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\Combined.wim Image Index : 3 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set WIM information ------------------------------------------------------------ Setting the NAME property of image 3 to "Windows 10 IoT Enterprise LTSC 2021". Setting the DESCRIPTION property of image 3 to "Windows 10 IoT Enterprise LTSC 2021". Setting the FLAGS property of image 3 to "IoTEnterpriseS". Setting the DISPLAYNAME property of image 3 to "Windows 10 IoT Enterprise LTSC". Setting the DISPLAYDESCRIPTION property of image 3 to "19044.2728 Windows 10 IoT Enterprise LTSC". ------------------------------------------------------------ Export IoTEnterpriseS image to install.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Delete temporary folder ------------------------------------------------------------ ======================================================================================================== 19044.2728 Windows 10 IoT Enterprise LTSC arm64 hr-HR has been successfully constructed on 2023/3/18 ======================================================================================================== Mission took 0:25:11.31 (1511.31s total) Press any key to continue . . . Test Construct 19045.2787 Windows 10 Home Single Language arm64 hu-hU (Neutral) Code: ------------------------------------------------------------ Extract source packages ------------------------------------------------------------ Creating files: 46707 of 46707 (100%) done Extracting file data: 5533 MiB of 5533 MiB (100%) done Applying metadata to files: 46707 of 46707 (100%) done Done extracting files. ------------------------------------------------------------ Expand Cumulative update ------------------------------------------------------------ ======================================================================================================== Reconstruct 19045.2787 Windows 10 Home Single Language arm64 hu-hU ======================================================================================================== :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Neutral image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Convert Neutral to CoreSingleLanguage :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Removing package Microsoft-Windows-NeutralEdition~31bf3856ad364e35~arm64~~10.0.19041.1 Removing package Microsoft-Windows-NeutralEdition~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Add hu-hU Client language :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add hu-hU language features ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-Basic-hu-hu-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-OCR-hu-hu-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-hu-hu-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add FOD ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-OneCore-DirectX-Database-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-FodMetadata-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Migration-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MediaPlayer-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-TabletPCMath-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-UserExperience-Desktop-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package OpenSSH-Client-Package~31bf3856ad364e35~arm64~~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add hu-hU FOD language ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-InternetExplorer-Optional-Package~31bf3856ad364e35~arm64~hu-HU~11.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.arm~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64.x86~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-MSPaint-FoD-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.arm~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64.x86~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Notepad-FoD-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64.x86~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-PowerShell-ISE-FOD-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-Printing-WFS-FoD-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.arm~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64.x86~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-StepsRecorder-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.arm~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64.x86~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Microsoft-Windows-WordPad-FoD-Package~31bf3856ad364e35~arm64~hu-HU~10.0.19041.1 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Export hu-hU winre.wim to CoreSingleLanguage image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Mount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Servicing Stack update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2780~31bf3856ad364e35~arm64~~19041.2780.1.0 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add SystemReset update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5021043~31bf3856ad364e35~arm64~~19041.2247.1.0 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to Winre image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2787.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Reset Winre base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.2787 [====================== 38.5% ] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount Winre image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\temp\mount\Windows\System32\Recovery\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Optimize winre.wim ------------------------------------------------------------ "temp\mount\Windows\System32\Recovery\winre.wim" original size: 551081 KiB Using LZX compression with 12 threads Archiving file data: 937 MiB of 937 MiB (100%) done "temp\mount\Windows\System32\Recovery\winre.wim" optimized size: 367862 KiB Space saved: 183219 KiB ------------------------------------------------------------ Add Servicing Stack update to CoreSingleLanguage image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_ServicingStack_2780~31bf3856ad364e35~arm64~~19041.2780.1.0 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add 22H2Enablement to CoreSingleLanguage image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_KB5015684~31bf3856ad364e35~arm64~~19041.1799.1.2 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Add Cumulative update to CoreSingleLanguage image ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19041.1 Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~arm64~~19041.2787.1.7 [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set CoreSingleLanguage key ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19045.2787 Starting to install product key... Finished installing product key. The operation completed successfully. ============================================================ Current Edition : CoreSingleLanguage (Retail) ============================================================ ------------------------------------------------------------ Reset CoreSingleLanguage base ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.19045.2787 [===== 10.0% ] [==========================100.0%==========================] The operation completed successfully. :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Save and Unmount CoreSingleLanguage image :::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : Z:\19041.1_Unstage_Wrecore_Wincore_and_Neutral_ARM64\Combined.wim Image Index : 4 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Set WIM information ------------------------------------------------------------ Setting the NAME property of image 4 to "Windows 10 CoreSingleLanguage". Setting the DESCRIPTION property of image 4 to "Windows 10 CoreSingleLanguage". Setting the FLAGS property of image 4 to "CoreSingleLanguage". Setting the DISPLAYNAME property of image 4 to "Windows 10 Home Single Language". Setting the DISPLAYDESCRIPTION property of image 4 to "19045.2787 Windows 10 Home Single Language". ------------------------------------------------------------ Export CoreSingleLanguage image to install.wim ------------------------------------------------------------ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Exporting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------ Delete temporary folder ------------------------------------------------------------ ======================================================================================================== 19045.2787 Windows 10 Home Single Language arm64 hu-hU has been successfully reconstructed on 2023/3/18 ======================================================================================================== Mission took 0:20:59.85 (1259.85s total) Press any key to continue . . .
Windows, composed of modules, aka packages. Three things: 1. C:\Windows\servicing\Packages (cat & mum) ---> 2. C:\Windows\WinSxS\Manifests (Deployment manifest & manifest) ---> 3. C:\Windows\WinSxS (binaries) WinSxS\Manifests\manifest VS WinSxS\folder, a couple in same name. One to One. e.g. WinSxS\Manifests\A.manifest VS WinSxS\A WinSxS\Manifests\B.manifest VS WinSxS\B
Test manual Construction of 23403.1001 Windows 11 Team arm64 en-US Code: C:\windows\system32>dism /english /logpath:z:\1.log /image:K: /apply-unattend:Z:\WinSxS\1.xml Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /English /image:K: /add-package:Z:\2 Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Processing 1 of 6 - Adding package Microsoft-Windows-Client-LanguagePack-Package~31bf3856ad364e35~arm64~en-US~10.0.23403.1001 [==========================100.0%==========================] Processing 2 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Basic-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 3 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 4 of 6 - Adding package Microsoft-Windows-LanguageFeatures-OCR-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 5 of 6 - Adding package Microsoft-Windows-LanguageFeatures-Speech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] Processing 6 of 6 - Adding package Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package~31bf3856ad364e35~arm64~~10.0.23403.1001 [==========================100.0%==========================] The operation completed successfully. C:\windows\system32>dism /english /image:K: /set-skuintldefaults:en-us Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Set SKU default settings for: en-us The operation completed successfully. C:\windows\system32>dism /English /image:K: /get-currentedition Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 10.0.23403.1001 Current edition is: Current Edition : PPIPro The operation completed successfully. C:\windows\system32>
[25314.1000 SecHealthUI] [Client] Stay "Microsoft-Windows-EditionSpecific-EnterpriseS-Package~31bf3856ad364e35~amd64~~10.0.25314.1000" update="63eb3a7e1d2542e2b60f092669ec3705"/> "Microsoft-SecHealth-UI-Package~31bf3856ad364e35~amd64~~10.0.25314.1000" update="afc0239a5f03af9eb343231d2bc57ae3"/> "Microsoft-Windows-EditionSpecific-EnterpriseS-Package~31bf3856ad364e35~arm64~~10.0.25314.1000" update="63eb3a7e1d2542e2b60f092669ec3705"/> "Microsoft-SecHealth-UI-Package~31bf3856ad364e35~arm64~~10.0.25314.1000" update="afc0239a5f03af9eb343231d2bc57ae3"/> 20348.1 SecHealthUI components Windows\SystemApps\Microsoft.Windows.SecHealthUI_cw5n1h2txyewy Code: Microsoft.Windows.SecHealthUI_cw5n1h2txyewy amd64_microsoft-shellcommon-merged-deployment_31bf3856ad364e35_10.0.20348.1_none_633a1be9839516ef.manifest amd64_microsoft-windows-s...appxmain.resources_31bf3856ad364e35_10.0.20348.1_zh-tw_5a3b8af604da0b97 amd64_microsoft-windows-s...appxmain.resources_31bf3856ad364e35_10.0.20348.1_zh-tw_5a3b8af604da0b97.manifest amd64_microsoft-windows-sechealthui.appxmain_31bf3856ad364e35_10.0.20348.1_none_3c5f9a77a704a0c8 amd64_microsoft-windows-sechealthui.appxsetup_31bf3856ad364e35_10.0.20348.1_none_e7e696ce5aa75b12 [Server] Gone Program Files\WindowsApps\Microsoft.SecHealthUI_1000.25314.1000.0_x64__8wekyb3d8bbwe
Construction, is also the most efficient way to make custom image. Speaking of Customization. "Get Started" is impossible to be individually removed in official way. It is one item of UserExperience-Desktop-Package which is composed of two functions. e.g. 22621.1. 1. UserExperience-Desktop C:\Windows\SystemApps\ MicrosoftWindows.Client.CBS_cw5n1h2txyewy 2. UserExperience-Core C:\Windows\SystemApps\ MicrosoftWindows.Client.Core_cw5n1h2txyewy For "Get Started", and you remove this package, whole system won't work normally. With malfunctional Start icon on the left corner, how to use Windows 11?
Is there already any attempt to reconstruct the NanoServer/NanoServer.wim found on the Windows Server 2016 ISO? Since version 2023.2.9128, this WIM file can be loaded by NTLite.