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: Suppress Upgrade Dialog
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
Oct 20, 2011
07:35 AM
Suppress Upgrade Dialog
Is there a way to suppress the upgrade dialog ("This setup will perform an upgrade of [product]. Do you want to continue?")? I'm in the testing phase of the installation and whenever I make a minor change in the script or the files I include, it prompts me to upgrade the existing product when I try to install over the current install. I would like for that not to happen so that we can assure that the customer will never see it in case we make changes down the road. Thanks!
PS - I'm using InstallScript MSI
Edit: I would like to disable upgrade mode altogether. Whenever I go through upgrade mode, it prompts me to uninstall the product. I do not want that to happen.
PS - I'm using InstallScript MSI
Edit: I would like to disable upgrade mode altogether. Whenever I go through upgrade mode, it prompts me to uninstall the product. I do not want that to happen.
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Oct 28, 2011
05:44 AM
1. Use upgrade table and insert the record appropriately. u can refer help
2. And write your own custom action just after standard custom findrelatedproducts.
The logic in this new custom action is to use MsiGetProperty to determine what is already installed and accordingly you can give custom message to the user and block.
2. And write your own custom action just after standard custom findrelatedproducts.
The logic in this new custom action is to use MsiGetProperty to determine what is already installed and accordingly you can give custom message to the user and block.