I have a utility application that evaluates the install target / system… it's the ExePackage in the included example. Following the system assessment, a registry entry is written that I would like to use to install one or more .msi.
Is there a way to do the RegistrySearch after ExePackage and before MsiPackage? I’m familiar enough with WiX / Burn to know how order of operations / evaluation works… and know that the answer to this is probably “no" once I’m in the Chain. I just want to make sure that I haven’t missed a fine detail or known workaround for this kind of thing before I have to roll a custom BA. Anyone have any ideas? For reference: <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension" > <Bundle Name="FooBars Product Installer" Version="0.0.0.0" Manufacturer=“Foo Bars" > <WixVariable Id="SYSCheck" Value="empty" /> <BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense"> <bal:WixStandardBootstrapperApplication SuppressOptionsUI="yes" LicenseUrl="" /> </BootstrapperApplicationRef> <util:RegistrySearch Id=“SYSCheckRegistrySearch" Root="HKLM" Key="SYSCheck" Value="AorB" Variable="SYSCheck" Result="value" /> <Chain> <ExePackage Compressed="yes" SourceFile="Resource\syscheck.exe" /> <MsiPackage Id="SetupA" InstallCondition='SYSCheck="A"' ForcePerMachine="yes" Vital="yes" SourceFile="installerA.msi" /> <MsiPackage Id="SetupB" InstallCondition='SYSCheck="B"' ForcePerMachine="yes" Vital="yes" SourceFile="installerB.msi" /> ... </Chain> </Bundle> </Wix> ------------------------------------------------------------------------------ Dive into the World of Parallel Programming! The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel software development, from weekly thought leadership blogs to news, videos, case studies, tutorials and more. Take a look and join the conversation now. http://goparallel.sourceforge.net _______________________________________________ WiX-users mailing list WiX-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wix-users