Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Nick
Hi, Thanks for your answer! The firewall is included with WinXPSP2 and Win2003SP1, and Vista, that's why I was looking for the particular combo. Unfortunately, the code you provide would fail on this condition: > >VersionNT >= 501 > if I'm running XPSP2. (It wouldn't evaluate any furt

Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Lewis Henderson
T for Vista is above 502), but I don't know how to handle the Firewall requirement. You might check for a registry key... Lewis -Original Message- Date: Thu, 10 May 2007 10:28:24 -0700 From: Nick <[EMAIL PROTECTED]> Subject: Re: [WiX-users] Prev

Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Trevor Clifton
mailto:[EMAIL PROTECTED] Sent: Thursday, May 10, 2007 11:28 AM To: [EMAIL PROTECTED]; wix-users@lists.sourceforge.net Subject: RE: [WiX-users] Prevent installing on Windows 2000 That would work great...but my app needs WinXP-SP2 or better, or Win2003-SP1 or better, or Vista, and that's where it

Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Nick
That would work great...but my app needs WinXP-SP2 or better, or Win2003-SP1 or better, or Vista, and that's where it gets messy. (It depends on Windows Firewall, which is only present in those operating systems). On 5/10/07, Trevor Clifton <[EMAIL PROTECTED]> wrote: > I do just the opposite an

Re: [WiX-users] Prevent installing on Windows 2000

2007-05-10 Thread Trevor Clifton
I do just the opposite and require it to be 2k or better. Here is my "Condition" line to do that: You would modify the condition to be > 500 instead of >= 500 to exclude the Win2k. Then you can also customize your Condition message as you wish. -Trevor -Original Message- From: [EMAIL