Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

chaining setup's with a batch file


2 replies to this topic

turbokitty

turbokitty
  • Full Members
  • 18 posts

Posted 20 July 2006 - 18:32

I want to chain some installscript (non-msi) setup.exe's in a batch file, but they seem to want to run concurrently.. the second one isn't waiting for the first one to finish.

Is there a way to make this happen?

Thanks.


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 21 July 2006 - 09:22

Depending on the InstallShield version you are using you may need to add the /SMS (case sensitive!) command line parameter to make setupexe wait for the install to complete.

turbokitty

turbokitty
  • Full Members
  • 18 posts

Posted 25 July 2006 - 00:27

Thanks Stefan, I'll give that a try. We're having some success with
start /WAIT setup.exe /w
as well.