summaryrefslogtreecommitdiffstats
path: root/src/windows/installer/wix/kfw.wxs
diff options
context:
space:
mode:
authorKevin Wasserman <kevin.wasserman@painless-security.com>2012-07-18 21:14:30 -0400
committerBen Kaduk <kaduk@mit.edu>2012-08-28 18:25:24 -0400
commit00f5923dd95dac8d98d4058887d144602bbd1f9f (patch)
tree18674183f2e2f0953a8f9f6aafd8e4781081238f /src/windows/installer/wix/kfw.wxs
parent78b3e95e27ee1f53fc9e7cb2efda617ccd761bd7 (diff)
downloadkrb5-00f5923dd95dac8d98d4058887d144602bbd1f9f.tar.gz
krb5-00f5923dd95dac8d98d4058887d144602bbd1f9f.tar.xz
krb5-00f5923dd95dac8d98d4058887d144602bbd1f9f.zip
Update kfw installer OS version checks
Require XP SP3 or Vista SP2 or Windows 7 or Server 2003 or Server 2008 Signed-off-by: Kevin Wasserman <kevin.wasserman@painless-security.com> ticket: 7307 (new) queue: kfw target_version: 1.10.4 tags: pullup
Diffstat (limited to 'src/windows/installer/wix/kfw.wxs')
-rw-r--r--src/windows/installer/wix/kfw.wxs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/windows/installer/wix/kfw.wxs b/src/windows/installer/wix/kfw.wxs
index 6b85faaf83..c0394ee0ce 100644
--- a/src/windows/installer/wix/kfw.wxs
+++ b/src/windows/installer/wix/kfw.wxs
@@ -60,7 +60,9 @@
<!-- Launch conditions -->
<Condition Message="$(loc.AdminRequired)">Privileged</Condition>
- <Condition Message="$(loc.OsVersionRequired)">VersionNT &gt;= 500</Condition>
+ <Condition Message="$(loc.OsVersionRequired)">VersionNT &gt;= 501</Condition>
+ <Condition Message="$(loc.OsXPSP3)">(Not (VersionNT = 501)) Or (ServicePackLevel &gt;= 3)</Condition>
+ <Condition Message="$(loc.OsVistaSP2)">(Not (VersionNT = 600)) Or (ServicePackLevel &gt;= 2)</Condition>
<Condition Message="$(loc.CMNotSelected)">USELEASH Or USENETIDMGR</Condition>
<Condition Message="$(loc.CMDupSelected)">Not (USELEASH And USENETIDMGR)</Condition>
<?if $(var.Platform) = "x64" ?>