Jump to content

Recommended Posts

Posted

I'm trying to script several msi installers for Autodesk Inventor 2009... And for some reason

RunWait("Q:\AIP2009_32\AdminImage\Setup.exe /I Q:\aip2009_32\AdminImage\AIP2009_32.ini")

Isn't going on after Setup.exe exits... Task Manager shows no setup.exe running ... but the script is just waiting there...

I'm testing on Windows XP SP3 VM on ESXi host....

Any ideas?

Posted (edited)

Try using Run then something like

While 1

If Not ProcessExists ("Setup.exe") Then
       ExitLoop
Endif
Wend
Edited by Dampe

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...