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: How to know when silent install finished
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
‎Jul 01, 2015
01:04 AM
How to know when silent install finished
Hi
I have created a setup that can be run in silent install and it work fine.
I have a question regarding how can I know that the setup ends?
Thanks
I have created a setup that can be run in silent install and it work fine.
I have a question regarding how can I know that the setup ends?
Thanks
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 02, 2015
08:58 AM
This all depends on the type of installation you are using.
If you are using MSI type of install package then just setup your command line with a /qb so it only shows the progress bar.
For other package types you are a bit limited and you may want to use something like powershell to launch the setup in silent mode, get a handle to the setup, and once the handle has been released take and show a message.
If you are using MSI type of install package then just setup your command line with a /qb so it only shows the progress bar.
For other package types you are a bit limited and you may want to use something like powershell to launch the setup in silent mode, get a handle to the setup, and once the handle has been released take and show a message.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 02, 2015
11:48 AM
DLee65 wrote:
This all depends on the type of installation you are using.
If you are using MSI type of install package then just setup your command line with a /qb so it only shows the progress bar.
For other package types you are a bit limited and you may want to use something like powershell to launch the setup in silent mode, get a handle to the setup, and once the handle has been released take and show a message.
My projects are install script type...
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 27, 2015
05:25 AM
The moment the InstallScript setup.exe is completed (success/failure) in silent mode... there's a setup.log file that gets created in the same directory as setup.exe (if i'm not wrong here) based on that you can proceed.
Also, you can check for the process based on your installer's name ....
Also, you can check for the process based on your installer's name ....
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 14, 2015
07:14 PM
Lee1212 wrote:
Hi
I have created a setup that can be run in silent install and it work fine.
I have a question regarding how can I know that the setup ends?
Thanks
Who needs to know? You could set a registry with the success state if you have a monitoring service or another installer that needs to know the exit state.
Or you could have the installer launch notepad with a text file for final install instructions, or a VBS script to announce the installation has completed if you want a visable notice.
The final install state should also be recorded in the Windows Application Event log for MSI or InstallScriptMSI installations. If your installer is InstallScript, it could write to the event log too.