On April 9, 2024 (second Tuesday of the month, patch day at Microsoft), various cumulative updates were released for the supported Windows 10 builds. March 2023 will be the last time preview updates will be available for older Windows 10 builds.Updates for the Enterprise LTSC versions are available for Windows 10 RTM up to version 1607. These updates are automatically downloaded and installed by Windows Update, but are available for download in the Microsoft Update Catalog (search for the KB number). The latest Servicing Stack Update (SSU) must be installed before manual installation. for more details : [You must be registered and logged in to see this link.]
So, i'd test on Windows 10 Pro v1809 (OS Build 17763.379.amd64fre.rs5_release) and it Work !
Here are some details How it Work :
*NOTE: ONLY WORK on OS Windows 10 or 11, on Windows 7 get Error: 0x8007007e. The specified image is no longer serviceable and may be corrupted.
**iSSUES: Final size after Cleanup System Image or Reset Image Base is still Huge (over than 5GB)?
***RECOMMEDED: Slimmingdown Final size using Latest EX-100 Series!
[You must be registered and logged in to see this link.] Features and Packages also dism.log.7z file : [You must be registered and logged in to see this link.]
Hope the help
_________________
home7ech
pS : Creative Learning by Doing, Slowly but Do iT Cool's
So, i'd test on Windows 10 Pro v1809 (OS Build 17763.379.amd64fre.rs5_release) and it Work !
Here are some details How it Work :
Integrated 2024-04 Cumulative Updates (KB5036896) Manually :
*NOTE: ONLY WORK on OS Windows 10 or 11, on Windows 7 get Error: 0x8007007e. The specified image is no longer serviceable and may be corrupted.
**iSSUES: Final size after Cleanup System Image or Reset Image Base is still Huge (over than 5GB)?
***RECOMMEDED: Slimmingdown Final size using Latest EX-100 Series!
Code:
REM ====================================================================================================
REM == *** WARNiNG *** =================================================================================
REM == This script require administrator privileges. To do so, 'Run Command Prompt (Administrator)' ! ==
REM ====================================================================================================
SET UPDATEDiR=D:\.Software\[OS]\Updates\Windows 10\1809\2024-04\x64
SET DiSM10=D:\.Programs\WinTools\DiSM\10.0.25947.1000\dism.exe
MD D:\MOUNT
MD D:\SCRATCH
REM [=== Mount install.wim Index:1 : Windows 10 Pro (amd64) ===========================================]
%DiSM10% /Mount-Wim /WimFile:"E:\EX100\sources\install.wim" /Index:1 /MountDir:D:\MOUNT
REM [=== Done Mount install.wim Index:1 : Windows 10 Pro (amd64) ======================================]
REM ====================================================================================================
REM Start PHASE #1 : Integrated Cumulative Update (2024-04—KB5022339) for Windows 10 Version 1809
REM ====================================================================================================
REM [== Add-Package [01] KB5005112 - 2021-08 Servicing Stack Update for Windows 10 ====================]
SET UPDATEFiLE_1=%UPDATEDiR%\windows10.0-kb5005112-x64_81d09dc6978520e1a6d44b3b15567667f83eba2c.msu
%DiSM10% /Image:D:\MOUNT /Add-Package /PackagePath:"%UPDATEFiLE_1%" /ScratchDir:D:\SCRATCH
REM [== Add-Package [02] KB5036896 - 2024-04 Cumulative Updates for Windows 10 ========================]
SET UPDATEFiLE_2=%UPDATEDiR%\windows10.0-kb5036896-x64_57eaad3d6f3738831f3f8c6bdf7a77df618429c2.msu
%DiSM10% /Image:D:\MOUNT /Add-Package /PackagePath:"%UPDATEFiLE_2%" /ScratchDir:D:\SCRATCH
REM [== Add-Package [03] KB5036610 - 2024-04 Cumulative Updates for .NET Framework 3.5 and 4.8 ========]
SET UPDATEFiLE_3=%UPDATEDiR%\windows10.0-kb5036610-x64-ndp48_0785b869db11132c279d2adcae9096ae48ede43d.msu
%DiSM10% /Image:D:\MOUNT /Add-Package /PackagePath:"%UPDATEFiLE_3%" /ScratchDir:D:\SCRATCH
REM [=== ResetBase to defer long-running cleanup operations to the next automatic maintenance =========]
"%DiSM10%" /Image:D:\MOUNT /Cleanup-Image /StartComponentCleanup /ResetBase /Defer
REM [=== Done ResetBase to defer long-running cleanup operations to the next automatic maintenance ====]
REM [=== Saving (Commit) Before Unmount Modified WiM File... ==========================================]
%DiSM10% /Commit-Wim /MountDir:D:\MOUNT
REM [=== Done Saving (Commit) Before Unmount Modified WiM File... =====================================]
REM [=== Optional: Displays information about all Features and Packages... ============================]
SET LOGPATH=D:\Projects\(.DEV)\WiN10.0\2024\2024-05\.log\[WimInFo]\Windows 10 Pro
SET BUiLDDATE=2024.05.02-15.41.24
SET WiMBUiLD=17763.5696.amd64fre.rs5_pro_release
%DiSM10% /Image:D:\MOUNT /Get-Packages > "%LOGPATH%\%BUiLDDATE%_%WiMBUiLD%_#Packages.log"
%DiSM10% /Image:D:\MOUNT /Get-Features > "%LOGPATH%\%BUiLDDATE%_%WiMBUiLD%_#Get-Features.log"
REM [=== Done Displays information about all Features and Packages... =================================]
REM [=== Unmounts install.wim Index:1 : Windows 10 Pro (amd64) ========================================]
%DiSM10% /Unmount-Wim /MountDir:D:\MOUNT /Discard
REM [=== Done Unmounts install.wim Index:1 : Windows 10 Pro (amd64) ===================================]
REM [=== Cleaning Temporary Windows Updates file... ===================================================]
%DiSM10% /Cleanup-Wim >NUL
DiSM/Cleanup-Mountpoints >NUL
RD /S /Q D:\MOUNT >NUL
RD /S /Q D:\SCRATCH >NUL
REM [Optional] Copy & Compress for Backup log, before deleting dism*.log
DEL /F /Q "%WiNDiR%\Logs\DiSM\*.*" >NUL
REM [=== Done Cleaning Temporary Windows Updates file... ==============================================]
REM [=== Optimizing Image Index 1 : Windows 10 Pro (amd64) using WimLib 1.14.4 (x86_64) ===============]
"%WimLib%" optimize "E:\EX100\sources\install.wim" --recompress --compress=lzx
REM [=== Done Optimizing Image Index 1 : Windows 10 Pro (amd64) using WimLib 1.14.4 (x86_64) ==========]
REM [=== [OPTiONAL] Splitting Image Index 1 : Windows 10 Pro (amd64)... ===============================]
REM * Due to FAT32 file system limitation maximum size 4096 MB (4GB) !
"%WimLib%" split "E:\EX100\sources\install.wim" "E:\EX100\sources\install.swm" 4096
DEL /Q /F "%E:\EX100\sources\install.wim" >NUL
REM [=== Done [OPTiONAL] Splitting Image Index 1 : Windows 10 Pro (amd64)... ==========================]
REM ====================================================================================================
REM Done PHASE #1 : Integrated Cumulative Update (2024-04—KB5022339) for Windows 10 Version 1809
REM ====================================================================================================
REM [=== [OPTiONAL] Displays information Image Index 1 : Windows 10 Pro (amd64)... ==============]
"%WimLib%" --version
"%WimLib%" info "E:\EX100\sources\install.wim"
REM [=== Done [OPTiONAL] : Displays information Image Index 1 : Windows 10 Pro (amd64)... =======]
[You must be registered and logged in to see this link.] Features and Packages also dism.log.7z file : [You must be registered and logged in to see this link.]
Slimmingdown Final Size using EX-100-v3.9.3.0 with EDGE Support :
[You must be registered and logged in to see this link.].9.3.0_with EDGE Support.wccf.dism.log.7z file : [You must be registered and logged in to see this link.]
Slimmingdown Final Size using EX-100-v3.9.3.0 with NO-EDGE Support :
[You must be registered and logged in to see this link.].9.3.0_with NO=EDGE Support.wccf.dism.log.7z file : [You must be registered and logged in to see this link.]
Hope the help
_________________
home7ech
pS : Creative Learning by Doing, Slowly but Do iT Cool's