It seems the the LaunchConditions don't allow for checking whether or not the machine is a Domain Controller. I have the LaunchCondition of Windows Server 2008 R2 (All Future SP). But when I look at the produced wix content, this is how that condition is written...
(VersionNT=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=1)AND ServicePackLevel>0)OR(VersionNT=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=3)AND ServicePackLevel>0)
It skips the MsiNTProductType=2, which is for domain controllers. How am I suppose to get around this?
(VersionNT=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=1)AND ServicePackLevel>0)OR(VersionNT=601 AND(WindowsBuild>=7100) AND (MsiNTProductType=3)AND ServicePackLevel>0)
It skips the MsiNTProductType=2, which is for domain controllers. How am I suppose to get around this?
Comment