Create a task to suppress the Found New Hardware wizard.
Go to Library>Postinstallation Tasks>choose Add New BAT Script from the Choose Action menu. Name the task, add the following script in the BAT Script box and save:
@echo off
for %%I in (Z W V U S R Q P O N M L K J I H G F E D C) do (
if exist %%I:\WINDOWS set WINDOWS_DRIVE=%%I:
)
start /wait reg.exe load HKLM\OfflineSW %windows_drive%\windows\system32\config\SOFTWARE
start /wait reg.exe add HKLM\OfflineSW\Policies\Microsoft\Windows\DeviceInstall\Settings /v SuppressNewHWUI /t REG_DWORD /d 1 /f
start /wait reg.exe unload HKLM\OfflineSW
Add the task as the first mid-level postinstall task of your System Image Detail to resolve the issue.