summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Veyde <lveyde@redhat.com>2017-03-06 13:17:57 +0200
committerYedidyah Bar David <didi@redhat.com>2017-03-06 14:57:02 +0200
commit2716b7458e10ca0f678005574f2cdf5d2492b267 (patch)
tree259f7648e0f2158e5a186e8874654ce5c3e64df4
parentcfc162543ab54781ecff0ad85232941d561038bb (diff)
Add support to the installer for Microsoft Windows Server 2016
This patch updates the installer, adding support for Microsoft Windows Server 2016. Bug-Url: https://bugzilla.redhat.com/1418831 Change-Id: Ibc6147054ac61e6bb3e376b602ce8ba0e00ffd47 Signed-off-by: Lev Veyde <lveyde@redhat.com> Acked-by: Christophe Fergeau <cfergeau@redhat.com>
-rw-r--r--win-guest-tools.nsis6
1 files changed, 4 insertions, 2 deletions
diff --git a/win-guest-tools.nsis b/win-guest-tools.nsis
index 64fe20c..c54608a 100644
--- a/win-guest-tools.nsis
+++ b/win-guest-tools.nsis
@@ -10,8 +10,8 @@
#
#
#
-# Copyright (c) 2012-2015 Red Hat, Inc
-# Copyright (c) 2014 Lev Veyde <lveyde@gmail.com>
+# Copyright (c) 2012-2017 Red Hat, Inc
+# Copyright (c) 2017 Lev Veyde <lveyde@redhat.com>
# Copyright (c) 2012 Grant Williamson <grant.williamson@gmail.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a
@@ -294,6 +294,8 @@ Function GetDriverSubdir
StrCpy $0 "$0\2k12r2"
${ElseIf} ${IsWin10}
StrCpy $0 "$0\w10"
+ ${ElseIf} ${IsWin2016}
+ StrCpy $0 "$0\2k16"
${Else}
MessageBox MB_ICONEXCLAMATION "Unsupported Windows version"
Abort ; causes installer to quit.