views:

97

answers:

1

I'm wirintg an installer using WIX and I need to execute a custom action when a user press the "cancel" button.

I've created a custom action but I don't seem to find where to use that action.

Any ideas how can I do that?

+1  A: 

Try something like:

<Custom Action="MyAction" OnExit="cancel">1</Custom>
VitalyVal