Nope. There was no complaint from any quarter (even full Orca validation
suite didn't catch it) but, as Bob said, it is obviously read-only
property because ARP uninstall was unaffected.

-----Original Message-----
From: Rob Mensching [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, June 04, 2008 9:15 PM
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] How to Uninstall from ARP with full GUI?

Does that really work...?  I thought uninstalls were always stuck at
basic mode.

-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Tony
Juricic
Sent: Wednesday, June 04, 2008 15:43
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] How to Uninstall from ARP with full GUI?

This is most probably not Wix-specific but anyhow:

Uninstall string that is registered for my app is the following:

MsiExec /X{Product code}

However, when uninstall is selected via ARP this causes uninstall to run
at reduced (or basic, not sure) UI level, with no Wizard dialogs. I want
full GUI level, instead.

What is the best way to accomplish that?

One idea is to detect that REMOVE property is set and use custom action
that sets UI property accordingly like:

   <CustomAction Id="MyCA_SetUI" Property="UILevel" Value="5"
Execute="immediate"/>

Then in UI sequence:

    <Custom Action="MyCA_SetUI"
After="LaunchConditions">REMOVE=ALL</Custom>

I think this would work but:

a) is there a simpler way?

b) how to make condition depend on property being set to any value,
rather than some specific value, like ALL above? Would: <Custom
Action="MyCA_SetUI" After="LaunchConditions">REMOVE</Custom> just work?

Thanks for any input


------------------------------------------------------------------------
-
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to