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
- :
- Re: Please Help Me how can i check msi status from installshield installer
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎May 20, 2008
08:24 AM
Please Help Me how can i check msi status from installshield installer
Hi all
I try to bulid installshield project that install some msi file and run this install file
the problem is
how can i know if the inside msi finish success or not because if my client press Cancel and close the inside msi the outside installer do not know.
Thanks
Yaniv
I try to bulid installshield project that install some msi file and run this install file
the problem is
how can i know if the inside msi finish success or not because if my client press Cancel and close the inside msi the outside installer do not know.
Thanks
Yaniv
(5) Replies
‎May 20, 2008
08:47 AM
How are you launching the msi's? If you are using LaunchAppAndWait, you can use LAAW_PARAMETERS.nLaunchResult to determine if the msi was cancelled by the user.
‎May 20, 2008
09:10 AM
Yes i using in LaunchAppAndWait but this function return only if the file open OK or not and if the msi open ok
and the user click cansel she return me success value and this is the problem
i need to know what is the real status.
do you have a recognize how to do it ?
Thank
Yaniv
and the user click cansel she return me success value and this is the problem
i need to know what is the real status.
do you have a recognize how to do it ?
Thank
Yaniv
‎May 20, 2008
09:27 AM
As Kathy mentions, the return value of LaunchAppAndWait reports only whether InstallScript could find and launch the executable; but for the executable's return code, you'll want to check LAAW_PARAMETERS.nLaunchResult. Searching the help and these forums for "nLaunchResult" will give more information and examples.