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
- :
- List of Events and UPDATEMODE
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
‎Nov 30, 2012
10:26 PM
List of Events and UPDATEMODE
Is there a list of events and when and what order they are triggered?
In particular, I'm interested in knowing when the setup is running in update mode (how can I tell?) so I can make some registry changes but I can't tell what events to add those adjustments.
In particular, I'm interested in knowing when the setup is running in update mode (how can I tell?) so I can make some registry changes but I can't tell what events to add those adjustments.
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 05, 2012
04:46 AM
What kind of setup project do you use? Basic MSI or Installscript?
If you use a basic MSI setup and start the installation with the setup.exe you can use a couple of MSI properties to determine the status of the setup: IS_MAJOR_UPGRADE, IS_MINOR_UPGRADE, UPGRADINGPRODUCTCODE and so on.
Barbara
If you use a basic MSI setup and start the installation with the setup.exe you can use a couple of MSI properties to determine the status of the setup: IS_MAJOR_UPGRADE, IS_MINOR_UPGRADE, UPGRADINGPRODUCTCODE and so on.
Barbara
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 05, 2012
10:46 AM
Thanks for your help. I'm using Installscript.
The program uses code to create a shortcut that has the version number as one of it's command line parameters. I need to change that if an update is installed but I can't seem to find the event to interject that change during an update.
The program uses code to create a shortcut that has the version number as one of it's command line parameters. I need to change that if an update is installed but I can't seem to find the event to interject that change during an update.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Nov 14, 2016
02:33 PM
Never got an answer to this a few years ago. The problem has arisen again. What events are there in an InstallScript to handle update/upgrade events?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 03, 2019
06:08 AM
OnShowUI() has
if ( UPDATEMODE ) then bUpdateMode = TRUE; endif; if ( MAINTENANCE ) then bMaintenanceMode = TRUE; endif;