I want to prioritize the launch conditions I am using.
I want that first installer checks OS then Admin privilege then  DotNet
 and then component search. I have created this file as below:

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi";>
<Fragment>
    <Property Id="LaunchConditionsFile" Value="1" />

    <Condition Message="!(loc.ValidationAdministrator)">Installed OR
Privileged</Condition>

    <Condition Message="!(loc.ValidationOperatingSystem)">
      --condition for OS Check --
    </Condition>

    <Condition Message="!(loc.ValidationDotNetFramework)">
      --condition for .NET Check --
    </Condition>

    <PropertyRef Id="R2012" />
    <Condition Message="!(loc.ValidationR2012)">
     --condition for Component Search Check --
    </Condition>

</Fragment>
</Wix>

Now everytime i run the installer, the registry search condition launches
first. If I comment this statement then OS check validate comes in picture.
How can I overcome this issue?

-- 
Thanks and Regards,
Ravi Raj
------------------------------------------------------------------------------
For Developers, A Lot Can Happen In A Second.
Boundary is the first to Know...and Tell You.
Monitor Your Applications in Ultra-Fine Resolution. Try it FREE!
http://p.sf.net/sfu/Boundary-d2dvs2
_______________________________________________
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

Reply via email to