BNutz,

this could get tricky .. but if you know all the Titles of the Windows returned by the installation it could be done with SetFocus
and SendKeys functions ...
sample:

code:

run "\\path\blah.exe"
$nul = SetFocus("WindowTitle1")
while @error <> 0
sleep 1
$nul = SetFocus("WindowTitle1")
loop
$nul = SendKeys("{TAB}{ENTER}")

$nul = SetFocus("WindowTitle2")
while @error <> 0
sleep 1
$nul = SetFocus("WindowTitle2")
loop
$nul = SendKeys("whatever")

etc...


Jochen

P.S.: Or use sms-installer ... i fergot

[This message has been edited by jpols (edited 19 April 2001).]

_________________________