1) I've tried installing DirectX Runtime with this package "directx_9c_Jun05sdk_redist.exe" available at Microsoft's site.Now,Problem is that this redistributable of DirectX only Extract files and asks you a folder where they should be written.It doesn't launch the "DXSetup.Exe" which it has extracted.Kinldy,Help me out with this as to how i can do proper DirectX Runtime Installation as a pre-requisite.
2)I'm installing following driver from Intel for Intel® 82865G Graphics Controller.
http://downloadfinder.intel.com/scripts ... l&lang=eng
And here's the .VBS Code i'm executing as a custom action.Driver's EXE is placed with .MSI not packed within it.
Function DriverCheck()
set wmi = getobject("winmgmts:")
wql = "select DriverVersion from win32_videocontroller"
set results = wmi.execquery(wql)
for each obj in results
s = s & obj.DriverVersion
next
result = StrComp("6.14.10.4384",s)
if result = 1 then
ret = msgbox ("You have older version of VGA driver.Do you want to update it?",vbYesNo+vbQuestion+vbApplicationModal,"OperationNOVA")
if ret = vbYes then
set WshShell = CreateObject("WScript.Shell")
s = Session.Property("SourceDir")
s = Chr(34)& s & "win2k_xp1416.exe" & Chr(34)
WshShell.Run s,1,true
end if
else
msgbox "Congratulations you have correct version of VGA driver",,"OperationNOVA"
end if
DriverCheck=0
End Function[/code]