The silent KiX version for MDAC install:

What to add to the: /C: parameter

According to this link: MDAC 2.6 Setup FAQ
it should work for MDAC versions 2.5 and up

code:
Shell '\\Server\Share\MDAC2.7\mdac_typ.exe /q:a /C:"dasetup.exe /q /n"'
If @Error = 3010 ; Restart needed
$RC = ShutDown("","Restarting",5,1,1)
Quit
EndIf

-Erik

My private thanslation of the parameters:
/Q : Silent unpack
/Q:A : Silent unpack – must be followed by parameter /C:

The parameters in the string following /C: (Must be in double quotes)
dasetup.exe : Program to run after unpacking
/q : Quiet install (No licence question)
/n : Do not boot automaticly if required

[ 20. February 2003, 01:12: Message edited by: kholm ]