You have a condition here:
      <Custom Action='CA_IsPrivileged' Before='LaunchConditions'>
        Not Privileged
      </Custom>

But none for :
      <Custom Action='CA_OSCHECK' After='CA_IsPrivileged'>
        
      </Custom>
      <Custom Action='CA_DOTNETFRAMEWORK' After='CA_OSCHECK'>
        
      </Custom>
      <Custom Action='CA_R2CHECK' After='CA_DOTNETFRAMEWORK' />

Per the docs, 
Inner Text (xs:string) 
Text node specifies the condition of the action.

So an empty string would evaluate to false and never execute the CA's.


-----Original Message-----
From: raviraj87 [mailto:raviraj.callin...@gmail.com] 
Sent: Sunday, May 06, 2012 10:56 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Prioritize Launch Conditions

Its not at all working. I am using like this:
<InstallExecuteSequence>
      <Custom Action='CA_IsPrivileged' Before='LaunchConditions'>
        Not Privileged
      </Custom>
      <Custom Action='CA_OSCHECK' After='CA_IsPrivileged'>
        
      </Custom>
      <Custom Action='CA_DOTNETFRAMEWORK' After='CA_OSCHECK'>
        
      </Custom>
      <Custom Action='CA_R2CHECK' After='CA_DOTNETFRAMEWORK' />
</InstallExecuteSequence>

And in CustomAction.wxs file I defined it as:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
  <Fragment>
    
    <CustomAction Id='CA_IsPrivileged'
Error='!(loc.ValidationAdministrator)' />

    
    <CustomAction Id='CA_OSCHECK'
Error='!(loc.ValidationOperatingSystem)'
/>

    
    <CustomAction Id='CA_DOTNETFRAMEWORK'
Error='!(loc.ValidationDotNetFramework)' />

    
    <CustomAction Id='CA_R2CHECK' Error='[R2CHECK]' />
  </Fragment>
</Wix>

The last custom action is a component search (highly important to have)
is defined as:
    <Property Id="R2CHECK" Value="!(loc.ValidationSCOM2012)">
      <ComponentSearch Id="CMPSRCH_R2CHECK"
                       Guid="{XXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX}" />
    </Property>

When I am running the setup, its going on executing on my Windows XP
machine. OS Validation not working as is only for Win7 SP1 or Win Server
2008 R2 SP1 also the component which I have a check is not present on
this machine.
Where I am going wrong (i am using WiX 3.6 RC)?

-----
Regards,
Ravi
--
View this message in context:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Prioritize
-Launch-Conditions-tp7491514p7533721.html
Sent from the wix-users mailing list archive at Nabble.com.

------------------------------------------------------------------------
------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and threat
landscape has changed and how IT managers can respond. Discussions will
include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to