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: Change/Remove Button Disappears after Minor Upgrade
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Feb 13, 2008
04:49 PM
Change/Remove Button Disappears after Minor Upgrade
Hi,
I recently upgraded from IS 11.5 to IS2008. After installing a minor update of my software, the change/remove button disappears in the Add/Remove programs window, so there is no way to uninstall the software. I could use some help resolving this issue, thanks.
I'm using an Installscript MSI Project. More Info below.
1. Create project X using Installshield 11.5
2. Install software X.
3. Install Installshield 2008 on my machine.
4. Upgrade project X from a 11.5 project to IS2008 project.
5. Create minor update for project X using IS2008.
6. Install the update on my system.
7. Click on Add/Remove programs and the 'Change/Remove' button is gone.
I recently upgraded from IS 11.5 to IS2008. After installing a minor update of my software, the change/remove button disappears in the Add/Remove programs window, so there is no way to uninstall the software. I could use some help resolving this issue, thanks.
I'm using an Installscript MSI Project. More Info below.
1. Create project X using Installshield 11.5
2. Install software X.
3. Install Installshield 2008 on my machine.
4. Upgrade project X from a 11.5 project to IS2008 project.
5. Create minor update for project X using IS2008.
6. Install the update on my system.
7. Click on Add/Remove programs and the 'Change/Remove' button is gone.
(6) Replies
‎Feb 14, 2008
03:47 AM
Make sure that your upgrade does not have the ARPNOREMOVE and ARPNOMODIFY properties in the upgrade table. Please note also that setting them to 0 does not work, they have to be removed because it is their exsitance that is checked by installer, not their value.
On a sideline educational note: I have a confirmed reported bug with macrovision on this issue actually because if you set these properties to 0 in the direct editor the GUI reports that the remove and change buttons are enabled but if you run them up they are actually disabled :eek:
On a sideline educational note: I have a confirmed reported bug with macrovision on this issue actually because if you set these properties to 0 in the direct editor the GUI reports that the remove and change buttons are enabled but if you run them up they are actually disabled :eek:
‎Feb 14, 2008
11:49 AM
Thanks for the response, cbragg. I checked my project and I do not have the ARPNOREMOVE & ARPNOMODIFY properties in the upgrade table, but the problem still occurs. Is there any way I can add code to my script to fix the problem as a temporary fix?
I looked into the RegDBSetItem(REGDB_UNINSTALL_NOREMOVE...) and RegDBSetItem(REGDB_UNINSTALL_NOMODIFY..) functions but was unable to get them to work. Thanks in advance.
I looked into the RegDBSetItem(REGDB_UNINSTALL_NOREMOVE...) and RegDBSetItem(REGDB_UNINSTALL_NOMODIFY..) functions but was unable to get them to work. Thanks in advance.
‎Feb 14, 2008
05:07 PM
The NoModify and NoRemove registry entries can cause this behavior when performing a minor upgrade of a pre-IS 12 InstallScript MSI to a post-IS 12 InstallScript MSI due to the changes made to the InstallScript engine. A major upgrade is generally recommended for InstallScript MSI projects migrating from version older than IS 12 to IS 12 or newer.
You may be able to work around this behavior by deleting the NoModify and NoRemove registry entries from the OnEnd event with RegDBDeleteValue function, with the following string used for the uninstall key:
szUninstKey = "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall" ^ UNINSTALLKEY;
You may be able to work around this behavior by deleting the NoModify and NoRemove registry entries from the OnEnd event with RegDBDeleteValue function, with the following string used for the uninstall key:
szUninstKey = "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall" ^ UNINSTALLKEY;
‎Feb 21, 2008
10:36 AM
joshstechnij wrote:
The NoModify and NoRemove registry entries can cause this behavior when performing a minor upgrade of a pre-IS 12 InstallScript MSI to a post-IS 12 InstallScript MSI due to the changes made to the InstallScript engine. A major upgrade is generally recommended for InstallScript MSI projects migrating from version older than IS 12 to IS 12 or newer.
You may be able to work around this behavior by deleting the NoModify and NoRemove registry entries from the OnEnd event with RegDBDeleteValue function, with the following string used for the uninstall key:
szUninstKey = "Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall" ^ UNINSTALLKEY;
I also had this problem - see thread http://community.macrovision.com/showthread.php?t=176080
I found that I needed to use a + rather than a ^ before PRODUCT_GUID. Otherwise an extra backslash gets introduced (UninstallShield_\{..guid..} and it doesn't work.
However, this solved the issue only partially - I am now investigating a recurrence (when updating to a later version of my IS2008-based project) - i.e. I think it reoccurs when I upgrade from v1 (IS11-based) to v2 (IS2008-based) to v2.1 (IS2008) - at least that's my conjecture. Need to investigate.
Unfortunately, the reoccurrence was first noticed at a customer site - ugh...
‎Feb 21, 2008
11:57 AM
davbrown2 wrote:
I also had this problem - see thread http://community.macrovision.com/showthread.php?t=176080
I found that I needed to use a + rather than a ^ before PRODUCT_GUID. Otherwise an extra backslash gets introduced (UninstallShield_\{..guid..} and it doesn't work.
However, this solved the issue only partially - I am now investigating a recurrence (when updating to a later version of my IS2008-based project) - i.e. I think it reoccurs when I upgrade from v1 (IS11-based) to v2 (IS2008-based) to v2.1 (IS2008) - at least that's my conjecture. Need to investigate.
Unfortunately, the reoccurrence was first noticed at a customer site - ugh...
OK - more details. The solution seems to work when the IS11->IS2008 transition happens with a major update, but fails when the transition is a minor update. Perhaps OnEnd() is invoked only during a major update? Seems odd to me.
So, in our case, we had a major update from 5.29 to 5.30, and upgraded to IS2008 at 5.32. the OnEnd() solution works for
5.29 -> 5.33.0215
IS11 -> IS2008 major update
(this is what I tested mostly, since originally the goal was to move to IS2008 at 5.30, but this bug prevented us from doing it at that time)
as does this:
5.29 -> 5.32.011 > 5.33.0215
(IS11-> IS2008 major update -> IS2008 minor update)
but fails for:
5.31 > 5.33
IS11 -> IS2008 minor update
(as does this, but that is a subset of the above)
5.29 -> 5.31.1212 > 5.33.0215
(IS11-> IS11 major update -> IS2008 minor update)
‎Feb 21, 2008
01:08 PM
davbrown2 wrote:
I also had this problem - see thread http://community.macrovision.com/showthread.php?t=176080
I found that I needed to use a + rather than a ^ before PRODUCT_GUID. Otherwise an extra backslash gets introduced (UninstallShield_\{..guid..} and it doesn't work.
However, this solved the issue only partially - I am now investigating a recurrence (when updating to a later version of my IS2008-based project) - i.e. I think it reoccurs when I upgrade from v1 (IS11-based) to v2 (IS2008-based) to v2.1 (IS2008) - at least that's my conjecture. Need to investigate.
Unfortunately, the reoccurrence was first noticed at a customer site - ugh...
Aha - false alarm - somehow my code had a carat again (instead of a plus sign, as I determined earlier. Must have checked in the wrong version of setup.rul into our source code control system. Changed it to +, works again.