Hello Experts,
Iam trying use the following code running installables one by one.
Runwait("abc.exe")
Runwait("def.exe")
Runwait("xyz.exe")
The problem iam having here is that once i run the script ,abc.exe is executing perfectly fine.
But it is leaving a Porcess called abc.exe in Taskmanager and the Script is getting paused meaning not moving to next line and doing the def.exe execution.
Is there any way i can kill the process after first installation so that second installation starts immedately after completion of first installation. or any other best methods?
I tried this but no luck
Runwait("abc.exe")
Processclose("abc.exe")
Runwait("def.exe")
Runwait("xyz.exe")
Any suggestion would be of great help.
Best Regards,
Sekhar