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

2008-09-12 Thread Wilson, Phil
eforge.net 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: VersionNT >= 501 and whe

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: VersionNT >= 501 and when i run it on Windows NT this condiotion newer comes as true. Than i

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

2007-03-14 Thread Mike Dimmick
Those properties won't be evaluated at runtime. Instead, they'll be set to the specified text. The expression in the Condition element will then be evaluated as "VersionNT = 501 AND ServicePackLevel >=2" OR "VersionNT = 502 AND ServicePackLevel >=1" OR "VersionNT > 502" The condition evaluation t

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 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 or better