So its size wouldn't be bigger than if integrating the latest updates on a 18362.1 build? And is that valid for MSMG ToolKit only or for other programs that can also integrate updates like NTLite?
Hi MSMG yesterday was working with Toolkit V9.5 using the ISO W10 LTSC 2019 X64 version 17763.1 and for some reason soon appeared at the beginning of the removal of components item 1 (Internet) and so I had to undo everything ... and delete the folder Toolkit, so I thank you in advance for your help
A GUI would be nice but it's the functionality that makes the difference. Currently awaiting the update to the toolkit to service the pending 8.1
The order is SSU, Flash, CU for .Net Framework 3.5 & 4.8, CU and the Enablement Package. Do cleanup and re-build the image at the last to reduce the images size.
Checkout the Toolkit directory path size, make sure it is small and check whether the image is not corrupted for WinRE image mounting, also do use the Start.cmd to run the Toolkit. The component removal requires .NET FX 48 run-time to be installed.
I also tried to disable Windows Defender through the registry on version 1903, but Tamper Protection does not allow this through setupcomplete.cmd.
windows builder, I added to setupcomplete.cmd, but that didn't help. A registry key was not created! reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "TamperProtection" /t REG_DWORD /d "0" /f reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t REG_DWORD /d "1" /f
Do you integrate updates and remove components in the same session or do you integrate updates and save after you mount the image again and remove components? I have no problems with ToolKit v8.8 here. The only difference is that I integrate updates with WHD-W81UI. The Toolkit removes the contents of the folder \Windows\WinSxS\Backup when you save so if you integrate updates and remove components in different sessions this may be the problem. I edit the script by commenting out the line that removes that folder to have more control and better compare the size of install.wim when removing certain components. I also comment out the line with $Recycle.Bin and PerfLogs to keep the image as close to the original. Code: :: Performing [Install.wim] Image Windows Folder Cleanup if "%ImageIndexNo%" equ "*" ( for /L %%k in (1, 1, %ImageCount%) do ( rem if exist "%InstallMount%\%%k\$Recycle.Bin" rd /q /s "%InstallMount%\%%k\$Recycle.Bin" >nul 2>&1 rem if exist "%InstallMount%\%%k\PerfLogs" rd /q /s "%InstallMount%\%%k\PerfLogs" >nul 2>&1 rem if exist "%InstallMount%\%%k\Windows\WinSxS\Backup\*.*" del /f /q rd /q /s "%InstallMount%\%%k\Windows\WinSxS\Backup\*.*" >nul 2>&1 ... ) ) else ( rem if exist "%InstallMount%\$Recycle.Bin" rd /q /s "%InstallMount%\$Recycle.Bin" >nul 2>&1 rem if exist "%InstallMount%\PerfLogs" rd /q /s "%InstallMount%\PerfLogs" >nul 2>&1 rem if exist "%InstallMount%\Windows\WinSxS\Backup\*.*" del /f /q rd /q /s "%InstallMount%\Windows\WinSxS\Backup\*.*" >nul 2>&1 ... )