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
- :
- Remove from Add/Remove
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
Jul 21, 2010
03:56 PM
Remove from Add/Remove
I need to determine if a user has selected Remove from the Add/Remove control panel before any UI. Is there a property to check.
2008 Pro, Installscript MSI project.
Thanks
2008 Pro, Installscript MSI project.
Thanks
(1) Reply
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 14, 2010
06:52 AM
Morning, you can use something like follows:
program
if (ADDREMOVE != 0) then
// User choose the uninstall link
endif;
if (ADDREMOVE = 0) then
// User choose the setup.exe
endif;
endprogram
I hope it solve your problem.
program
if (ADDREMOVE != 0) then
// User choose the uninstall link
endif;
if (ADDREMOVE = 0) then
// User choose the setup.exe
endif;
endprogram
I hope it solve your problem.