|
From: Bob A. <bo...@jo...> - 2009-02-27 01:06:51
|
Alan Sinclair wrote: > MSDN says the way to recognize a server version of Windows is to use the MsiNTProductType property. Is there a reason why WiX 2.0.5805.0 will not let me use it in a LaunchCondition, like this? > > <Condition Message="This application is not for Windows Servers"> > VersionNT>=500 AND MsiNTProductType<2 > </Condition> > You need to "escape" characters in XML: Either use CDATA to wrap the condition or use < and > instead of < and >. -- sig://boB http://joyofsetup.com/ |