cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
sbrown
Level 6

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
Labels (1)
0 Kudos
(1) Reply
rohricht
Level 3

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.
0 Kudos