Re: [WiX-users] Detectng Windows XP with Service Pack 2.

2007-06-08 Thread Aaron Shurts
((VersionNT > 501) OR ((VersionNT = 501) AND (ServicePackLevel >= 2))) AND MsiNTProductType = 1 This will check for all workstation level OSes that are XP SP2 or higher. If you want to allow servers as well, drop the ' AND MsiNTProductType = 1' from the condition Regards, //aj On 6/8/07, Richar

Re: [WiX-users] Detectng Windows XP with Service Pack 2.

2007-06-08 Thread Richard
In article <[EMAIL PROTECTED]>, Sankaranarayanan <[EMAIL PROTECTED]> writes: > > Is there any other property wich will distinguish between the different Servi ce Packs. -- "The Direct3D Graphics Pipeline" -- DirectX 9 draft availabl

[WiX-users] Detectng Windows XP with Service Pack 2.

2007-06-08 Thread Sankaranarayanan
Hi, >From WIX 2 - I would like to detect if the client OS is Windows XP with >Service Pack 2. The "VersionNT" property for all Service Packs is 501. Is there any other property wich will distinguish between the different Service Packs. Thanks, Sankaranarayanan MG __