I just fudged this in after the OS loads for the first time. Then after the next reboot the new hardware found wizard should go away.
Code:
Dim oFSO
set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists("c:\drivers\video\igmedc~1.dll") Then
oFSO.moveFile "c:\drivers\video\igmedc~1.dll", "c:\drivers\video\igmedcompkrn.dll"
End If
set oFSO = nothing