Thanks. Just ran it again and can see there's errors, which will be why it's erasing the ISO directory. Going to try with a different Win7 iso. The legacy tool doesn't need a Win10 iso correct? It should work just with a suitable Win7?
Legacy tool only needs Win7 ISO with multiple SKUs, from post #3: https://forums.mydigitallife.net/th...-install-wim-esd-creation.79421/#post-1516362 For the normal tool, I'm using the original LTSB 2016 ISO (rs1 aka 14393) and it works fine.
Legacy tool didn't work for me :shrug: Got it to output an iso using two good images, but struggling to actually get it installed. I get an error message about "Windows is not able to find the Software License Terms" and it refuses to install. I need to read up on things, so it's definitely me and not the tool which is an excellent piece of work. I've not actually installed an OS on a UEFI machine before so I'm not up to date on the problems. Can anyone recommend somewhere to read up on installing old OS on modern laptops? I'm not really sure what's happening when first powering on more modern laptops, like what UEFI is doing compared to how BIOS used to work, so I think I need to get a grasp of it before I can hope to get this working.
Are the used source ISOs original MSDN Win 7 non VL ISOs? Windows 7 is only officially supported on systems with CSM/Legacy BIOS enabled, if not then you can go try the "solutions" offered elsewhere on the forum but if it's pure UEFI i would advise to install a more modern windows (8.1/10) instead of the deprecated win 7.
There are more things how this can happend 1) Your PC have too less RAM and it cannot read License from install.wim / install.esd 2) License files are missing in install.wim / install.esd in Windows\system32\%SLLP%\Licenses\_Default\%FLAG%\license.rtf" 3) License files exist, but install.wim / install.esd have different image FLAG from presented license files 4) Language mismatch. For example your image is Dutch and License files must be in located in nl-NL. NOTES: %SLLP% = Language code en-US, cs-CZ ets. %FLAG% = Image flag such as Enterprise, Ultimate etc.. Solution 2) If there doesn't exist license files you can siply create blank TXT file and rename it to license.rtf 3) If is broken image flag, fix it using WimLib or GImageX 4) If your image is build by integration language pack, these files maybe aren't in place, simply copy License files from en-US folder Example if you have captured Ultimate into install.wim you need to set correctly FLAG and check if License files are present in needed directory explained above. And I have another last one idea. If you are using Unattended to skip EULA page this error can occur when you are booting from USB and your boot.wim doesn't have correct drivers for your USB controllers. If it still doesn't work I have no idea. These all informations I found and collected during XP2ESD development which use newest setup engine to install XP that doesn't have these files.
@George King, i only support original MVS/MSDN ISOs, when using any of them the license not found problem won't occur with the legacy ISO script (which he says he used). With the modern scripts it can occur when the languages of the used win 7 and win 10 source ISO don't match, like win 7 en-US and win 10 en-GB.
It can depends what language he used, MS always do mistakes like forgotten bootloader localization or missing files in certain builds My tip are missing drivers for USB or too less RAM amount or both of them. And if he booted in pure UEFI some drivers are incompatible. For example I'm using on Asus B360 pure UEFI with patched bootloader using Flashboot PRO. As I'm using my own solution for integration it eats a lot of time to figure out what drivers broke my boot.wim in huge set of drivers extracted from MassStorage DriverPack. Example what can cause problems. Part of my extract driver pack code Code: REM Delete BAD drivers if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\ASMedia\FORCED\6Xx86" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\ASMedia\FORCED\6Xx86" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\ASMedia\FORCED\6Xx64" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\ASMedia\FORCED\6Xx64" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Marvell\FORCED\91xx\6Xx86" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Marvell\FORCED\91xx\6Xx86" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Marvell\FORCED\91xx\6Xx64" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Marvell\FORCED\91xx\6Xx64" REM If you skip this option autounattend.xml will be deleted, there is workaround to unattend.xml at the end of WinPE phase (before first restart) if "%FullyUnattendedSupport%" == "Yes" ( REM Breaking autounattented with Windows 10 Setup Engine - <DiskConfiguration> Error, manual installation works without problems! if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\7.0.0.1020_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\7.0.0.1020_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\7.8.0.1012_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\7.8.0.1012_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\8.9.8.1005_TWEAK" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\8.9.8.1005_TWEAK" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\10.1.0.1008_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\10.1.0.1008_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\10.5.2.1010_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\10.5.2.1010_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\11.1.5.1001_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\11.1.5.1001_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\11.2.0.1006_TWEAK" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Intel\FORCED\Allx86\11.2.0.1006_TWEAK" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\8.9.8.1005_TWEAK" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\8.9.8.1005_TWEAK" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.1.0.1008_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.1.0.1008_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.5.2.1010_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.5.2.1010_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.1.5.1001_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.1.5.1001_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.2.0.1006_TWEAK" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.2.0.1006_TWEAK" ) REM Pure UEFI boot failed with this driver on Asus B360 + Samsung NVMe 970 with patched bootmgfw.efi if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Samsung\FORCED\7x64\3.0.0.1802" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Samsung\FORCED\7x64\3.0.0.1802" REM Pure UEFI setup loading failed with no disk driver error or broken USBs if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\7x64\4.7.0.1098" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\7x64\4.7.0.1098" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.2.0.1006_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\11.2.0.1006_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.8.0.1003_rst" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64\10.8.0.1003_rst" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\7x64" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\7x64" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Intel\FORCED\Allx64" if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Samsung" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Samsung" REM Pure UEFI setup loading error? if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Micron\FORCED\7x64\NVMe_2.1.5.0" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\Micron\FORCED\7x64\NVMe_2.1.5.0" REM DP_MassStorage\x64\Micron\FORCED\7x64\PCIe_8.3.11130.0 REM CleanDriverStore will break PC with VIA x64 if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\VIA" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\VIA" REM Breaking booting, digital signature missing if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x64\ULi" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x64\ULi" REM deleting all, need analyze what causing bsod if exist "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Dawicontrol" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\x86\Dawicontrol" REM Breaking booting, digital signature missing if exist "%~dp0DriverPacks\extracted\DP_MassStorage\all\Karyonix" rd /q /s "%~dp0DriverPacks\extracted\DP_MassStorage\all\Karyonix"
Updated post #3 with the latest vc++ and ndp48 WA files by @abbodi1406 : https://forums.mydigitallife.net/th...-install-wim-esd-creation.79421/#post-1516362
UpdatePack7R2 21.6.10 Whats New in 21.6.10: Added KB5003667-x86-x64 with disabling telemetry and processor checking (replaces KB5003233-x86-x64) Certificate update similar to KB931125 and KB2917500 for June 2021
UpdatePack 21.6.10: https://forums.mydigitallife.net/th...win7-distribution.45005/page-197#post-1664595
Code: ================================================================================ Settings ================================================================================ ================================================================================ Select the desired single index SKU ================================================================================ [ 1 ] - Professional [ 2 ] - Ultimate [ 3 ] - Enterprise [ 4 ] - AiO ================================================================================ * Type your option and press Enter: 4 ================================================================================ Integrate DaRT In Boot.wim ? ================================================================================ [ 1 ] - Integrate DaRT in Boot [ 2 ] - Don't Integrate DaRT in Boot ================================================================================ * Type your option and press Enter: 1 ================================================================================ Integrate DaRT In Winre.wim ? ================================================================================ [ 1 ] - Integrate DaRT in WinRE [ 2 ] - Don't Integrate DaRT in WinRE ================================================================================ * Type your option and press Enter: 1 ================================================================================ Integrate SmartFix ? ================================================================================ [ 1 ] - Integrate SmartFix [ 2 ] - Don't Integrate SmartFix ================================================================================ * Type your option and press Enter: 1 ================================================================================ Integrate USB3.x Drivers Into Boot ? ================================================================================ [ 1 ] - Integrate USB3.x Drivers Into Boot [ 2 ] - Don't Integrate USB3.x Drivers Into Boot ================================================================================ * Type your option and press Enter: 1 ================================================================================ How Do You Want To Integrate USB3.x Drivers Into Boot ? ================================================================================ [ 1 ] - Integrate USB3.x Drivers Into Boot by SiMPLiX [ 2 ] - Integrate USB3.x Drivers Into Boot by Legacy Method ================================================================================ * Type your option and press Enter: 2 ================================================================================ Integrate Drivers Into WinRE ? ================================================================================ [ 1 ] - Integrate Drivers Into WinRE [ 2 ] - Don't Integrate Drivers Into WinRE ================================================================================ * Type your option and press Enter: 1 ================================================================================ Integrate Drivers Into Install.wim ? ================================================================================ [ 1 ] - Integrate Drivers Into Install.wim [ 2 ] - Don't Integrate Into Install.wim ================================================================================ * Type your option and press Enter: 1 ================================================================================ Select the compression type for the "Install" file ================================================================================ [ 1 ] - WIM File - Standard install file. [ 2 ] - Split WIM File - To fit FAT32 max. File size ================================================================================ * Type your option and press Enter: 2 ================================================================================ Script Started At 23:32:22,06 ================================================================================ ================================================================================ Extracting Source ISO's... ================================================================================ 7-Zip 19.00 (x86) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21 Scanning the drive for archives: 1 folder, 1 file, 3252740096 bytes (3103 MiB) Extracting archive: SOURCE_ISOs\Legacy_Tool_7\fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso -- Path = SOURCE_ISOs\Legacy_Tool_7\fr_windows_7_ultimate_with_sp1_x64_dvd_u_677299.iso Type = Udf Physical Size = 3252740096 Comment = GSP1RMCULXFRER_FR_DVD Cluster Size = 2048 Created = 2011-04-12 12:46:55 Everything is Ok Folders: 199 Files: 877 Size: 3266793628 Compressed: 3252740096 Deleting ei.cfg... x64 is detected ================================================================================ Copying Content Of Addons_x64 To EXE Folder... ================================================================================ ================================================================================ DaRT Language Used : fr-fr ================================================================================ ================================================================================ Extracting x64 DaRT packages... ================================================================================ 7-Zip 19.00 (x86) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21 Scanning the drive for archives: 1 file, 27731918 bytes (27 MiB) Extracting archive: DaRT_W7\Dart_w7.tpk -- Path = DaRT_W7\Dart_w7.tpk Type = wim Physical Size = 27731918 Size = 8589934592 Packed Size = 130835574 Method = LZMS:17 Cluster Size = 131072 Created = 2016-11-07 10:40:29 Modified = 2016-11-07 10:44:37 Version = 0.14 Multivolume = - Volume = 1 Volumes = 1 Images = 2 Everything is Ok Folders: 75 Files: 564 Size: 118550622 Compressed: 27731918 7-Zip 19.00 (x86) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21 Scanning the drive for archives: 1 file, 240828 bytes (236 KiB) Extracting archive: DaRT_W7\Dart_w7_fr-FR.tpk -- Path = DaRT_W7\Dart_w7_fr-FR.tpk Type = wim Physical Size = 240828 Size = 8589934592 Packed Size = 2144769 Method = LZMS:17 Cluster Size = 131072 Created = 2016-11-07 10:50:15 Modified = 2016-11-07 10:56:30 Version = 0.14 Multivolume = - Volume = 1 Volumes = 1 Images = 2 Everything is Ok Folders: 22 Files: 53 Size: 2700560 Compressed: 240828 ================================================================================ Fixing ability for USB UEFI booting (x64 only) ================================================================================ Extracting file data: 656 KiB of 656 KiB (100%) done Done extracting files. ================================================================================ Integrating x64 'USB3.x' Drivers In Boot.wim index 1... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 23 driver package(s) to install. Installing 1 of 23 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\USB3x_7_x64\AMD\USB_3.0\1.1.0.0249\Host\amdxhc.inf: The driver package was successfully installed. ......................... Installing 23 of 23 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\USB3x_7_x64\VIA\USB_3.0\6.1.7600.5601\xhcdrv.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIN7ISO\Sources\boot.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ Integrating x64 'USB3.x' Drivers In Boot.wim index 2... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 23 driver package(s) to install. Installing 1 of 23 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\USB3x_7_x64\AMD\USB_3.0\1.1.0.0249\Host\amdxhc.inf: The driver package was successfully installed. ......................... Installing 23 of 23 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\USB3x_7_x64\VIA\USB_3.0\6.1.7600.5601\xhcdrv.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIN7ISO\Sources\boot.wim Image Index : 2 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ Integrating x64 'nVME' Drivers In Boot.wim index 1... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 5 driver package(s) to install. Installing 1 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit Intel NVMe Driver v4.4.0.1003 WHQL for Win7-10\IaNVMe.inf: The driver package was successfully installed. ......................... Installing 5 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit_OCZ_NVMe_driver_v1.2.126.843 WHQL\ocznvme.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Processing 1 of 2 - Adding package Package_for_KB2990941~31bf3856ad364e35~amd64~~6.1.3.0 [==========================100.0%==========================] Processing 2 of 2 - Adding package Package_for_KB3087873~31bf3856ad364e35~amd64~~6.1.2.0 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIN7ISO\Sources\boot.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ Integrating x64 'nVME' Drivers In Boot.wim index 2... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 5 driver package(s) to install. Installing 1 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit Intel NVMe Driver v4.4.0.1003 WHQL for Win7-10\IaNVMe.inf: The driver package was successfully installed. ......................... Installing 5 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit_OCZ_NVMe_driver_v1.2.126.843 WHQL\ocznvme.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Processing 1 of 2 - Adding package Package_for_KB2990941~31bf3856ad364e35~amd64~~6.1.3.0 [==========================100.0%==========================] Processing 2 of 2 - Adding package Package_for_KB3087873~31bf3856ad364e35~amd64~~6.1.2.0 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIN7ISO\Sources\boot.wim Image Index : 2 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ Boot - DaRT 7 x64 Integration... ================================================================================ Scanning "Dart_w7\Dart_w7\2\" 57 MiB scanned (270 files, 36 directories) Using LZX compression with 8 threads Archiving file data: 57 MiB of 57 MiB (100%) done Scanning "Dart_w7\Dart_w7_LP\2\" 1317 KiB scanned (26 files, 11 directories) Using LZX compression with 1 thread Archiving file data: 1317 KiB of 1317 KiB (100%) done ================================================================================ Optimizing x64 Boot.wim... ================================================================================ "TEMP\WIN7ISO\sources\boot.wim" original size: 233700 KiB Using LZX compression with 8 threads Archiving file data: 594 MiB of 594 MiB (100%) done "TEMP\WIN7ISO\sources\boot.wim" optimized size: 208385 KiB Space saved: 25315 KiB ================================================================================ Exporting Source Index for x64 AiO creation... ================================================================================ ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Exporting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIN7ISO\Sources\install.wim, 1] -> [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim] [ 100% ] Exporting progress Successfully exported image #1. Total elapsed time: 9 sec Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Removing package Microsoft-Windows-HomeBasicEdition~31bf3856ad364e35~amd64~~6.1.7601.17514 [==========================100.0%========================= ] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 [==========================100.0%========================= ] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 [===========================99.6%========================= ] The operation completed successfully. ================================================================================ inserting fr-FR language xml... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 [==========================100.0%==========================] The operation completed successfully. 1 file(s) copied. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Starting to install product key... Finished installing product key. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. Setting the DISPLAYNAME property of image 1 to "Windows 7 Starter". Setting the DISPLAYDESCRIPTION property of image 1 to "Windows 7 Starter_SiMPLiXED". Setting the NAME property of image 1 to "Windows 7 Starter". Setting the DESCRIPTION property of image 1 to "Windows 7 Starter_SiMPLiXED". Extracting file data: 163 MiB of 163 MiB (100%) done Done extracting files. ================================================================================ WinRE - x64 Driver Integration... ================================================================================ ================================================================================ Mounting x64 Winre... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ ================================================================================ ================================================================================ WinRE - Integrating x64 'nVME' Drivers... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 5 driver package(s) to install. Installing 1 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit Intel NVMe Driver v4.4.0.1003 WHQL for Win7-10\IaNVMe.inf: The driver package was successfully installed. ......................... Installing 5 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit_OCZ_NVMe_driver_v1.2.126.843 WHQL\ocznvme.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\Winre_x64\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ WinRE - DaRT 7 x64 Integration... ================================================================================ Scanning "Dart_w7\Dart_w7\2\" 57 MiB scanned (270 files, 36 directories) Using LZX compression with 8 threads Archiving file data: 57 MiB of 57 MiB (100%) done Scanning "Dart_w7\Dart_w7_LP\2\" 1317 KiB scanned (26 files, 11 directories) Using LZX compression with 1 thread Archiving file data: 1317 KiB of 1317 KiB (100%) done ================================================================================ Optimizing x64 WinRe... ================================================================================ [WARNING] "TEMP\Winre_x64\Winre.wim" does not contain integrity information. Skipping integrity check. "TEMP\Winre_x64\Winre.wim" original size: 196518 KiB Using LZX compression with 8 threads Archiving file data: 514 MiB of 514 MiB (100%) done Calculating integrity table for WIM: 175 MiB of 175 MiB (100%) done "TEMP\Winre_x64\Winre.wim" optimized size: 180159 KiB Space saved: 16358 KiB Scanning "TEMP\Winre_x64\Winre.wim" (loading as WIM path: "\Windows\System32\Recovery\winre.wim")... 175 MiB scanned (1 files, 0 directories) Updating "\Windows\System32\Recovery\winRE.wim" in WIM image Using LZX compression with 8 threads Archiving file data: 175 MiB of 175 MiB (100%) done ================================================================================ Integrating x64 Drivers into Install.wim... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 77 driver package(s) to install. Installing 1 of 77 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\(W)LAN_7_x64\Intel_AC_7265\Netwsw02.INF: The driver package was successfully installed. ......................... Installing 77 of 77 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\(W)LAN_7_x64\W\VIA\1\Win7\VW7UX64V.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 5 driver package(s) to install. Installing 1 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit Intel NVMe Driver v4.4.0.1003 WHQL for Win7-10\IaNVMe.inf: The driver package was successfully installed. ......................... Installing 5 of 5 - D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\Drivers\nVME_7_x64\64bit_OCZ_NVMe_driver_v1.2.126.843 WHQL\ocznvme.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image File : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ================================================================================ Starting SiMPLiX UpdatePack... ================================================================================ call SiMPLiX.bat Deployment Image Servicing and Management tool Version: 10.0.19041.844 Details for image : D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\temp\wim\aio.install.wim Index : 1 Name : Windows 7 Starter Description : Windows 7 Starter_SiMPLiXED Size : 11.798.801.640 bytes The operation completed successfully. Code: The installation log of UpdatePack 7 / 2008 R2 / 21.6.10 Installation start time - 23:42:49 09.06.2021 Operating system - Windows 7 Starter SP1 x64 UpdRoots - Integration of the update has been successfully completed KB917607 - Integration of the update has been successfully completed KB2533552 - Integration of the update has been successfully completed KB2545698 - Integration of the update has been successfully completed KB2547666 - Integration of the update has been successfully completed KB2574819-v2 - Integration of the update has been successfully completed KB2592687 - Integration of the update has been successfully completed KB2603229 - Integration of the update has been successfully completed KB2667402-v2 - Integration of the update has been successfully completed KB2670838 - Integration of the update has been successfully completed KB2685811 - Integration of the update has been successfully completed KB2685813 - Integration of the update has been successfully completed KB2698365 - Integration of the update has been successfully completed KB2729094-v2 - Integration of the update has been successfully completed KB2732059-v5 - Integration of the update has been successfully completed KB2750841 - Integration of the update has been successfully completed KB2761217 - Integration of the update has been successfully completed KB2773072 - Integration of the update has been successfully completed KB2818604 - Integration of the update has been successfully completed KB2830477 - Integration of the update has been successfully completed KB2834140-v2 - Integration of the update has been successfully completed KB2862330-v2 - Integration of the update has been successfully completed KB2864202 - Integration of the update has been successfully completed (Recovery) KB2894844 - Integration of the update has been successfully completed KB2900986 - Integration of the update has been successfully completed KB2919469 - Integration of the update has been successfully completed KB2970228 - Integration of the update has been successfully completed KB2984972 - Integration of the update has been successfully completed KB2990941-v3 - Integration of the update has been successfully completed (Recovery) KB3004375-v3 - Integration of the update has been successfully completed KB3006137 - Integration of the update has been successfully completed KB3046269 - Integration of the update has been successfully completed KB3059317 - Integration of the update has been successfully completed KB3064209 - Integration of the update has been successfully completed KB3087873-v2 - Integration of the update has been successfully completed (Recovery) KB3102429-v2 - Integration of the update has been successfully completed KB3138612 - Integration of the update has been successfully completed KB3156016 - Integration of the update has been successfully completed KB3159398 - Integration of the update has been successfully completed KB3161102 - Integration of the update has been successfully completed KB3161949 - Integration of the update has been successfully completed KB3179573 - Integration of the update has been successfully completed KB3184143 - Integration of the update has been successfully completed KB4019990 - Integration of the update has been successfully completed KB4474419-v3 - Integration of the update has been successfully completed KB4490628 - Integration of the update has been successfully completed KB4592510 - Integration of the update has been successfully completed Internet Explorer 11 - Integration of the update has been successfully completed IE-Hyphenation-en - Integration of the update has been successfully completed IE-Hyphenation-fr - Integration of the update has been successfully completed IE-LangPack-fr-fr - Integration of the update has been successfully completed IE-Spelling-en - Integration of the update has been successfully completed IE-Spelling-fr - Integration of the update has been successfully completed KB3125574-v4 - Integration of the update has been successfully completed KB4575903 - Integration of the update has been successfully completed KB4578952 - Integration of the update has been successfully completed KB5003667 - Integration of the update has been successfully completed Addon - SmartFix Tool 2.3.13 Addon - DirectX End-User Runtimes (June 2010) Addon - Microsoft .NET Framework 4.8 Addon - Microsoft .NET Framework 4.8 (FRA) Addon - Microsoft Visual C++ Redistributables Installation finish time - 0:14:17 10.06.2021 The number of installed updates - 57 Total installation time of UpdatePack - 31:28 Operation of the program has been successfully finished Code: ================================================================================ Resuming Single Index / AiO x64 Script... ================================================================================ ================================================================================ Setting last modification date... ================================================================================ ============================================= Creating Professional x64 fr-FR... ============================================= ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Mounting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\wim\aio.install.wim, 1] -> [C:\AiO_Mount]... [ 100% ] Mounting progress Successfully mounted image. Total elapsed time: 55 sec Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.24563 Pended operations ignored. When this image is next booted, these operations will be processed. Starting to update components... Removing package Microsoft-Windows-HomePremiumEdition~31bf3856ad364e35~amd64~~6.1.7601.17514 [==========================100.0%==========================] Finished updating components. Starting to apply edition-specific settings... Finished applying edition-specific settings. The operation completed successfully. ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Committing: [C:\AiO_Mount]... [ 100% ] Appending progress Successfully committed image. Total elapsed time: 53 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Unmounting: [C:\AiO_Mount]... [ 100% ] Mount cleanup progress Successfully unmounted image. Total elapsed time: 40 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Successfully set image name: [Windows 7 Professional] Successfully set image description: [Windows 7 Professional_SiMPLiXED] Successfully set image flags: [Professional] ============================================= Creating Ultimate x64 fr-FR... ============================================= ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Mounting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\wim\aio.install.wim, 1] -> [C:\AiO_Mount]... [ 100% ] Mounting progress Successfully mounted image. Total elapsed time: 47 sec Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.24563 Pended operations ignored. When this image is next booted, these operations will be processed. Starting to update components... Removing package Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~6.1.7601.17514 [==========================100.0%==========================] Finished updating components. Starting to apply edition-specific settings... Finished applying edition-specific settings. The operation completed successfully. ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Committing: [C:\AiO_Mount]... [ 100% ] Appending progress Successfully committed image. Total elapsed time: 55 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Unmounting: [C:\AiO_Mount]... [ 100% ] Mount cleanup progress Successfully unmounted image. Total elapsed time: 41 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Successfully set image name: [Windows 7 Ultimate] Successfully set image description: [Windows 7 Ultimate_SiMPLiXED] Successfully set image flags: [Ultimate] ============================================= Creating Enterprise x64 fr-FR... ============================================= ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Mounting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\wim\aio.install.wim, 1] -> [C:\AiO_Mount]... [ 100% ] Mounting progress Successfully mounted image. Total elapsed time: 47 sec Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.24563 Pended operations ignored. When this image is next booted, these operations will be processed. Starting to update components... Removing package Microsoft-Windows-UltimateEdition~31bf3856ad364e35~amd64~~6.1.7601.17514 [==========================100.0%==========================] Finished updating components. Starting to apply edition-specific settings... Finished applying edition-specific settings. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.19041.844 Image Version: 6.1.7601.24563 Starting to install product key... Finished installing product key. The operation completed successfully. ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Committing: [C:\AiO_Mount]... [ 100% ] Appending progress Successfully committed image. Total elapsed time: 54 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Unmounting: [C:\AiO_Mount]... [ 100% ] Mount cleanup progress Successfully unmounted image. Total elapsed time: 40 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Successfully set image name: [Windows 7 Enterprise] Successfully set image description: [Windows 7 Enterprise_SiMPLiXED] Successfully set image flags: [Enterprise] Deployment Image Servicing and Management tool Version: 10.0.19041.844 Details for image : TEMP\WIM\aio.install.wim Index : 1 Name : Windows 7 Starter Description : Windows 7 Starter_SiMPLiXED Size : 17.023.679.952 bytes Index : 2 Name : Windows 7 Professional Description : Windows 7 Professional_SiMPLiXED Size : 17.365.076.192 bytes Index : 3 Name : Windows 7 Ultimate Description : Windows 7 Ultimate_SiMPLiXED Size : 17.532.284.214 bytes Index : 4 Name : Windows 7 Enterprise Description : Windows 7 Enterprise_SiMPLiXED Size : 17.373.612.735 bytes The operation completed successfully. ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Exporting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\temp.wim, 2] -> [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim] [ 100% ] Exporting progress Successfully exported image #2. Total elapsed time: 22 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Exporting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\temp.wim, 3] -> [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim] [ 100% ] Exporting progress Successfully exported image #3. Total elapsed time: 1 sec ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Exporting: [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\temp.wim, 4] -> [D:\Tool\ff\SiMPLiX_AiO_ISO_Full_Tool_2_4_21.6.10\TEMP\WIM\aio.install.wim] [ 100% ] Exporting progress Successfully exported image #4. Total elapsed time: 1 sec ================================================================================ Content of x64 WIM... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Details for image : TEMP\WIM\aio.install.wim Index : 1 Name : Windows 7 Professional Description : Windows 7 Professional_SiMPLiXED Size : 17.365.076.192 bytes Index : 2 Name : Windows 7 Ultimate Description : Windows 7 Ultimate_SiMPLiXED Size : 17.532.284.214 bytes Index : 3 Name : Windows 7 Enterprise Description : Windows 7 Enterprise_SiMPLiXED Size : 17.373.612.735 bytes The operation completed successfully. 0:46:20,32 ================================================================================ Splitting install.wim to multiple 3500MB install.swm files... ================================================================================ Writing "TEMP\WIN7ISO\Sources\install.swm" (part 1 of 2): 0 MiB of 4615 MiB (0%) written Writing "TEMP\WIN7ISO\Sources\install2.swm" (part 2 of 2): 3499 MiB of 4615 MiB (75%) written Finished writing split WIM part 2 of 2 0:46:58,11 Extracting setup.exe from boot to iso sources folder... Extracting file data: 260 KiB of 260 KiB (100%) done Done extracting files. ================================================================================ Creating x64 ISO... ================================================================================ OSCDIMG 2.56 CD-ROM and DVD-ROM Premastering Utility Copyright (C) Microsoft, 1993-2012. All rights reserved. Licensed only for producing Microsoft authorized content. Scanning source tree (500 files in 47 directories) Scanning source tree complete (878 files in 201 directories) Computing directory information complete Image file is 5247074304 bytes (before optimization) Writing 878 files in 201 directories to Win_7_ESU_AiO_x64_SiMPLiXED_fr-FR_2021-06-10.iso 100% complete Storage optimization saved 42 files, 20111360 bytes (1% of image) After optimization, image file is 5229234176 bytes Space saved because of embedding, sparseness or optimization = 20111360 Done. 0:47:14,72 ================================================================================ All Processing Complete... ================================================================================ ================================================================================ Cleanup... ================================================================================ Deployment Image Servicing and Management tool Version: 10.0.19041.844 Scanning drive C for stale files Scanning drive D for stale files Scanning drive F for stale files Scanning drive G for stale files Scanning drive H for stale files The operation completed successfully. Cleaning Up Addons_x64 From EXE Folder... ================================================================================ Script Finished At 0:47:15,51 ================================================================================ Press any key to exit...
Updated the OP of the SiMPLiX Updatepack thread with updatepack 21.6.10: https://forums.mydigitallife.net/th...egrate-hotfixes-into-win7-distribution.45005/
I need some help too with .iso output. I can see ISO/ folder has some files, but I cannot find .iso else where. Does it supposed to be created under working directory? In additional, where I can view the log? The whole process takes arround 1hr, obviously I can't monitor the output for the whole time. Thanks a lot! Take care.
On win 7 there is no long cmd window info, best to re-run and check the progress. Make sure you have put in the correct ISOs in the correct places.
thx for the tool. it really helps me out. btw is there anyway to integrate winraid forum driver for ryzen 3000/5000 series to the tool?