I think most of us use Properties  like this:

<SetProperty After="FindRelatedProducts" Id="FirstInstall" Value="true">
        NOT Installed AND NOT WIX_UPGRADE_DETECTED AND NOT 
WIX_DOWNGRADE_DETECTED
</SetProperty>
<SetProperty After="SetFirstInstall" Id="Upgrading" Value="true">
        WIX_UPGRADE_DETECTED AND NOT (REMOVE="ALL")
</SetProperty>
<SetProperty After="RemoveExistingProducts" Id="RemovingForUpgrade" 
Sequence="execute" Value="true">
        (REMOVE="ALL") AND UPGRADINGPRODUCTCODE
</SetProperty>
<SetProperty After="SetUpgrading" Id="Uninstalling" Value="true">
        Installed AND (REMOVE="ALL") AND NOT (WIX_UPGRADE_DETECTED OR 
UPGRADINGPRODUCTCODE)
</SetProperty>
<SetProperty After="SetUninstalling" Id="Maintenance" Value="true">
        Installed AND NOT Upgrading AND NOT Uninstalling AND NOT 
UPGRADINGPRODUCTCODE
</SetProperty>

-----Original Message-----
From: Natalie Carr [mailto:natalie.c...@measuresoft.com] 
Sent: July 5, 2013 05:46
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Custom action only on uninstall and not upgrade

Hi I have my custom action defined like so:

 

                     <Custom Action="DeleteTempRegKey"
Before="InstallFinalize">NOT INSTALLED AND NOT UPGRADINGPRODUCTCODE</Custom>

I only want the custom action to run on uninstall and not when getting removed 
by an upgrade.

Is this possible?

 

Thanks Natalie

------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


------------------------------------------------------------------------------
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to