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
- :
- Running another setup from the Application Setup....Robert Please Help!
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
‎Sep 08, 2008
09:05 AM
Running another setup from the Application Setup....Robert Please Help!
Hi,
I need to install the DB2 runtime client through my applications setup. I have a Basic MSI project and i have written a custom action to launch the Setup.exe for DB2 from my application. The issue that i am facing is that the moment the Db2 Setup is launched it gives me an error stating that there is already one application being installed and the other applictaion cannot be launched. Is there a way that i can launh the db2 setup first and on completion of that i could launch my setup.
Regards,
Samir
I need to install the DB2 runtime client through my applications setup. I have a Basic MSI project and i have written a custom action to launch the Setup.exe for DB2 from my application. The issue that i am facing is that the moment the Db2 Setup is launched it gives me an error stating that there is already one application being installed and the other applictaion cannot be launched. Is there a way that i can launh the db2 setup first and on completion of that i could launch my setup.
Regards,
Samir
(6) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 08, 2008
09:53 AM
Could u tell me ? Can u use a batch file for the lanching? if it is possible u have to use CALL or START command.
"
exapmple install.bat
CALL msiexec blablablab1
CALL msiexec blabal2
or
START DB2.exe
START Setup.exe
"
Be aware, Im not confident in syntax. run command prompt and type "HELP START" or "HELP CALL"
"
exapmple install.bat
CALL msiexec blablablab1
CALL msiexec blabal2
or
START DB2.exe
START Setup.exe
"
Be aware, Im not confident in syntax. run command prompt and type "HELP START" or "HELP CALL"
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 08, 2008
09:53 AM
Perhaps create an InstallShield setup prerequisite?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 08, 2008
09:59 AM
Scaazy wrote:
START DB2.exe
START Setup.exe
more suitable an example
start /wait msiexec.exe /I "C:\MSI1.msi" /qn
start /wait msiexec.exe /I "C:\MSI2.msi" /qn
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 08, 2008
11:43 PM
Thanks for the replies.
Robert,
How do i add a setup pre requisite. And wat is the path of the exe that i can give. It would be great even if u could point me to to a document that helps me achieve this. Also the setup.exe for Db2 has many other files in the same folder how do i deal with that.
Robert,
How do i add a setup pre requisite. And wat is the path of the exe that i can give. It would be great even if u could point me to to a document that helps me achieve this. Also the setup.exe for Db2 has many other files in the same folder how do i deal with that.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 09, 2008
01:05 AM
I tried editing and adding a setup preq but the problem that i am now facing is that there is folder structure that the DB2 setup.exe requires in order to execute the setup. i can only add files but i am unable to add a folder structure
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 09, 2008
04:26 AM
You can use something like ../../../your folder
to copy the exe in the path you want.
to copy the exe in the path you want.