From 00f5923dd95dac8d98d4058887d144602bbd1f9f Mon Sep 17 00:00:00 2001 From: Kevin Wasserman Date: Wed, 18 Jul 2012 21:14:30 -0400 Subject: 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 ticket: 7307 (new) queue: kfw target_version: 1.10.4 tags: pullup --- src/windows/installer/wix/kfw.wxs | 4 +++- src/windows/installer/wix/lang/strings_1033.wxl | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'src/windows/installer') 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 @@ Privileged - VersionNT >= 500 + VersionNT >= 501 + (Not (VersionNT = 501)) Or (ServicePackLevel >= 3) + (Not (VersionNT = 600)) Or (ServicePackLevel >= 2) USELEASH Or USENETIDMGR Not (USELEASH And USENETIDMGR) diff --git a/src/windows/installer/wix/lang/strings_1033.wxl b/src/windows/installer/wix/lang/strings_1033.wxl index cd515895be..cb530b2fec 100644 --- a/src/windows/installer/wix/lang/strings_1033.wxl +++ b/src/windows/installer/wix/lang/strings_1033.wxl @@ -54,7 +54,9 @@ Documentation You need administrative privileges to install Kerberos for Windows - This product requires Windows 2000/XP/2003. The current operating system is not supported. + This product requires Windows XP or Higher. The current operating system is not supported. + This product requires Windows XP Service Pack 3 + This product requires Windows Vista Service Pack 2 Neither Leash nor Network Identity Manager has been selected for this package. Please contact your administrator or the provider of this installation package to resolve this issue. Both Leash and Network Identity Manager has been selected for this package. Only one of these can be selected at one time. Please contact your administrator or the provider of this installation package to resolve this issue. -- cgit