My end result is that I want to launch another setup project after the first setup project closes. The problem is that since setup.exe is just a wrapper for the msi package. WaitForExit is quitting when the setup.exe is finished and not foo.msi.
Using Process As New System.Diagnostics.Process
Process.StartInfo.FileName = "setup.exe"
Process.StartInfo.WindowStyle = ProcessWindowStyle.Normal
Process.WaitForExit()
End Using
'Launch next setup here
Does anyone have any ideas on ways to accomplish this? The setup is a Visual Studio Setup Project.
EDIT - I believe I am going to need to try out some professional installer products to see if I can get the results that I want. I'll post back my findings later today.