PDA

View Full Version : Setup Factory and Autoplay


ericahls
06-12-2003, 08:43 PM
I created a simple install exe in Setup factory, no splash screen and no dialog menus. I then call the exe from Autoplay using file execute command. I tell it to WAIT until the exe finishes before moving on in the script but it doesn't wait. I do notice that the setup exe does a progress bar thing before the actual install process begins. I think that Autoplay interprets this first progress bar as the exe and when it close to reveal the install process it passes to the next line in the script. Has anyone else noticed this problem?

Thanks

Eric

Brett
06-13-2003, 12:06 AM
Run the setup.exe with the /W command line switch and it will properly wait for return:

i.e. "%SrcDir%\Setup.exe /W"

ericahls
06-13-2003, 10:15 PM
Thanks for the help.

Eric