windows-installerupgradeinstallshield-le

How to create pop up window while upgrading new version of the application using installshield


I am using InstallShield as my Windows installer. I am doing minor upgrade to every new release of my application, upgrade works correctly. But I want to show like one pop up window about informing the upgrade. How can I create window like that before upgrade starts?

Is there any way to show by using InstallShield or patch or code?


Solution

  • You could create a VBScript custom action that displays a message box. If running a silent install is important to your install requirements you would of course want to prepare for this if you put it in your installExecuteSequence. In the condition attribute just put in logic that evaluates to true when upgrading.

    Since you're using InstallShield you could also do something similar with InstallScript, but that does create a dependency on their InstallScript engine if you're not already using InstallScript actions.

    For simple things like an upgrading popup I like to use VBScript since they're quick to code for.