From 40a750f148a0a8e2eb491d498c6d55958a76bda5 Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 29 Jan 2024 09:17:28 +0100 Subject: [PATCH] feat: Windows Server 2008 support (#131) --- src/install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/install.sh b/src/install.sh index 19f99c9..286120d 100644 --- a/src/install.sh +++ b/src/install.sh @@ -40,9 +40,11 @@ fi [[ "${VERSION,,}" == "win2016" ]] && VERSION="win2016-eval" [[ "${VERSION,,}" == "2012" ]] && VERSION="win2012r2-eval" -[[ "${VERSION,,}" == "w12r2" ]] && VERSION="win2012r2-eval" [[ "${VERSION,,}" == "win2012" ]] && VERSION="win2012r2-eval" +[[ "${VERSION,,}" == "2008" ]] && VERSION="win2008r2" +[[ "${VERSION,,}" == "win2008" ]] && VERSION="win2008r2" + [[ "${VERSION,,}" == "ltsc10" ]] && VERSION="win10x64-enterprise-ltsc-eval" [[ "${VERSION,,}" == "10ltsc" ]] && VERSION="win10x64-enterprise-ltsc-eval" [[ "${VERSION,,}" == "win10-ltsc" ]] && VERSION="win10x64-enterprise-ltsc-eval"