Re: [WiX-users] Install only on XP SP2 or better

2008-09-12 Thread Wilson, Phil
Subject: Re: [WiX-users] Install only on XP SP2 or better I am a newbie to Wix, I was trying to do the same this which you have discussed a long time back. I am facing problem when i put a check of VersionNT inside Condition Element. My code looks like this: Condition Message=[VersionNT]VersionNT = 501

Re: [WiX-users] Install only on XP SP2 or better

2008-09-11 Thread Vivek
I am a newbie to Wix, I was trying to do the same this which you have discussed a long time back. I am facing problem when i put a check of VersionNT inside Condition Element. My code looks like this: Condition Message=[VersionNT]VersionNT = 501 /Condition and when i run it on Windows NT this

[WiX-users] Install only on XP SP2 or better

2007-03-14 Thread Nick
I'm trying to make some code that installs only on Windows: XP SP2 or better, 2003 SP1 or better, or Vista or better. I'm using the code below, and my application happily installs itself on Win2000. What am I doing wrong? Property Id=WIN2KSP4EXISTS![CDATA[VersionNT = 500 AND

Re: [WiX-users] Install only on XP SP2 or better

2007-03-14 Thread Levi Wilson
I don't believe you can set properties like that. Instead, use your VersionNT=... conditions inside the Condition / element. That should work. On 3/14/07, Nick [EMAIL PROTECTED] wrote: I'm trying to make some code that installs only on Windows: XP SP2 or better, 2003 SP1 or better, or Vista

Re: [WiX-users] Install only on XP SP2 or better

2007-03-14 Thread Mike Dimmick
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Sent: 14 March 2007 20:01 To: wix-users@lists.sourceforge.net Subject: [WiX-users] Install only on XP SP2 or better I'm trying to make some code that installs only on Windows: XP SP2 or better, 2003 SP1 or better