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
- :
- Minor upgrade initial message box text change
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
Dec 13, 2016
03:28 AM
Minor upgrade initial message box text change
Hi,
When a setup.exe runs in minor upgrade, the first message box to be displayed is "This setup will perform an upgrade of. Do you want to continue?” . This text is not seen anywhere in the ism or msi. Is it possible to edit this text?
Thanks,
Sooraj
When a setup.exe runs in minor upgrade, the first message box to be displayed is "This setup will perform an upgrade of
Thanks,
Sooraj
(3) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jan 04, 2017
02:28 PM
You are correct that the mentioned text is not in the ISM or MSI file. It is coming from the Flexera generated Setup.exe. If you open your compiled Setup.exe in Visual Studio and go to the string table you will see that
String ID: 1128 - This setup will perform an upgrade of '%s'. Do you want to continue?
You should not attempt to modify the compiled Setup.exe - but that is where the given message is coming from.
I hope that helps some.
Chad
String ID: 1128 - This setup will perform an upgrade of '%s'. Do you want to continue?
You should not attempt to modify the compiled Setup.exe - but that is where the given message is coming from.
I hope that helps some.
Chad
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Jan 04, 2017
03:06 PM
A bit more info - You can go into the Upgrades section in the IDE and then under "Prepare Setup For Upgrade Scenarios" if you go to the Common tab there are radio buttons that let a person choose if they want to see this Prompt or not.
At least you should be able to avoid the prompt if you want to.
Hope that helps some.
Chad
At least you should be able to avoid the prompt if you want to.
Hope that helps some.
Chad
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Apr 04, 2017
06:52 AM
Thanks Chad, your second input helped me to remove the message box.