views:

130

answers:

1

hii, i want to add customized dialog box for uninstallation of my application.. i search alot for it. for now i am trying like below::

REMOVE="ALL"

Is it possible or not in wix?? can anyone help me out about this??

+1  A: 

While you can certainly author dialogs that are specific to product removal, uninstallations started from the remove button in Add or Remove Programs (now Programs and Features) are run without the UI sequence, and thus will not show these dialogs. One common alternative is to set the ARPNOREMOVE property which then requires the end user to click Modify instead of Remove. The modify button starts maintenance, which does show your UI.

Michael Urman
Thanx Michael,..But can you please give me some idea how can i use this alternative..because i am already tried to set this property to 1.but could not understand how can i set the dialog box on Modify..Thanx once again.
Divya mohan Singh
Michael, i have a doubt that my custom action is not working well at maintenance mode in wix..Actually i want to clear\delete some data from my %appdata%\product\ ..can u help me to do this?
Divya mohan Singh
If you want to know what's happening at uninstall, take a verbose log. Then search for your custom action's name, and you can find out if it executed, or was skipped due to condition, or just doesn't show up. As far as %appdata%, just remember that you can remove only from the current user's %appdata% folder, so uninstall may not be the best time for this.
Michael Urman

related questions