This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- setup.exe command prompt
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 05, 2008
12:27 PM
setup.exe command prompt
Hey all..
From In InstallShield manual -
Due to the nature of DOS, when you launch Setup.exe from the command line, a DOS prompt is quickly returned although Setup.exe is still in memory.
Now, I need to run uninstallation of another setup.exe from my installing silently. It can easily be done using RunAppAndWait("setup.exe", "/s....", WAIT), but, like the manual says, it reurns immediately and I need to wait for the uninstallation to finish before proceeding.
I tried -
WaitForApplication(LAAW_PROCESS_INFORMATION.hProcess, LAAW_PROCESS_INFORMATION.dwProcessId, 10000, LAAW_OPTION_WAIT);
but it also returns immediately.
Is there a way to overcome this behavior?
From In InstallShield manual -
Due to the nature of DOS, when you launch Setup.exe from the command line, a DOS prompt is quickly returned although Setup.exe is still in memory.
Now, I need to run uninstallation of another setup.exe from my installing silently. It can easily be done using RunAppAndWait("setup.exe", "/s....", WAIT), but, like the manual says, it reurns immediately and I need to wait for the uninstallation to finish before proceeding.
I tried -
WaitForApplication(LAAW_PROCESS_INFORMATION.hProcess, LAAW_PROCESS_INFORMATION.dwProcessId, 10000, LAAW_OPTION_WAIT);
but it also returns immediately.
Is there a way to overcome this behavior?
(5) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 06, 2008
02:36 AM
I think there is no easy to way to achieve what you're after of.
I have stumbled to same issue you're having in past. I get away with it by creating autoit script which will poll for a certain process, and when the process exited, so did my autoit script. the main installer waited for autoit process to exit.
I have stumbled to same issue you're having in past. I get away with it by creating autoit script which will poll for a certain process, and when the process exited, so did my autoit script. the main installer waited for autoit process to exit.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 06, 2008
08:42 AM
Depending on the project type and InstallShield version used to create the inner installation, you might try the /w or /SMS switch to setup.exe, about which please see the topic "Setup.exe and Update.exe Command-Line Parameters".
(Standard caution about launching an MSI from an MSI, suggestion to use prerequisites, and so forth.)
(Standard caution about launching an MSI from an MSI, suggestion to use prerequisites, and so forth.)
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 06, 2008
04:24 PM
arsirantala,
regarding the autoit script you said you've wrote for running setup.exe and wait for it to finish...
is it possible for you the share this script? can this script be embedded with installScript? in what way? can u pass parameters to this autoit?
Robert, I'm using InstallScript, not MSI project.
Also, I remember that pre-IS2008 setup.exe didn't return immediately. This is something new only in IS2008? Why FindWindow doesn't work in this situation?
thank you guys, for your help..
Guy.
regarding the autoit script you said you've wrote for running setup.exe and wait for it to finish...
is it possible for you the share this script? can this script be embedded with installScript? in what way? can u pass parameters to this autoit?
Robert, I'm using InstallScript, not MSI project.
Also, I remember that pre-IS2008 setup.exe didn't return immediately. This is something new only in IS2008? Why FindWindow doesn't work in this situation?
thank you guys, for your help..
Guy.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 06, 2008
04:53 PM
I don't know if it would help, but did you try passing the /clone_wait parameter when you are launching the child installation?
Debbie Landers
Macrovision Corporation
Debbie Landers
Macrovision Corporation
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Feb 07, 2008
02:34 AM
It works now..
thanks.
Guy.
thanks.
Guy.