I finished the whole process. There were a couple of errors regarding nVME and USB3x drivers, but that's because I deleted those folders since I don't need any of those drivers. At the moment of updates integration, there was a message saying that they couldn't been added, and then the script went on working. My question now is: I ended up with 1.97 GB ISO. Is that OK? Does it have to do due to the install.wim to install.esd compression? I opened the ISO and there is no "updates" folder. Do you think that's the issue?
Spoiler: UpdatePack7.log Code: El registro de instalación de UpdatePack 7 / 2008 R2 19.7.15 Hora del inicio de instalación - 15:42:49 23.08.2019 Sistema operativo - Windows 7 Home Basic SP1 x64 Cancelar la descompresion del archivo con las actualizaciones Hora de final de instalación - 15:43:43 23.08.2019 El número de actualizaciones instaladas - 0 Tiempo total de instalación del Paquete de Actualización - 00:54 La instalación de las actualizaciones fue interrumpida I tried to post the "UpdateScan7.log", but it exceeds the 6000 characters.... <-- EDIT: Never mind, see attachment. I can see that the updates were not integrated, but I don't know why. I used the script on a Win 7 Pro machine.
Here is the beta Win 7 Pro cmd: Code: @echo off REM change wording if needed for echo commands.. TITLE Create Updated Windows 7 AIO ISO echo Check for Admin rights... if not "%1"=="am_admin" powershell start -verb runas '%0' am_admin & exit /b :gotAdmin pushd "%CD%" CD /D "%~dp0" cls TITLE Create Updated Windows 7 Professional ISO With Install.esd SETLOCAL ENABLEDELAYEDEXPANSION SET "Errors=" rem =================================================================== REM DriveRootToUse ie C: D: E: etc. Default C: (systemdrive) SET "DriveRootToUse=%SystemDrive%" REM Language in xx-xx format for use with DaRT. SET "DartLang=nl-NL" rem =================================================================== :: Simple check for DaRT language file, default to en-US if cannot find language file. if not exist "Dart_w7\Dart_w7_%DartLang%.tpk" ( echo DaRT language %DartLang% does not exist within the DaRT folder echo using en-US as default. echo. SET "DartLang=en-US" ) :: Detect OS Architecture reg Query "HKLM\Hardware\Description\System\CentralProcessor\0" | find /i "x86" > NUL && set arch=x86 || set arch=x64 if %arch%==x86 ( set "_wimlib=%~dp0bin\wimlib-imagex.exe" ) else ( set "_wimlib=%~dp0%bin\bin64\wimlib-imagex.exe" ) echo Script Started At %time% echo. echo Preparing... echo. DISM /Cleanup-Wim if exist "TEMP" rmdir /q /s "TEMP" if exist "ISO" rmdir /q /s "ISO" if exist "WIM" rmdir /q /s "WIM" if exist "WinRE_x64" rmdir /q /s "WinRE_x64" if exist "WIN7ISO" rmdir /q /s "WIN7ISO" if exist "WIN7ENTISO" rmdir /q /s "WIN7ENTISO" if exist "WIN10ISO" rmdir /q /s "WIN10ISO" if exist "Dart_w7\Dart_w7" RD /S /Q "Dart_w7\Dart_w7" if exist "Dart_w7\Dart_w7_LP" RD /S /Q "Dart_w7\Dart_w7_LP" if exist "EXE\*.WA" del "EXE\*.WA" if exist "%DriveRootToUse%\AiO_Mount" rmdir /q /s "%DriveRootToUse%\AiO_Mount" echo. echo Creating Work folders... mkdir "ISO" 2>&1 mkdir "WIM" 2>&1 mkdir "WinRE_x64" 2>&1 mkdir "WIN7ISO" 2>&1 mkdir "WIN7ENTISO" 2>&1 mkdir "WIN10ISO" 2>&1 mkdir "%DriveRootToUse%\AiO_Mount" 2>&1 echo. echo Extracting DaRT [%DartLang%] packages... bin\7z x -y -oDart_w7\Dart_w7 Dart_w7\Dart_w7.tpk bin\7z x -y -oDart_w7\Dart_w7_LP Dart_w7\Dart_w7_%DartLang%.tpk echo. echo Copying Content Of Addons_x64 To EXE Folder... copy /Y "Addons_x64\*.WA" "EXE" >NUL 2>&1 echo. echo Extracting Source ISO's... bin\7z x -y -oWIN7ISO\ Source_ISOs\7_x64\ echo. bin\7z x -y -oWIN10ISO\ Source_ISOs\10_x64\ echo. echo Copying required ISO Files... copy /Y "WIN10ISO\bootmgr" "ISO" >NUL 2>&1 copy /Y "WIN10ISO\bootmgr.efi" "ISO" >NUL 2>&1 echo. for /D %%i in (WIN10ISO\*) do ( if /I "[%%~nxi]" == "[sources]" set "nocopy=1" if /I "[%%~nxi]" == "[support]" set "nocopy=1" if /I "[%%~nxi]" == "[upgrade]" set "nocopy=1" if !nocopy! EQU 0 xcopy /cherkyq %%i "ISO\%%~nxi\" >NUL 2>&1 set "nocopy=0" ) >NUL 2>&1 echo. echo Create ISO\Sources... mkdir "ISO\sources" echo. echo Copy over files... copy /Y "WIN10ISO\Sources\setup.exe" "ISO\Sources" >NUL 2>&1 copy /Y "WIN10ISO\Sources\lang.ini" "ISO\Sources" >NUL 2>&1 copy /Y "WIN10ISO\Sources\boot.wim" "ISO\Sources" >NUL 2>&1 copy /y "EI\ei.cfg" "ISO\Sources\ei.cfg" >NUL 2>&1 xcopy /s /i /Q "OEM" "ISO\Sources" >NUL 2>&1 echo. echo Modifying Win 10 boot.wim to look like 7... %_wimlib% extract WIN7ISO\sources\boot.wim 2 sources\background.bmp --no-acls --dest-dir=TEMP %_wimlib% extract WIN7ISO\sources\boot.wim 2 sources\arunimg.dll --no-acls --dest-dir=TEMP %_wimlib% extract WIN7ISO\sources\boot.wim 2 sources\spwizimg.dll --no-acls --dest-dir=TEMP %_wimlib% update "ISO\Sources\boot.wim" 2 --command="add 'TEMP\' '\sources'" echo. echo Optimizing Boot.wim... %_wimlib% optimize ISO\sources\boot.wim echo. echo Winre driver integration... bin\imagex /Export "WIN7ISO\Sources\install.wim" 3 "WIM\aio.install.wim" /Compress maximum %_wimlib% extract "WIM\aio.install.wim" 1 \Windows\System32\Recovery\winre.wim --no-acls --dest-dir=Winre_x64 echo. echo Mounting Winre... Dism /mount-wim /wimfile:"Winre_x64\winre.wim" /index:1 /mountdir:"%DriveRootToUse%\AiO_Mount" echo. echo WinRE - Integrating '(W)LAN' Drivers... dism.exe /image:"%DriveRootToUse%\AiO_Mount" /Add-Driver /driver:"Drivers\(W)LAN_7_x64" /recurse echo. echo WinRE - Integrating 'nVME' Drivers... dism.exe /image:"%DriveRootToUse%\AiO_Mount" /Add-Driver /driver:"Drivers\nVME_7_x64" /recurse echo. echo WinRE - Integrating 'USB3.x' Drivers... dism.exe /image:"%DriveRootToUse%\AiO_Mount" /Add-Driver /driver:"Drivers\USB3x_7_x64" /recurse dism /Unmount-Wim /MountDir:"%DriveRootToUse%\AiO_Mount" /Commit echo. echo WinRE - DaRT 7 Integration... %_wimlib% update "Winre_x64\Winre.wim" 1 --command="add 'Dart_w7\Dart_w7\2\' '\'" %_wimlib% update "Winre_x64\Winre.wim" 1 --command="add 'Dart_w7\Dart_w7_LP\2\' '\'" echo. echo Optimizing WinRe... %_wimlib% optimize "Winre_x64\Winre.wim" --check --recompress %_wimlib% update "WIM\aio.install.wim" 1 --command="add 'Winre_x64\Winre.wim' '\Windows\System32\Recovery\winre.wim'" del /f /q "Winre_x64\winre.wim" >NUL 2>&1 echo Integrating '(W)LAN' And nVME Drivers into Install.wim HomeBasic... Dism /mount-wim /wimfile:WIM\aio.install.wim /index:1 /mountdir:"%DriveRootToUse%\AiO_Mount" dism.exe /image:"%DriveRootToUse%\AiO_Mount" /Add-Driver /driver:"Drivers\(W)LAN_7_x64" /recurse dism.exe /image:"%DriveRootToUse%\AiO_Mount" /Add-Driver /driver:"Drivers\nVME_7_x64" /recurse dism /Unmount-Wim /MountDir:"%DriveRootToUse%\AiO_Mount" /Commit Bin\imagex.exe /flags "Professional" /info "WIM\aio.install.wim" 1 "Windows 7 Professional" "Windows 7 Professional" echo. echo Starting SiMPLiX UpdatePack... call SiMPLiX.bat echo. echo Resuming AiO Script... echo. echo Setting last modification date... for /f "tokens=3 delims=: " %%i in ('%_wimlib% info WIM\aio.install.wim ^| findstr /c:"Image Count" 2^>nul') do set "images=%%i" for /L %%i in (1,1,%images%) do ( for /f "tokens=3 delims=<>" %%a in ('Bin\imagex /info WIM\aio.install.wim %%i ^| find /i "<HIGHPART>" 2^>nul') do set "HIGHPART=%%a" for /f "tokens=3 delims=<>" %%a in ('Bin\imagex /info WIM\aio.install.wim %%i ^| find /i "<LOWPART>" 2^>nul') do set "LOWPART=%%a" %_wimlib% info WIM\aio.install.wim %%i --image-property CREATIONTIME/HIGHPART=!HIGHPART! --image-property CREATIONTIME/LOWPART=!LOWPART! >nul ) echo. echo Content of WIM... Dism /Get-WimInfo /WimFile:WIM\aio.install.wim echo. echo Creating Install.ESD... %_wimlib% export WIM\aio.install.wim all "ISO\Sources\install.esd" --compress=LZMS --solid echo. echo Creating ISO... bin\cdimage.exe -bootdata:2#p0,e,b"ISO\boot\etfsboot.com"#pEF,e,b"ISO\efi\Microsoft\boot\efisys.bin" -o -m -u2 -udfver102 -lWin7_x64_Professional ISO Win7_x64_Professional.ISO echo. echo All Processing Complete... echo. echo Cleanup... DISM /Cleanup-Wim if exist "TEMP" rmdir /q /s "TEMP" if exist "ISO" rmdir /q /s "ISO" if exist "WIM" rmdir /q /s "WIM" if exist "WinRE_x64" rmdir /q /s "WinRE_x64" if exist "WIN7ISO" rmdir /q /s "WIN7ISO" if exist "WIN7ENTISO" rmdir /q /s "WIN7ENTISO" if exist "WIN10ISO" rmdir /q /s "WIN10ISO" if exist "Dart_w7\Dart_w7" RD /S /Q "Dart_w7\Dart_w7" if exist "Dart_w7\Dart_w7_LP" RD /S /Q "Dart_w7\Dart_w7_LP" if exist "%DriveRootToUse%\AiO_Mount" rmdir /q /s "%DriveRootToUse%\AiO_Mount" echo. echo Cleaning Up Addons_x64 From EXE Folder... if exist "EXE\*.WA" del "EXE\*.WA" :Errors IF DEFINED Error echo. & echo Errors detected, unable to continue. echo. echo Sript Finished At %time% pause You can set the DaRT Language at line 24, if DaRT doesn't have the language available, it will use en-US by default. Log: Code: DaRT language nl-NL does not exist within the DaRT folder using en-US as default. Script Started At 19:55:28.87 Preparing... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Scanning drive C for stale files Scanning drive F for stale files Scanning drive G for stale files Scanning drive I for stale files Scanning drive J for stale files Scanning drive K for stale files The operation completed successfully. Creating Work folders... Extracting DaRT [en-US] 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, 224232 bytes (219 KiB) Extracting archive: DaRT_W7\Dart_w7_en-US.tpk -- Path = DaRT_W7\Dart_w7_en-US.tpk Type = wim Physical Size = 224232 Size = 8589934592 Packed Size = 1929029 Method = LZMS:17 Cluster Size = 131072 Created = 2016-11-07 10:50:07 Modified = 2016-11-07 10:56:29 Version = 0.14 Multivolume = - Volume = 1 Volumes = 1 Images = 2 Everything is Ok Folders: 22 Files: 53 Size: 2423232 Compressed: 224232 Copying Content Of Addons_x64 To EXE Folder... 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, 3194226688 bytes (3047 MiB) Extracting archive: SOURCE_ISOs\7_x64\nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso -- Path = SOURCE_ISOs\7_x64\nl_windows_7_ultimate_with_sp1_x64_dvd_u_677325.iso Type = Udf Physical Size = 3194226688 Comment = GSP1RMCULXFRER_NL_DVD Cluster Size = 2048 Created = 2011-04-12 16:11:18 Everything is Ok Folders: 199 Files: 877 Size: 3208217289 Compressed: 3194226688 7-Zip 19.00 (x86) : Copyright (c) 1999-2018 Igor Pavlov : 2019-02-21 Scanning the drive for archives: 1 folder, 1 file, 5160611840 bytes (4922 MiB) Extracting archive: SOURCE_ISOs\10_x64\nl_windows_10_consumer_editions_version_1903_updated_july_2019_x64_dvd_1538c042.iso -- Path = SOURCE_ISOs\10_x64\nl_windows_10_consumer_editions_version_1903_updated_july_2019_x64_dvd_1538c042.iso Type = Udf Physical Size = 5160611840 Comment = CCCOMA_X64FRE_NL-NL_DV9 Cluster Size = 2048 Created = 2019-07-10 02:00:00 Everything is Ok Folders: 85 Files: 942 Size: 5155062029 Compressed: 5160611840 Copying required ISO Files... Create ISO\Sources... Copy over files... Modifying Win 10 boot.wim to look like 7... Extracting file data: 2304 KiB of 2304 KiB (100%) done Done extracting files. Extracting file data: 959 KiB of 959 KiB (100%) done Done extracting files. Extracting file data: 8143 KiB of 8143 KiB (100%) done Done extracting files. Scanning "TEMP\" (loading as WIM path: "\sources")... 11 MiB scanned (3 files, 1 directories) Updating "\sources\background.bmp" in WIM image Updating "\sources\spwizimg.dll" in WIM image Updating "\sources\ARUNIMG.dll" in WIM image Using LZX compression with 8 threads Archiving file data: 11 MiB of 11 MiB (100%) done Optimizing Boot.wim... "ISO\sources\boot.wim" original size: 484489 KiB Using LZX compression with 8 threads Archiving file data: 959 MiB of 959 MiB (100%) done "ISO\sources\boot.wim" optimized size: 364898 KiB Space saved: 119591 KiB Winre driver integration... ImageX Tool for Windows Copyright (C) Microsoft Corp. All rights reserved. Version: 10.0.10011.16384 Exporting: [J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\WIN7ISO\Sources\install.wim, 3] -> [J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\WIM\aio.install.wim] [ 100% ] Exporting progress Successfully exported image #3. Total elapsed time: 39 sec Extracting file data: 162 MiB of 162 MiB (100%) done Done extracting files. Mounting Winre... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Mounting image [==========================100.0%==========================] The operation completed successfully. WinRE - Integrating '(W)LAN' Drivers... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 71 driver package(s) to install. Installing 1 of 71 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\(W)LAN_7_x64\L\64\rt64win7.inf: The driver package was successfully installed. ..... Installing 71 of 71 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\(W)LAN_7_x64\W\VIA\1\Win7\VW7UX64V.inf: The driver package was successfully installed. The operation completed successfully. WinRE - Integrating 'nVME' Drivers... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 4 driver package(s) to install. Installing 1 of 4 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\nVME_7_x64\64bit_Intel_NVMe_Windows_Driver_v1.8.0.1011_WHQL\IaNVMe.inf: The driver package was successfully installed. ..... Installing 4 of 4 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\nVME_7_x64\64bit_Samsung_NVMe_drivers_v2.1.0.1611_WHQL_for_Win7\secnvme.inf: The driver package was successfully installed. The operation completed successfully. WinRE - Integrating 'USB3.x' Drivers... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 23 driver package(s) to install. Installing 1 of 23 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\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 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\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.18362.1 Image File : J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Winre_x64\winre.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. WinRE - DaRT 7 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\" 1182 KiB scanned (26 files, 11 directories) Using LZX compression with 1 thread Archiving file data: 1182 KiB of 1182 KiB (100%) done Optimizing WinRe... [WARNING] "Winre_x64\Winre.wim" does not contain integrity information. Skipping integrity check. "Winre_x64\Winre.wim" original size: 251524 KiB Using LZX compression with 8 threads Archiving file data: 679 MiB of 679 MiB (100%) done Calculating integrity table for WIM: 228 MiB of 228 MiB (100%) done "Winre_x64\Winre.wim" optimized size: 234263 KiB Space saved: 17261 KiB Scanning "Winre_x64\Winre.wim" (loading as WIM path: "\Windows\System32\Recovery\winre.wim")... 228 MiB scanned (1 files, 0 directories) Updating "\Windows\System32\Recovery\winRE.wim" in WIM image Using LZX compression with 8 threads Archiving file data: 228 MiB of 228 MiB (100%) done Integrating '(W)LAN' And nVME Drivers into Install.wim HomeBasic... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Mounting image [==========================100.0%==========================] The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.18362.1 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 71 driver package(s) to install. Installing 1 of 71 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\(W)LAN_7_x64\L\64\rt64win7.inf: The driver package was successfully installed. ...... Installing 71 of 71 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\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.18362.1 Image Version: 6.1.7601.17514 Searching for driver packages to install... Found 4 driver package(s) to install. Installing 1 of 4 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\nVME_7_x64\64bit_Intel_NVMe_Windows_Driver_v1.8.0.1011_WHQL\IaNVMe.inf: The driver package was successfully installed. ...... Installing 4 of 4 - J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\Drivers\nVME_7_x64\64bit_Samsung_NVMe_drivers_v2.1.0.1611_WHQL_for_Win7\secnvme.inf: The driver package was successfully installed. The operation completed successfully. Deployment Image Servicing and Management tool Version: 10.0.18362.1 Image File : J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\WIM\aio.install.wim Image Index : 1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. 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] Successfully set image flags: [Professional] Starting SiMPLiX UpdatePack... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Details for image : J:\SiMPLiX_AiO_ISO_Tool_FF\SiMPLiX_AiO_ISO_Tool_v19.7.15\wim\aio.install.wim Index : 1 Name : Windows 7 Professional Description : Windows 7 Professional Size : 12,064,421,059 bytes The operation completed successfully. Code: SiMPLiX updatepack log Code: Resuming AiO Script... Setting last modification date... Content of WIM... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Details for image : WIM\aio.install.wim Index : 1 Name : Windows 7 Professional Description : Windows 7 Professional Size : 17,708,530,165 bytes The operation completed successfully. Creating Install.ESD... Using LZMS compression with 8 threads Archiving file data: 10 GiB of 10 GiB (100%) done Creating 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 Scanning source tree complete (68 files in 17 directories) Computing directory information complete Image file is 2907701248 bytes (before optimization) Writing 68 files in 17 directories to Win7_x64_Professional.ISO 100% complete Storage optimization saved 0 files, 0 bytes (0% of image) After optimization, image file is 2907863040 bytes Space saved because of embedding, sparseness or optimization = 0 Done. All Processing Complete... Cleanup... Deployment Image Servicing and Management tool Version: 10.0.18362.1 Scanning drive C for stale files Scanning drive F for stale files Scanning drive G for stale files Scanning drive I for stale files Scanning drive J for stale files Scanning drive K for stale files The operation completed successfully. Cleaning Up Addons_x64 From EXE Folder... Sript Finished At 21:27:47.89 Press any key to continue . . . ps, i would advise to use at least 1903 as source iso for the most current hardware.
I've just realised that the newest Simplix Pack version is 19.8.22 and your script says 19.7.15. I'm downloading the newest pack right now to try this script one more time. Do you think that could've been the issue the updates weren't integrated?
You mean why am I looking for an updates folder? I don't know, I thought there should be one, that's why I'm asking if it's OK or not there isn't one.