dockur-windows/src/define.sh

1620 lines
48 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
set -Eeuo pipefail
2024-11-15 05:16:48 +01:00
: "${WIDTH:=""}"
: "${HEIGHT:=""}"
2024-05-04 13:28:12 +02:00
: "${VERIFY:=""}"
2024-05-18 16:33:12 +02:00
: "${REGION:=""}"
2025-02-15 04:49:24 +01:00
: "${EDITION:=""}"
: "${MANUAL:=""}"
2024-05-05 21:24:47 +02:00
: "${REMOVE:=""}"
: "${VERSION:=""}"
: "${DETECTED:=""}"
2024-05-18 16:33:12 +02:00
: "${KEYBOARD:=""}"
: "${LANGUAGE:=""}"
: "${USERNAME:=""}"
: "${PASSWORD:=""}"
MIRRORS=3
PLATFORM="x64"
2024-05-04 13:28:12 +02:00
parseVersion() {
if [[ "${VERSION}" == \"*\" || "${VERSION}" == \'*\' ]]; then
VERSION="${VERSION:1:-1}"
fi
2024-05-05 21:24:47 +02:00
[ -z "$VERSION" ] && VERSION="win11"
case "${VERSION,,}" in
2024-10-24 12:17:09 +02:00
"11" | "11p" | "win11" | "pro11" | "win11p" | "windows11" | "windows 11" )
2024-05-18 16:33:12 +02:00
VERSION="win11x64"
;;
2024-05-04 13:28:12 +02:00
"11e" | "win11e" | "windows11e" | "windows 11e" )
2024-05-18 16:33:12 +02:00
VERSION="win11x64-enterprise-eval"
;;
"11i" | "11iot" | "iot11" | "win11i" | "win11-iot" | "win11x64-iot" | "win11x64-enterprise-iot-eval" )
2024-10-24 12:17:09 +02:00
VERSION="win11x64-enterprise-iot-eval"
[ -z "$DETECTED" ] && DETECTED="win11x64-iot"
;;
"11l" | "11ltsc" | "ltsc11" | "win11l" | "win11-ltsc" | "win11x64-ltsc" | "win11x64-enterprise-ltsc-eval" )
2024-10-24 12:17:09 +02:00
VERSION="win11x64-enterprise-ltsc-eval"
[ -z "$DETECTED" ] && DETECTED="win11x64-ltsc"
;;
"10" | "10p" | "win10" | "pro10" | "win10p" | "windows10" | "windows 10" )
2024-05-18 16:33:12 +02:00
VERSION="win10x64"
;;
2024-05-04 13:28:12 +02:00
"10e" | "win10e" | "windows10e" | "windows 10e" )
2024-05-18 16:33:12 +02:00
VERSION="win10x64-enterprise-eval"
;;
"10i" | "10iot" | "iot10" | "win10i" | "win10-iot" | "win10x64-iot" | "win10x64-enterprise-iot-eval" )
2024-10-24 12:17:09 +02:00
VERSION="win10x64-enterprise-iot-eval"
[ -z "$DETECTED" ] && DETECTED="win10x64-iot"
;;
"10l" | "10ltsc" | "ltsc10" | "win10l" | "win10-ltsc" | "win10x64-ltsc" | "win10x64-enterprise-ltsc-eval" )
2024-10-24 12:17:09 +02:00
VERSION="win10x64-enterprise-ltsc-eval"
[ -z "$DETECTED" ] && DETECTED="win10x64-ltsc"
;;
"8" | "8p" | "81" | "81p" | "pro8" | "8.1" | "win8" | "win8p" | "win81" | "win81p" | "windows 8" )
2024-05-18 16:33:12 +02:00
VERSION="win81x64"
;;
2024-05-04 13:28:12 +02:00
"8e" | "81e" | "8.1e" | "win8e" | "win81e" | "windows 8e" )
2024-05-18 16:33:12 +02:00
VERSION="win81x64-enterprise-eval"
;;
2024-05-04 13:28:12 +02:00
"7" | "7e" | "win7" | "win7e" | "windows7" | "windows 7" )
2024-05-18 16:33:12 +02:00
VERSION="win7x64"
[ -z "$DETECTED" ] && DETECTED="win7x64-enterprise"
;;
2024-05-05 21:24:47 +02:00
"7u" | "win7u" | "windows7u" | "windows 7u" )
2024-05-18 16:33:12 +02:00
VERSION="win7x64-ultimate"
2024-05-05 21:24:47 +02:00
;;
2024-05-16 07:53:25 +02:00
"7x86" | "win7x86" | "windows7x86" | "win7x86-enterprise" )
VERSION="win7x86"
[ -z "$DETECTED" ] && DETECTED="win7x86-enterprise"
;;
2024-11-10 00:17:00 +01:00
"vista" | "ve" | "6" | "winvista" | "windowsvista" | "windows vista" )
2024-05-18 16:33:12 +02:00
VERSION="winvistax64"
[ -z "$DETECTED" ] && DETECTED="winvistax64-enterprise"
;;
2024-11-10 00:17:00 +01:00
"vistu" | "vu" | "6u" | "winvistu" | "windowsvistu" | "windows vistu" )
2024-05-18 16:33:12 +02:00
VERSION="winvistax64-ultimate"
2024-05-05 21:24:47 +02:00
;;
2024-11-10 00:17:00 +01:00
"vistax86" | "vex86" | "6x86" | "winvistax86" | "windowsvistax86" | "winvistax86-enterprise" )
2024-05-16 07:53:25 +02:00
VERSION="winvistax86"
[ -z "$DETECTED" ] && DETECTED="winvistax86-enterprise"
;;
"xp" | "xp32" | "xpx86" | "5" | "5x86" | "winxp" | "winxp86" | "windowsxp" | "windows xp" )
VERSION="winxpx86"
;;
"xp64" | "xpx64" | "5x64" | "winxp64" | "winxpx64" | "windowsxp64" | "windowsxpx64" )
2024-05-18 16:33:12 +02:00
VERSION="winxpx64"
;;
"25" | "2025" | "win25" | "win2025" | "windows2025" | "windows 2025" )
VERSION="win2025-eval"
;;
2024-05-04 13:28:12 +02:00
"22" | "2022" | "win22" | "win2022" | "windows2022" | "windows 2022" )
VERSION="win2022-eval"
;;
2024-05-04 13:28:12 +02:00
"19" | "2019" | "win19" | "win2019" | "windows2019" | "windows 2019" )
VERSION="win2019-eval"
;;
2024-05-04 13:28:12 +02:00
"16" | "2016" | "win16" | "win2016" | "windows2016" | "windows 2016" )
VERSION="win2016-eval"
;;
2024-05-04 13:28:12 +02:00
"2012" | "2012r2" | "win2012" | "win2012r2" | "windows2012" | "windows 2012" )
VERSION="win2012r2-eval"
;;
2024-05-04 13:28:12 +02:00
"2008" | "2008r2" | "win2008" | "win2008r2" | "windows2008" | "windows 2008" )
VERSION="win2008r2"
;;
"2003" | "2003r2" | "win2003" | "win2003r2" | "windows2003" | "windows 2003" )
VERSION="win2003r2"
;;
2024-05-04 13:28:12 +02:00
"core11" | "core 11" )
VERSION="core11"
2024-05-18 16:33:12 +02:00
[ -z "$DETECTED" ] && DETECTED="win11x64"
2024-05-04 13:28:12 +02:00
;;
"tiny11" | "tiny 11" )
VERSION="tiny11"
2024-05-18 16:33:12 +02:00
[ -z "$DETECTED" ] && DETECTED="win11x64"
;;
2024-05-04 13:28:12 +02:00
"tiny10" | "tiny 10" )
VERSION="tiny10"
2024-05-18 16:33:12 +02:00
[ -z "$DETECTED" ] && DETECTED="win10x64-ltsc"
;;
esac
return 0
}
2024-05-18 16:33:12 +02:00
getLanguage() {
local id="$1"
local ret="$2"
local lang=""
local desc=""
local short=""
2024-05-18 16:33:12 +02:00
local culture=""
case "${id,,}" in
"ar" | "ar-"* )
short="ar"
2024-05-18 16:33:12 +02:00
lang="Arabic"
desc="$lang"
culture="ar-SA" ;;
"bg" | "bg-"* )
short="bg"
2024-05-18 16:33:12 +02:00
lang="Bulgarian"
desc="$lang"
culture="bg-BG" ;;
"cs" | "cs-"* | "cz" | "cz-"* )
short="cs"
2024-05-18 16:33:12 +02:00
lang="Czech"
desc="$lang"
culture="cs-CZ" ;;
"da" | "da-"* | "dk" | "dk-"* )
short="da"
2024-05-18 16:33:12 +02:00
lang="Danish"
desc="$lang"
culture="da-DK" ;;
"de" | "de-"* )
short="de"
2024-05-18 16:33:12 +02:00
lang="German"
desc="$lang"
culture="de-DE" ;;
"el" | "el-"* | "gr" | "gr-"* )
short="el"
2024-05-18 16:33:12 +02:00
lang="Greek"
desc="$lang"
culture="el-GR" ;;
"gb" | "en-gb" )
short="en-gb"
2024-05-18 16:33:12 +02:00
lang="English International"
desc="English"
culture="en-GB" ;;
"en" | "en-"* )
short="en"
2024-11-15 05:16:48 +01:00
lang="English"
2024-05-18 16:33:12 +02:00
desc="English"
culture="en-US" ;;
"mx" | "es-mx" )
short="mx"
2024-05-18 16:33:12 +02:00
lang="Spanish (Mexico)"
desc="Spanish"
culture="es-MX" ;;
"es" | "es-"* )
short="es"
2024-05-18 16:33:12 +02:00
lang="Spanish"
desc="$lang"
culture="es-ES" ;;
"et" | "et-"* )
short="et"
2024-05-18 16:33:12 +02:00
lang="Estonian"
desc="$lang"
culture="et-EE" ;;
"fi" | "fi-"* )
short="fi"
2024-05-18 16:33:12 +02:00
lang="Finnish"
desc="$lang"
culture="fi-FI" ;;
"ca" | "fr-ca" )
short="ca"
2024-05-18 16:33:12 +02:00
lang="French Canadian"
desc="French"
culture="fr-CA" ;;
"fr" | "fr-"* )
short="fr"
2024-05-18 16:33:12 +02:00
lang="French"
desc="$lang"
culture="fr-FR" ;;
"he" | "he-"* | "il" | "il-"* )
short="he"
2024-05-18 16:33:12 +02:00
lang="Hebrew"
desc="$lang"
culture="he-IL" ;;
"hr" | "hr-"* | "cr" | "cr-"* )
short="hr"
2024-05-18 16:33:12 +02:00
lang="Croatian"
desc="$lang"
culture="hr-HR" ;;
"hu" | "hu-"* )
short="hu"
2024-05-18 16:33:12 +02:00
lang="Hungarian"
desc="$lang"
culture="hu-HU" ;;
"it" | "it-"* )
short="it"
2024-05-18 16:33:12 +02:00
lang="Italian"
desc="$lang"
culture="it-IT" ;;
"ja" | "ja-"* | "jp" | "jp-"* )
short="ja"
2024-05-18 16:33:12 +02:00
lang="Japanese"
desc="$lang"
culture="ja-JP" ;;
"ko" | "ko-"* | "kr" | "kr-"* )
short="ko"
2024-05-18 16:33:12 +02:00
lang="Korean"
desc="$lang"
culture="ko-KR" ;;
"lt" | "lt-"* )
short="lt"
2024-05-18 16:33:12 +02:00
lang="Lithuanian"
desc="$lang"
culture="lt-LT" ;;
2024-05-18 16:33:12 +02:00
"lv" | "lv-"* )
short="lv"
2024-05-18 16:33:12 +02:00
lang="Latvian"
desc="$lang"
culture="lv-LV" ;;
2024-05-18 16:33:12 +02:00
"nb" | "nb-"* |"nn" | "nn-"* | "no" | "no-"* )
short="no"
2024-05-18 16:33:12 +02:00
lang="Norwegian"
desc="$lang"
culture="nb-NO" ;;
"nl" | "nl-"* )
short="nl"
2024-05-18 16:33:12 +02:00
lang="Dutch"
desc="$lang"
culture="nl-NL" ;;
"pl" | "pl-"* )
short="pl"
2024-05-18 16:33:12 +02:00
lang="Polish"
desc="$lang"
culture="pl-PL" ;;
"br" | "pt-br" )
short="pt"
2024-05-18 16:33:12 +02:00
lang="Brazilian Portuguese"
desc="Portuguese"
culture="pt-BR" ;;
"pt" | "pt-"* )
short="pp"
2024-05-18 16:33:12 +02:00
lang="Portuguese"
desc="$lang"
culture="pt-BR" ;;
"ro" | "ro-"* )
short="ro"
2024-05-18 16:33:12 +02:00
lang="Romanian"
desc="$lang"
culture="ro-RO" ;;
"ru" | "ru-"* )
short="ru"
2024-05-18 16:33:12 +02:00
lang="Russian"
desc="$lang"
culture="ru-RU" ;;
"sk" | "sk-"* )
short="sk"
2024-05-18 16:33:12 +02:00
lang="Slovak"
desc="$lang"
culture="sk-SK" ;;
"sl" | "sl-"* | "si" | "si-"* )
short="sl"
2024-05-18 16:33:12 +02:00
lang="Slovenian"
desc="$lang"
culture="sl-SI" ;;
"sr" | "sr-"* )
short="sr"
2024-05-18 16:33:12 +02:00
lang="Serbian Latin"
desc="Serbian"
culture="sr-Latn-RS" ;;
"sv" | "sv-"* | "se" | "se-"* )
short="sv"
2024-05-18 16:33:12 +02:00
lang="Swedish"
desc="$lang"
culture="sv-SE" ;;
"th" | "th-"* )
short="th"
2024-05-18 16:33:12 +02:00
lang="Thai"
desc="$lang"
culture="th-TH" ;;
"tr" | "tr-"* )
short="tr"
2024-05-18 16:33:12 +02:00
lang="Turkish"
desc="$lang"
culture="tr-TR" ;;
"ua" | "ua-"* | "uk" | "uk-"* )
short="uk"
2024-05-18 16:33:12 +02:00
lang="Ukrainian"
desc="$lang"
culture="uk-UA" ;;
"hk" | "zh-hk" | "cn-hk" )
short="hk"
2024-11-15 05:16:48 +01:00
lang="Chinese (Traditional)"
2024-05-18 16:33:12 +02:00
desc="Chinese HK"
culture="zh-TW" ;;
"tw" | "zh-tw" | "cn-tw" )
short="tw"
2024-11-15 05:16:48 +01:00
lang="Chinese (Traditional)"
2024-05-18 16:33:12 +02:00
desc="Chinese TW"
culture="zh-TW" ;;
"zh" | "zh-"* | "cn" | "cn-"* )
short="cn"
2024-11-15 05:16:48 +01:00
lang="Chinese (Simplified)"
2024-05-18 16:33:12 +02:00
desc="Chinese"
culture="zh-CN" ;;
esac
case "${ret,,}" in
"desc" ) echo "$desc" ;;
"name" ) echo "$lang" ;;
"code" ) echo "$short" ;;
2024-05-18 16:33:12 +02:00
"culture" ) echo "$culture" ;;
*) echo "$desc";;
esac
return 0
}
parseLanguage() {
2024-05-22 00:53:19 +02:00
REGION="${REGION//_/-/}"
KEYBOARD="${KEYBOARD//_/-/}"
LANGUAGE="${LANGUAGE//_/-/}"
2024-05-18 16:33:12 +02:00
[ -z "$LANGUAGE" ] && LANGUAGE="en"
case "${LANGUAGE,,}" in
"arabic" | "arab" ) LANGUAGE="ar" ;;
"bulgarian" | "bu" ) LANGUAGE="bg" ;;
"chinese" | "cn" ) LANGUAGE="zh" ;;
"croatian" | "cr" | "hrvatski" ) LANGUAGE="hr" ;;
"czech" | "cz" | "cesky" ) LANGUAGE="cs" ;;
"danish" | "dk" | "danske" ) LANGUAGE="da" ;;
"dutch" | "nederlands" ) LANGUAGE="nl" ;;
"english" | "gb" | "british" ) LANGUAGE="en" ;;
"estonian" | "eesti" ) LANGUAGE="et" ;;
"finnish" | "suomi" ) LANGUAGE="fi" ;;
"french" | "français" | "francais" ) LANGUAGE="fr" ;;
"german" | "deutsch" ) LANGUAGE="de" ;;
"greek" | "gr" ) LANGUAGE="el" ;;
"hebrew" | "il" ) LANGUAGE="he" ;;
"hungarian" | "magyar" ) LANGUAGE="hu" ;;
"italian" | "italiano" ) LANGUAGE="it" ;;
"japanese" | "jp" ) LANGUAGE="ja" ;;
"korean" | "kr" ) LANGUAGE="ko" ;;
"latvian" | "latvijas" ) LANGUAGE="lv" ;;
"lithuanian" | "lietuvos" ) LANGUAGE="lt" ;;
"norwegian" | "no" | "nb" | "norsk" ) LANGUAGE="nn" ;;
"polish" | "polski" ) LANGUAGE="pl" ;;
"portuguese" | "pt" | "br" ) LANGUAGE="pt-br" ;;
"português" | "portugues" ) LANGUAGE="pt-br" ;;
"romanian" | "română" | "romana" ) LANGUAGE="ro" ;;
"russian" | "ruski" ) LANGUAGE="ru" ;;
"serbian" | "serbian latin" ) LANGUAGE="sr" ;;
"slovak" | "slovenský" | "slovensky" ) LANGUAGE="sk" ;;
"slovenian" | "si" | "slovenski" ) LANGUAGE="sl" ;;
"spanish" | "espanol" | "español" ) LANGUAGE="es" ;;
"swedish" | "se" | "svenska" ) LANGUAGE="sv" ;;
"turkish" | "türk" | "turk" ) LANGUAGE="tr" ;;
"thai" ) LANGUAGE="th" ;;
"ukrainian" | "ua" ) LANGUAGE="uk" ;;
esac
local culture
culture=$(getLanguage "$LANGUAGE" "culture")
[ -n "$culture" ] && return 0
error "Invalid LANGUAGE specified, value \"$LANGUAGE\" is not recognized!"
return 1
}
printVersion() {
local id="$1"
local desc="$2"
2024-05-04 13:28:12 +02:00
case "${id,,}" in
"tiny11"* ) desc="Tiny 11" ;;
"tiny10"* ) desc="Tiny 10" ;;
"core11"* ) desc="Core 11" ;;
"win7"* ) desc="Windows 7" ;;
"win8"* ) desc="Windows 8" ;;
"win10"* ) desc="Windows 10" ;;
"win11"* ) desc="Windows 11" ;;
"winxp"* ) desc="Windows XP" ;;
2024-05-27 12:40:19 +02:00
"win9x"* ) desc="Windows ME" ;;
"win98"* ) desc="Windows 98" ;;
"win95"* ) desc="Windows 95" ;;
"win2k"* ) desc="Windows 2000" ;;
2024-05-04 13:28:12 +02:00
"winvista"* ) desc="Windows Vista" ;;
"win2003"* ) desc="Windows Server 2003" ;;
2024-05-04 13:28:12 +02:00
"win2008"* ) desc="Windows Server 2008" ;;
"win2012"* ) desc="Windows Server 2012" ;;
"win2016"* ) desc="Windows Server 2016" ;;
"win2019"* ) desc="Windows Server 2019" ;;
"win2022"* ) desc="Windows Server 2022" ;;
"win2025"* ) desc="Windows Server 2025" ;;
2024-05-04 13:28:12 +02:00
esac
2024-05-04 13:28:12 +02:00
if [ -z "$desc" ]; then
desc="Windows"
[[ "${PLATFORM,,}" != "x64" ]] && desc+=" for ${PLATFORM}"
2024-05-04 13:28:12 +02:00
fi
echo "$desc"
return 0
}
2024-05-04 13:28:12 +02:00
printEdition() {
2024-05-04 13:28:12 +02:00
local id="$1"
local desc="$2"
2024-05-04 13:28:12 +02:00
local result=""
local edition=""
2024-05-04 13:28:12 +02:00
result=$(printVersion "$id" "x")
[[ "$result" == "x" ]] && echo "$desc" && return 0
2024-05-04 13:28:12 +02:00
case "${id,,}" in
*"-home" )
2024-05-04 13:28:12 +02:00
edition="Home"
;;
*"-starter" )
edition="Starter"
2024-05-04 13:28:12 +02:00
;;
*"-ultimate" )
edition="Ultimate"
2024-05-04 13:28:12 +02:00
;;
*"-enterprise" )
edition="Enterprise"
2024-05-04 13:28:12 +02:00
;;
*"-education" )
2024-05-04 13:28:12 +02:00
edition="Education"
;;
2024-05-18 16:33:12 +02:00
*"-iot" | *"-iot-eval" )
edition="LTSC"
;;
2024-05-18 16:33:12 +02:00
*"-ltsc" | *"-ltsc-eval" )
edition="LTSC"
;;
*"-enterprise-eval" )
edition="Enterprise (Evaluation)"
2024-05-04 13:28:12 +02:00
;;
"win7"* )
edition="Professional"
;;
"win8"* | "win10"* | "win11"* )
2024-05-04 13:28:12 +02:00
edition="Pro"
;;
"winxp"* )
edition="Professional"
;;
"winvista"* )
edition="Business"
;;
"win2025"* | "win2022"* | "win2019"* | "win2016"* )
edition="Standard"
;;
"win2012"* | "win2008"* | "win2003"* )
2024-05-04 13:28:12 +02:00
edition="Standard"
;;
esac
2024-06-09 23:17:42 +02:00
[ -n "$edition" ] && result+=" $edition"
2024-05-04 13:28:12 +02:00
echo "$result"
return 0
}
2024-05-04 13:28:12 +02:00
fromFile() {
2024-05-04 13:28:12 +02:00
local id=""
local desc="$1"
local file="${1,,}"
local arch="${PLATFORM,,}"
2024-12-20 15:43:37 +01:00
file="${file//-/_}"
file="${file// /_}"
case "$file" in
*"_x64_"* | *"_x64."*)
arch="x64"
;;
*"_x86_"* | *"_x86."*)
arch="x86"
;;
*"_arm64_"* | *"_arm64."*)
arch="arm64"
;;
esac
local add=""
[[ "$arch" != "x64" ]] && add="$arch"
2024-12-20 15:43:37 +01:00
case "$file" in
2024-05-04 13:28:12 +02:00
"win7"* | "win_7"* | *"windows7"* | *"windows_7"* )
id="win7${arch}"
2024-05-04 13:28:12 +02:00
;;
"win8"* | "win_8"* | *"windows8"* | *"windows_8"* )
id="win81${arch}"
2024-05-04 13:28:12 +02:00
;;
"win10"*| "win_10"* | *"windows10"* | *"windows_10"* )
id="win10${arch}"
2024-05-04 13:28:12 +02:00
;;
"win11"* | "win_11"* | *"windows11"* | *"windows_11"* )
id="win11${arch}"
2024-05-04 13:28:12 +02:00
;;
*"winxp"* | *"win_xp"* | *"windowsxp"* | *"windows_xp"* )
id="winxpx86"
;;
*"winvista"* | *"win_vista"* | *"windowsvista"* | *"windows_vista"* )
id="winvista${arch}"
2024-05-04 13:28:12 +02:00
;;
"tiny11core"* | "tiny11_core"* | "tiny_11_core"* )
id="core11"
;;
"tiny11"* | "tiny_11"* )
id="tiny11"
;;
"tiny10"* | "tiny_10"* )
id="tiny10"
;;
*"server2025"* | *"server_2025"* )
id="win2025${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2022"* | *"server_2022"* )
id="win2022${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2019"* | *"server_2019"* )
id="win2019${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2016"* | *"server_2016"* )
id="win2016${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2012"* | *"server_2012"* )
id="win2012r2${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2008"* | *"server_2008"* )
id="win2008r2${add}"
2024-05-04 13:28:12 +02:00
;;
*"server2003"* | *"server_2003"* )
id="win2003r2${add}"
;;
2024-05-04 13:28:12 +02:00
esac
2024-05-04 13:28:12 +02:00
if [ -n "$id" ]; then
desc=$(printVersion "$id" "$desc")
fi
2024-05-04 13:28:12 +02:00
echo "$desc"
return 0
}
2024-05-04 13:28:12 +02:00
fromName() {
2024-05-04 13:28:12 +02:00
local id=""
local name="$1"
local arch="$2"
local add=""
[[ "$arch" != "x64" ]] && add="$arch"
2024-05-04 13:28:12 +02:00
case "${name,,}" in
*"windows 7"* ) id="win7${arch}" ;;
*"windows 8"* ) id="win81${arch}" ;;
*"windows 10"* ) id="win10${arch}" ;;
*"optimum 10"* ) id="win10${arch}" ;;
*"windows 11"* ) id="win11${arch}" ;;
*"optimum 11"* ) id="win11${arch}" ;;
*"windows vista"* ) id="winvista${arch}" ;;
*"server 2025"* ) id="win2025${add}" ;;
*"server 2022"* ) id="win2022${add}" ;;
*"server 2019"* ) id="win2019${add}" ;;
*"server 2016"* ) id="win2016${add}" ;;
*"server 2012"* ) id="win2012r2${add}" ;;
*"server 2008"* ) id="win2008r2${add}" ;;
*"server 2003"* ) id="win2003r2${add}" ;;
2024-05-04 13:28:12 +02:00
esac
2024-05-04 13:28:12 +02:00
echo "$id"
return 0
}
2024-05-04 13:28:12 +02:00
getVersion() {
2024-05-04 13:28:12 +02:00
local id
local name="$1"
local arch="$2"
id=$(fromName "$name" "$arch")
2024-05-04 13:28:12 +02:00
case "${id,,}" in
"win7"* | "winvista"* )
case "${name,,}" in
*" home"* ) id="$id-home" ;;
*" starter"* ) id="$id-starter" ;;
*" ultimate"* ) id="$id-ultimate" ;;
*" enterprise"* ) id="$id-enterprise" ;;
esac
;;
"win8"* )
case "${name,,}" in
*" enterprise evaluation"* ) id="$id-enterprise-eval" ;;
*" enterprise"* ) id="$id-enterprise" ;;
esac
;;
2024-05-27 12:40:19 +02:00
"win10"* | "win11"* )
2024-05-04 13:28:12 +02:00
case "${name,,}" in
*" iot"* ) id="$id-iot" ;;
2024-05-27 12:40:19 +02:00
*" ltsc"* ) id="$id-ltsc" ;;
2024-05-04 13:28:12 +02:00
*" home"* ) id="$id-home" ;;
*" education"* ) id="$id-education" ;;
*" enterprise evaluation"* ) id="$id-enterprise-eval" ;;
*" enterprise"* ) id="$id-enterprise" ;;
esac
;;
"win2025"* | "win2022"* | "win2019"* | "win2016"* | "win2012"* | "win2008"* | "win2003"* )
2024-05-04 13:28:12 +02:00
case "${name,,}" in
*" evaluation"* ) id="$id-eval" ;;
esac
;;
esac
2024-05-04 13:28:12 +02:00
echo "$id"
return 0
}
switchEdition() {
local id="$1"
case "${id,,}" in
2024-05-04 13:28:12 +02:00
"win11${PLATFORM,,}-enterprise-eval" )
DETECTED="win11${PLATFORM,,}-enterprise"
;;
2024-05-04 13:28:12 +02:00
"win10${PLATFORM,,}-enterprise-eval" )
DETECTED="win10${PLATFORM,,}-enterprise"
;;
2024-05-04 13:28:12 +02:00
"win81${PLATFORM,,}-enterprise-eval" )
DETECTED="win81${PLATFORM,,}-enterprise"
;;
"win2025-eval" ) DETECTED="win2025" ;;
2024-05-04 13:28:12 +02:00
"win2022-eval" ) DETECTED="win2022" ;;
"win2019-eval" ) DETECTED="win2019" ;;
"win2016-eval" ) DETECTED="win2016" ;;
"win2012r2-eval" ) DETECTED="win2012r2" ;;
"win2008r2-eval" ) DETECTED="win2008r2" ;;
esac
return 0
}
2024-05-05 21:24:47 +02:00
getMido() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
local ret="$3"
2024-05-05 21:24:47 +02:00
local sum=""
local size=""
2024-05-18 16:33:12 +02:00
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
case "${id,,}" in
2024-05-18 16:33:12 +02:00
"win11x64" )
2024-10-02 10:31:16 +02:00
size=5819484160
sum="b56b911bf18a2ceaeb3904d87e7c770bdf92d3099599d61ac2497b91bf190b11"
2024-05-05 21:24:47 +02:00
;;
2024-05-18 16:33:12 +02:00
"win11x64-enterprise-eval" )
2025-02-22 09:53:17 +01:00
size=4295096320
sum="dad633276073f14f3e0373ef7e787569e216d54942ce522b39451c8f2d38ad43"
2024-05-05 21:24:47 +02:00
;;
2024-05-27 12:40:19 +02:00
"win11x64-enterprise-ltsc-eval" )
2025-02-22 09:53:17 +01:00
size=5060020224
sum="2cee70bd183df42b92a2e0da08cc2bb7a2a9ce3a3841955a012c0f77aeb3cb29"
2024-05-27 12:40:19 +02:00
;;
"win11x64-enterprise-iot-eval" )
2025-02-22 09:53:17 +01:00
size=5060020224
sum="2cee70bd183df42b92a2e0da08cc2bb7a2a9ce3a3841955a012c0f77aeb3cb29"
2024-05-27 12:40:19 +02:00
;;
2024-05-18 16:33:12 +02:00
"win10x64" )
2024-05-05 21:24:47 +02:00
size=6140975104
sum="a6f470ca6d331eb353b815c043e327a347f594f37ff525f17764738fe812852e"
;;
2024-05-18 16:33:12 +02:00
"win10x64-enterprise-eval" )
2024-05-05 21:24:47 +02:00
size=5550497792
sum="ef7312733a9f5d7d51cfa04ac497671995674ca5e1058d5164d6028f0938d668"
;;
2024-05-18 16:33:12 +02:00
"win10x64-enterprise-ltsc-eval" )
2024-05-05 21:24:47 +02:00
size=4898582528
sum="e4ab2e3535be5748252a8d5d57539a6e59be8d6726345ee10e7afd2cb89fefb5"
;;
2024-05-18 16:33:12 +02:00
"win81x64-enterprise-eval" )
2024-05-05 21:24:47 +02:00
size=3961473024
sum="2dedd44c45646c74efc5a028f65336027e14a56f76686a4631cf94ffe37c72f2"
;;
"win2025-eval" )
size=5307996160
sum="16442d1c0509bcbb25b715b1b322a15fb3ab724a42da0f384b9406ca1c124ed4"
;;
2024-05-05 21:24:47 +02:00
"win2022-eval" )
size=5044094976
sum="3e4fa6d8507b554856fc9ca6079cc402df11a8b79344871669f0251535255325"
;;
"win2019-eval" )
size=5652088832
sum="6dae072e7f78f4ccab74a45341de0d6e2d45c39be25f1f5920a2ab4f51d7bcbb"
;;
"win2016-eval" )
size=6972221440
sum="1ce702a578a3cb1ac3d14873980838590f06d5b7101c5daaccbac9d73f1fb50f"
;;
"win2012r2-eval" )
size=4542291968
sum="6612b5b1f53e845aacdf96e974bb119a3d9b4dcb5b82e65804ab7e534dc7b4d5"
;;
"win2008r2" )
size=3166840832
sum="30832ad76ccfa4ce48ccb936edefe02079d42fb1da32201bf9e3a880c8ed6312"
;;
esac
case "${ret,,}" in
"sum" ) echo "$sum" ;;
"size" ) echo "$size" ;;
*) echo "";;
esac
2024-05-18 16:33:12 +02:00
return 0
}
2024-05-04 13:28:12 +02:00
getLink1() {
# Fallbacks for users who cannot connect to the Microsoft servers
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
local ret="$3"
local url=""
2024-05-04 13:28:12 +02:00
local sum=""
2024-05-04 18:29:05 +02:00
local size=""
2024-05-04 13:28:12 +02:00
local host="https://dl.bobpony.com/windows"
2024-05-18 16:33:12 +02:00
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
case "${id,,}" in
"win11x64" | "win11x64-enterprise" | "win11x64-enterprise-eval" )
2024-05-04 18:29:05 +02:00
size=5946128384
2024-05-04 13:28:12 +02:00
sum="5bb1459034f50766ee480d895d751af73a4af30814240ae32ebc5633546a5af7"
2024-05-18 16:33:12 +02:00
url="11/en-us_windows_11_23h2_x64.iso"
2024-05-04 13:28:12 +02:00
;;
"win11x64-iot" | "win11x64-enterprise-iot-eval" )
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
size=5144817664
sum="4f59662a96fc1da48c1b415d6c369d08af55ddd64e8f1c84e0166d9e50405d7a"
url="11/X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso"
;;
"win11x64-ltsc" | "win11x64-enterprise-ltsc-eval" )
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
size=5144817664
sum="4f59662a96fc1da48c1b415d6c369d08af55ddd64e8f1c84e0166d9e50405d7a"
url="11/X23-81951_26100.1742.240906-0331.ge_release_svc_refresh_CLIENT_ENTERPRISES_OEM_x64FRE_en-us.iso"
;;
"win10x64" | "win10x64-enterprise" | "win10x64-enterprise-eval" )
2024-08-28 13:14:09 +02:00
size=5623582720
sum="57371545d752a79a8a8b163b209c7028915da661de83516e06ddae913290a855"
2024-05-18 16:33:12 +02:00
url="10/en-us_windows_10_22h2_x64.iso"
2024-05-04 13:28:12 +02:00
;;
2024-05-18 16:33:12 +02:00
"win10x64-iot" | "win10x64-enterprise-iot-eval" )
2024-05-04 18:29:05 +02:00
size=4851668992
2024-05-04 13:28:12 +02:00
sum="a0334f31ea7a3e6932b9ad7206608248f0bd40698bfb8fc65f14fc5e4976c160"
2024-05-18 16:33:12 +02:00
url="10/en-us_windows_10_iot_enterprise_ltsc_2021_x64_dvd_257ad90f.iso"
;;
2024-05-18 16:33:12 +02:00
"win10x64-ltsc" | "win10x64-enterprise-ltsc-eval" )
2024-05-04 18:29:05 +02:00
size=4899461120
2024-05-04 13:28:12 +02:00
sum="c90a6df8997bf49e56b9673982f3e80745058723a707aef8f22998ae6479597d"
2024-05-18 16:33:12 +02:00
url="10/en-us_windows_10_enterprise_ltsc_2021_x64_dvd_d289cf96.iso"
;;
2024-05-18 16:33:12 +02:00
"win81x64" )
2024-05-04 18:29:05 +02:00
size=4320526336
2024-05-04 13:28:12 +02:00
sum="d8333cf427eb3318ff6ab755eb1dd9d433f0e2ae43745312c1cd23e83ca1ce51"
2024-05-18 16:33:12 +02:00
url="8.x/8.1/en_windows_8.1_with_update_x64_dvd_6051480.iso"
;;
2024-11-15 05:16:48 +01:00
"win81x64-enterprise" | "win81x64-enterprise-eval" )
size=4139163648
sum="c3c604c03677504e8905090a8ce5bb1dde76b6fd58e10f32e3a25bef21b2abe1"
url="8.x/8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso"
;;
"win2025" | "win2025-eval" )
size=5307176960
sum="2293897341febdcea599f5412300b470b5288c6fd2b89666a7b27d283e8d3cf3"
url="server/2025/en-us_windows_server_2025_preview_x64_dvd_ce9eb1a5.iso"
;;
2024-05-04 13:28:12 +02:00
"win2022" | "win2022-eval" )
2024-05-04 18:29:05 +02:00
size=5365624832
2024-05-04 13:28:12 +02:00
sum="c3c57bb2cf723973a7dcfb1a21e97dfa035753a7f111e348ad918bb64b3114db"
2024-05-18 16:33:12 +02:00
url="server/2022/en-us_windows_server_2022_updated_jan_2024_x64_dvd_2b7a0c9f.iso"
;;
2024-05-04 13:28:12 +02:00
"win2019" | "win2019-eval" )
2024-05-04 18:29:05 +02:00
size=5575774208
2024-05-04 13:28:12 +02:00
sum="0067afe7fdc4e61f677bd8c35a209082aa917df9c117527fc4b2b52a447e89bb"
2024-05-18 16:33:12 +02:00
url="server/2019/en-us_windows_server_2019_updated_aug_2021_x64_dvd_a6431a28.iso"
;;
2024-05-04 13:28:12 +02:00
"win2016" | "win2016-eval" )
2024-05-04 18:29:05 +02:00
size=6006587392
2024-05-04 13:28:12 +02:00
sum="af06e5483c786c023123e325cea4775050324d9e1366f46850b515ae43f764be"
2024-05-18 16:33:12 +02:00
url="server/2016/en_windows_server_2016_updated_feb_2018_x64_dvd_11636692.iso"
;;
2024-05-04 13:28:12 +02:00
"win2012r2" | "win2012r2-eval" )
2024-05-04 18:29:05 +02:00
size=5397889024
2024-05-04 13:28:12 +02:00
sum="f351e89eb88a96af4626ceb3450248b8573e3ed5924a4e19ea891e6003b62e4e"
2024-05-18 16:33:12 +02:00
url="server/2012r2/en_windows_server_2012_r2_with_update_x64_dvd_6052708-004.iso"
;;
2024-05-04 13:28:12 +02:00
"win2008r2" | "win2008r2-eval" )
2024-05-04 18:29:05 +02:00
size=3166584832
2024-05-04 13:28:12 +02:00
sum="dfd9890881b7e832a927c38310fb415b7ea62ac5a896671f2ce2a111998f0df8"
2024-05-18 16:33:12 +02:00
url="server/2008r2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601-018.iso"
;;
2024-05-18 16:33:12 +02:00
"win7x64" | "win7x64-enterprise" )
2024-05-04 18:29:05 +02:00
size=3182604288
2024-05-04 13:28:12 +02:00
sum="ee69f3e9b86ff973f632db8e01700c5724ef78420b175d25bae6ead90f6805a7"
2024-05-18 16:33:12 +02:00
url="7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso"
;;
2024-05-18 16:33:12 +02:00
"win7x64-ultimate" )
2024-05-04 18:29:05 +02:00
size=3320836096
2024-05-04 13:28:12 +02:00
sum="0b738b55a5ea388ad016535a5c8234daf2e5715a0638488ddd8a228a836055a1"
2024-05-18 16:33:12 +02:00
url="7/en_windows_7_with_sp1_x64.iso"
;;
"win7x86" | "win7x86-enterprise" )
size=2434502656
sum="8bdd46ff8cb8b8de9c4aba02706629c8983c45e87da110e64e13be17c8434dad"
2024-05-18 16:33:12 +02:00
url="7/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso"
;;
"win7x86-ultimate" )
size=2564411392
sum="99f3369c90160816be07093dbb0ac053e0a84e52d6ed1395c92ae208ccdf67e5"
2024-05-18 16:33:12 +02:00
url="7/en_windows_7_with_sp1_x86.iso"
;;
2024-05-18 16:33:12 +02:00
"winvistax64-ultimate" )
2024-05-04 18:29:05 +02:00
size=3861460992
2024-05-04 13:28:12 +02:00
sum="edf9f947c5791469fd7d2d40a5dcce663efa754f91847aa1d28ed7f585675b78"
2024-05-18 16:33:12 +02:00
url="vista/en_windows_vista_sp2_x64_dvd_342267.iso"
;;
"winvistax86-ultimate" )
size=3243413504
sum="9c36fed4255bd05a8506b2da88f9aad73643395e155e609398aacd2b5276289c"
2024-05-18 16:33:12 +02:00
url="vista/en_windows_vista_with_sp2_x86_dvd_342266.iso"
;;
2024-05-04 13:28:12 +02:00
"winxpx86" )
2024-05-04 18:29:05 +02:00
size=617756672
2024-05-04 13:28:12 +02:00
sum="62b6c91563bad6cd12a352aa018627c314cfc5162d8e9f8af0756a642e602a46"
2024-05-18 16:33:12 +02:00
url="xp/professional/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso"
;;
2024-05-04 13:28:12 +02:00
"winxpx64" )
2024-05-04 18:29:05 +02:00
size=614166528
2024-05-04 13:28:12 +02:00
sum="8fac68e1e56c64ad9a2aa0ad464560282e67fa4f4dd51d09a66f4e548eb0f2d6"
2024-05-18 16:33:12 +02:00
url="xp/professional/en_win_xp_pro_x64_vl.iso"
;;
2024-05-04 13:28:12 +02:00
esac
2024-05-04 18:29:05 +02:00
case "${ret,,}" in
"sum" ) echo "$sum" ;;
"size" ) echo "$size" ;;
2024-05-18 16:33:12 +02:00
*) [ -n "$url" ] && echo "$host/$url";;
2024-05-04 18:29:05 +02:00
esac
2024-05-04 13:28:12 +02:00
return 0
}
getLink2() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
local ret="$3"
2024-05-04 13:28:12 +02:00
local url=""
local sum=""
2024-05-04 18:29:05 +02:00
local size=""
2024-05-04 13:28:12 +02:00
local host="https://files.dog/MSDN"
2024-05-18 16:33:12 +02:00
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
2024-05-04 13:28:12 +02:00
case "${id,,}" in
2024-05-18 16:33:12 +02:00
"win81x64" )
2024-05-04 18:29:05 +02:00
size=4320526336
2024-05-04 13:28:12 +02:00
sum="d8333cf427eb3318ff6ab755eb1dd9d433f0e2ae43745312c1cd23e83ca1ce51"
2024-05-18 16:33:12 +02:00
url="Windows%208.1%20with%20Update/en_windows_8.1_with_update_x64_dvd_6051480.iso"
;;
2024-05-18 16:33:12 +02:00
"win81x64-enterprise" | "win81x64-enterprise-eval" )
2024-05-04 18:29:05 +02:00
size=4139163648
2024-05-04 13:28:12 +02:00
sum="c3c604c03677504e8905090a8ce5bb1dde76b6fd58e10f32e3a25bef21b2abe1"
2024-05-18 16:33:12 +02:00
url="Windows%208.1%20with%20Update/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso"
;;
2024-05-04 13:28:12 +02:00
"win2012r2" | "win2012r2-eval" )
2024-05-04 18:29:05 +02:00
size=5397889024
2024-05-04 13:28:12 +02:00
sum="f351e89eb88a96af4626ceb3450248b8573e3ed5924a4e19ea891e6003b62e4e"
2024-05-18 16:33:12 +02:00
url="Windows%20Server%202012%20R2%20with%20Update/en_windows_server_2012_r2_with_update_x64_dvd_6052708.iso"
;;
2024-05-04 13:28:12 +02:00
"win2008r2" | "win2008r2-eval" )
2024-05-04 18:29:05 +02:00
size=3166584832
2024-05-04 13:28:12 +02:00
sum="dfd9890881b7e832a927c38310fb415b7ea62ac5a896671f2ce2a111998f0df8"
2024-05-18 16:33:12 +02:00
url="Windows%20Server%202008%20R2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601.iso"
2024-05-04 13:28:12 +02:00
;;
2024-05-18 16:33:12 +02:00
"win7x64" | "win7x64-enterprise" )
2024-05-04 18:29:05 +02:00
size=3182604288
2024-05-04 13:28:12 +02:00
sum="ee69f3e9b86ff973f632db8e01700c5724ef78420b175d25bae6ead90f6805a7"
2024-05-18 16:33:12 +02:00
url="Windows%207/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso"
2024-05-04 13:28:12 +02:00
;;
2024-05-18 16:33:12 +02:00
"win7x64-ultimate" )
2024-05-04 18:29:05 +02:00
size=3320903680
2024-05-04 13:28:12 +02:00
sum="36f4fa2416d0982697ab106e3a72d2e120dbcdb6cc54fd3906d06120d0653808"
2024-05-18 16:33:12 +02:00
url="Windows%207/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso"
2024-05-04 13:28:12 +02:00
;;
2024-05-16 07:53:25 +02:00
"win7x86" | "win7x86-enterprise" )
size=2434502656
sum="8bdd46ff8cb8b8de9c4aba02706629c8983c45e87da110e64e13be17c8434dad"
2024-05-18 16:33:12 +02:00
url="Windows%207/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso"
;;
"win7x86-ultimate" )
size=2564476928
sum="e2c009a66d63a742941f5087acae1aa438dcbe87010bddd53884b1af6b22c940"
2024-05-18 16:33:12 +02:00
url="Windows%207/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso"
;;
2024-05-18 16:33:12 +02:00
"winvistax64" | "winvistax64-enterprise" )
2024-05-04 18:29:05 +02:00
size=3205953536
2024-05-04 13:28:12 +02:00
sum="0a0cd511b3eac95c6f081419c9c65b12317b9d6a8d9707f89d646c910e788016"
2024-05-18 16:33:12 +02:00
url="Windows%20Vista/en_windows_vista_enterprise_sp2_x64_dvd_342332.iso"
2024-05-04 13:28:12 +02:00
;;
2024-05-18 16:33:12 +02:00
"winvistax64-ultimate" )
2024-05-04 18:29:05 +02:00
size=3861460992
2024-05-04 13:28:12 +02:00
sum="edf9f947c5791469fd7d2d40a5dcce663efa754f91847aa1d28ed7f585675b78"
2024-05-18 16:33:12 +02:00
url="Windows%20Vista/en_windows_vista_sp2_x64_dvd_342267.iso"
2024-05-04 13:28:12 +02:00
;;
"winvistax86" | "winvistax86-enterprise" )
size=2420981760
sum="54e2720004041e7db988a391543ea5228b0affc28efcf9303d2d0ff9402067f5"
2024-05-18 16:33:12 +02:00
url="Windows%20Vista/en_windows_vista_enterprise_sp2_x86_dvd_342329.iso"
;;
"winvistax86-ultimate" )
size=3243413504
sum="9c36fed4255bd05a8506b2da88f9aad73643395e155e609398aacd2b5276289c"
2024-05-18 16:33:12 +02:00
url="Windows%20Vista/en_windows_vista_with_sp2_x86_dvd_342266.iso"
;;
"win2003r2" )
size=652367872
sum="74245cba888f935b138b106c2744bec7f392925b472358960a0b5643cd6abb32"
url="Windows%20Server%202003%20R2/en_win_srv_2003_r2_standard_x64_with_sp2_cd1_x13-05757.iso"
;;
2024-05-04 13:28:12 +02:00
"winxpx86" )
2024-05-04 18:29:05 +02:00
size=617756672
2024-05-04 13:28:12 +02:00
sum="62b6c91563bad6cd12a352aa018627c314cfc5162d8e9f8af0756a642e602a46"
2024-05-18 16:33:12 +02:00
url="Windows%20XP/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso"
2024-05-04 13:28:12 +02:00
;;
"winxpx64" )
2024-05-04 18:29:05 +02:00
size=614166528
2024-05-04 13:28:12 +02:00
sum="8fac68e1e56c64ad9a2aa0ad464560282e67fa4f4dd51d09a66f4e548eb0f2d6"
2024-05-18 16:33:12 +02:00
url="Windows%20XP/en_win_xp_pro_x64_vl.iso"
;;
esac
2024-05-04 18:29:05 +02:00
case "${ret,,}" in
"sum" ) echo "$sum" ;;
"size" ) echo "$size" ;;
2024-05-18 16:33:12 +02:00
*) [ -n "$url" ] && echo "$host/$url";;
2024-05-04 18:29:05 +02:00
esac
2024-05-04 13:28:12 +02:00
return 0
}
getLink3() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
local ret="$3"
2024-05-04 13:28:12 +02:00
local url=""
local sum=""
2024-05-04 18:29:05 +02:00
local size=""
2024-05-04 13:28:12 +02:00
local host="https://archive.org/download"
2024-05-18 16:33:12 +02:00
[[ "${lang,,}" != "en" ]] && [[ "${lang,,}" != "en-us" ]] && return 0
2024-05-04 13:28:12 +02:00
case "${id,,}" in
"core11" )
2024-05-04 18:29:05 +02:00
size=2159738880
2024-05-04 13:28:12 +02:00
sum="78f0f44444ff95b97125b43e560a72e0d6ce0a665cf9f5573bf268191e5510c1"
2024-05-18 16:33:12 +02:00
url="tiny-11-core-x-64-beta-1/tiny11%20core%20x64%20beta%201.iso"
2024-05-04 13:28:12 +02:00
;;
"tiny11" )
2024-05-04 18:29:05 +02:00
size=3788177408
2024-05-04 13:28:12 +02:00
sum="a028800a91addc35d8ae22dce7459b67330f7d69d2f11c70f53c0fdffa5b4280"
2024-05-18 16:33:12 +02:00
url="tiny11-2311/tiny11%202311%20x64.iso"
;;
2024-05-04 13:28:12 +02:00
"tiny10" )
2024-05-04 18:29:05 +02:00
size=3839819776
2024-05-04 13:28:12 +02:00
sum="a11116c0645d892d6a5a7c585ecc1fa13aa66f8c7cc6b03bf1f27bd16860cc35"
2024-05-18 16:33:12 +02:00
url="tiny-10-23-h2/tiny10%20x64%2023h2.iso"
;;
2024-05-04 13:28:12 +02:00
"winxpx86" )
2024-05-04 18:29:05 +02:00
size=617756672
2024-05-04 13:28:12 +02:00
sum="62b6c91563bad6cd12a352aa018627c314cfc5162d8e9f8af0756a642e602a46"
2024-05-18 16:33:12 +02:00
url="XPPRO_SP3_ENU/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso"
;;
esac
2024-05-04 18:29:05 +02:00
case "${ret,,}" in
"sum" ) echo "$sum" ;;
"size" ) echo "$size" ;;
2024-05-18 16:33:12 +02:00
*) [ -n "$url" ] && echo "$host/$url";;
2024-05-04 18:29:05 +02:00
esac
2024-05-04 13:28:12 +02:00
return 0
}
2024-05-04 18:29:05 +02:00
getValue() {
2024-05-04 13:28:12 +02:00
2024-05-04 18:29:05 +02:00
local val=""
2024-05-18 16:33:12 +02:00
local id="$2"
local lang="$3"
local type="$4"
2024-05-04 13:28:12 +02:00
local func="getLink$1"
if [ "$1" -gt 0 ] && [ "$1" -le "$MIRRORS" ]; then
2024-05-18 16:33:12 +02:00
val=$($func "$id" "$lang" "$type")
2024-05-04 13:28:12 +02:00
fi
2024-05-04 18:29:05 +02:00
echo "$val"
return 0
}
getLink() {
2024-05-18 16:33:12 +02:00
local url
url=$(getValue "$1" "$2" "$3" "")
2024-05-04 18:29:05 +02:00
echo "$url"
return 0
}
2024-05-04 13:28:12 +02:00
getHash() {
2024-05-18 16:33:12 +02:00
local sum
sum=$(getValue "$1" "$2" "$3" "sum")
2024-05-04 13:28:12 +02:00
echo "$sum"
return 0
}
2024-05-04 18:29:05 +02:00
getSize() {
2024-05-18 16:33:12 +02:00
local size
size=$(getValue "$1" "$2" "$3" "size")
2024-05-04 18:29:05 +02:00
echo "$size"
return 0
}
2024-05-05 21:24:47 +02:00
isMido() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
2024-05-05 21:24:47 +02:00
local sum
2024-05-18 16:33:12 +02:00
sum=$(getMido "$id" "en" "sum")
2024-05-05 21:24:47 +02:00
[ -n "$sum" ] && return 0
return 1
}
isESD() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
2024-05-05 21:24:47 +02:00
2024-05-18 16:33:12 +02:00
case "${id,,}" in
"win11${PLATFORM,,}" | "win10${PLATFORM,,}" )
return 0
;;
"win11${PLATFORM,,}-enterprise" | "win11${PLATFORM,,}-enterprise-eval")
return 0
;;
"win10${PLATFORM,,}-enterprise" | "win10${PLATFORM,,}-enterprise-eval" )
return 0
;;
esac
2024-05-05 21:24:47 +02:00
return 1
}
validVersion() {
local id="$1"
2024-05-18 16:33:12 +02:00
local lang="$2"
local url
2024-05-18 16:33:12 +02:00
isESD "$id" "$lang" && return 0
isMido "$id" "$lang" && return 0
2024-05-04 13:28:12 +02:00
for ((i=1;i<=MIRRORS;i++)); do
2024-05-18 16:33:12 +02:00
url=$(getLink "$i" "$id" "$lang")
2024-05-04 13:28:12 +02:00
[ -n "$url" ] && return 0
2024-05-04 13:28:12 +02:00
done
return 1
}
addFolder() {
local src="$1"
local folder="/oem"
[ ! -d "$folder" ] && folder="/OEM"
[ ! -d "$folder" ] && folder="$STORAGE/oem"
[ ! -d "$folder" ] && folder="$STORAGE/OEM"
[ ! -d "$folder" ] && return 0
local msg="Adding OEM folder to image..."
info "$msg" && html "$msg"
local dest="$src/\$OEM\$/\$1/OEM"
mkdir -p "$dest" || return 1
cp -Lr "$folder/." "$dest" || return 1
local file
file=$(find "$dest" -maxdepth 1 -type f -iname install.bat | head -n 1)
[ -f "$file" ] && unix2dos -q "$file"
return 0
}
prepareInstall() {
2024-05-27 12:40:19 +02:00
local dir="$2"
local desc="$3"
local arch="$4"
local key="$5"
local driver="$6"
local drivers="/tmp/drivers"
rm -rf "$drivers"
mkdir -p "$drivers"
ETFS="[BOOT]/Boot-NoEmul.img"
if [ ! -f "$dir/$ETFS" ] || [ ! -s "$dir/$ETFS" ]; then
error "Failed to locate file \"$ETFS\" in $desc ISO image!" && return 1
fi
2024-05-27 12:40:19 +02:00
local msg="Adding drivers to image..."
info "$msg" && html "$msg"
if ! bsdtar -xf /drivers.txz -C "$drivers"; then
error "Failed to extract drivers!" && return 1
fi
local target
[[ "${arch,,}" == "x86" ]] && target="$dir/I386" || target="$dir/AMD64"
if [ ! -f "$drivers/viostor/$driver/$arch/viostor.sys" ]; then
error "Failed to locate required storage drivers!" && return 1
fi
cp -L "$drivers/viostor/$driver/$arch/viostor.sys" "$target" || return 1
mkdir -p "$dir/\$OEM\$/\$1/Drivers/viostor" || return 1
cp -L "$drivers/viostor/$driver/$arch/viostor.cat" "$dir/\$OEM\$/\$1/Drivers/viostor" || return 1
cp -L "$drivers/viostor/$driver/$arch/viostor.inf" "$dir/\$OEM\$/\$1/Drivers/viostor" || return 1
cp -L "$drivers/viostor/$driver/$arch/viostor.sys" "$dir/\$OEM\$/\$1/Drivers/viostor" || return 1
if [ ! -f "$drivers/NetKVM/$driver/$arch/netkvm.sys" ]; then
error "Failed to locate required network drivers!" && return 1
fi
mkdir -p "$dir/\$OEM\$/\$1/Drivers/NetKVM" || return 1
cp -L "$drivers/NetKVM/$driver/$arch/netkvm.cat" "$dir/\$OEM\$/\$1/Drivers/NetKVM" || return 1
cp -L "$drivers/NetKVM/$driver/$arch/netkvm.inf" "$dir/\$OEM\$/\$1/Drivers/NetKVM" || return 1
cp -L "$drivers/NetKVM/$driver/$arch/netkvm.sys" "$dir/\$OEM\$/\$1/Drivers/NetKVM" || return 1
2024-05-04 13:28:12 +02:00
if [ ! -f "$target/TXTSETUP.SIF" ]; then
error "The file TXTSETUP.SIF could not be found!" && return 1
fi
sed -i '/^\[SCSI.Load\]/s/$/\nviostor=viostor.sys,4/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\nviostor.sys=1,,,,,,4_,4,1,,,1,4/' "$target/TXTSETUP.SIF"
sed -i '/^\[SCSI\]/s/$/\nviostor=\"Red Hat VirtIO SCSI Disk Device\"/' "$target/TXTSETUP.SIF"
sed -i '/^\[HardwareIdsDatabase\]/s/$/\nPCI\\VEN_1AF4\&DEV_1001\&SUBSYS_00000000=\"viostor\"/' "$target/TXTSETUP.SIF"
sed -i '/^\[HardwareIdsDatabase\]/s/$/\nPCI\\VEN_1AF4\&DEV_1001\&SUBSYS_00020000=\"viostor\"/' "$target/TXTSETUP.SIF"
sed -i '/^\[HardwareIdsDatabase\]/s/$/\nPCI\\VEN_1AF4\&DEV_1001\&SUBSYS_00021AF4=\"viostor\"/' "$target/TXTSETUP.SIF"
sed -i '/^\[HardwareIdsDatabase\]/s/$/\nPCI\\VEN_1AF4\&DEV_1001\&SUBSYS_00000000=\"viostor\"/' "$target/TXTSETUP.SIF"
if [ ! -d "$drivers/sata/xp/$arch" ]; then
error "Failed to locate required SATA drivers!" && return 1
fi
mkdir -p "$dir/\$OEM\$/\$1/Drivers/sata" || return 1
cp -Lr "$drivers/sata/xp/$arch/." "$dir/\$OEM\$/\$1/Drivers/sata" || return 1
cp -Lr "$drivers/sata/xp/$arch/." "$target" || return 1
sed -i '/^\[SCSI.Load\]/s/$/\niaStor=iaStor.sys,4/' "$target/TXTSETUP.SIF"
sed -i '/^\[FileFlags\]/s/$/\niaStor.sys = 16/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaStor.cat = 1,,,,,,,1,0,0/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaStor.inf = 1,,,,,,,1,0,0/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaStor.sys = 1,,,,,,4_,4,1,,,1,4/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaStor.sys = 1,,,,,,,1,0,0/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaahci.cat = 1,,,,,,,1,0,0/' "$target/TXTSETUP.SIF"
sed -i '/^\[SourceDisksFiles.'"$arch"'\]/s/$/\niaAHCI.inf = 1,,,,,,,1,0,0/' "$target/TXTSETUP.SIF"
sed -i '/^\[SCSI\]/s/$/\niaStor=\"Intel\(R\) SATA RAID\/AHCI Controller\"/' "$target/TXTSETUP.SIF"
sed -i '/^\[HardwareIdsDatabase\]/s/$/\nPCI\\VEN_8086\&DEV_2922\&CC_0106=\"iaStor\"/' "$target/TXTSETUP.SIF"
2024-05-27 12:40:19 +02:00
rm -rf "$drivers"
local pid file setup
setup=$(find "$target" -maxdepth 1 -type f -iname setupp.ini | head -n 1)
pid=$(<"$setup")
pid="${pid:(-4)}"
pid="${pid:0:3}"
if [[ "$pid" == "270" ]]; then
warn "this version of $desc requires a volume license key (VLK), it will ask for one during installation."
fi
if ! addFolder "$dir"; then
error "Failed to add OEM folder to image!" && return 1
2024-05-27 12:40:19 +02:00
fi
local oem=""
local install="$dir/\$OEM\$/\$1/OEM/install.bat"
[ -f "$install" ] && oem="\"Script\"=\"cmd /C start \\\"Install\\\" \\\"cmd /C C:\\\\OEM\\\\install.bat\\\"\""
2024-11-15 05:16:48 +01:00
[ -z "$WIDTH" ] && WIDTH="1280"
[ -z "$HEIGHT" ] && HEIGHT="720"
2024-11-15 05:16:48 +01:00
XHEX=$(printf '%x\n' "$WIDTH")
YHEX=$(printf '%x\n' "$HEIGHT")
local username="Docker"
local password="*"
2024-05-27 12:40:19 +02:00
[ -n "$PASSWORD" ] && password="$PASSWORD"
2024-05-27 12:40:19 +02:00
[ -n "$USERNAME" ] && username=$(echo "$USERNAME" | sed 's/[^[:alnum:]@!._-]//g')
find "$target" -maxdepth 1 -type f -iname winnt.sif -exec rm {} \;
{ echo "[Data]"
echo " AutoPartition=1"
echo " MsDosInitiated=\"0\""
echo " UnattendedInstall=\"Yes\""
echo " AutomaticUpdates=\"Yes\""
echo ""
echo "[Unattended]"
echo " UnattendSwitch=Yes"
echo " UnattendMode=FullUnattended"
echo " FileSystem=NTFS"
echo " OemSkipEula=Yes"
echo " OemPreinstall=Yes"
echo " Repartition=Yes"
echo " WaitForReboot=\"No\""
echo " DriverSigningPolicy=\"Ignore\""
echo " NonDriverSigningPolicy=\"Ignore\""
echo " OemPnPDriversPath=\"Drivers\viostor;Drivers\NetKVM;Drivers\sata\""
echo " NoWaitAfterTextMode=1"
echo " NoWaitAfterGUIMode=1"
echo " FileSystem-ConvertNTFS"
echo " ExtendOemPartition=0"
echo " Hibernation=\"No\""
echo ""
echo "[GuiUnattended]"
echo " OEMSkipRegional=1"
echo " OemSkipWelcome=1"
echo " AdminPassword=$password"
echo " TimeZone=0"
echo " AutoLogon=Yes"
echo " AutoLogonCount=65432"
echo ""
echo "[UserData]"
echo " FullName=\"$username\""
echo " ComputerName=\"*\""
echo " OrgName=\"Windows for Docker\""
echo " ProductKey=$key"
echo ""
echo "[Identification]"
echo " JoinWorkgroup = WORKGROUP"
echo ""
echo "[Display]"
echo " BitsPerPel=32"
2024-11-15 05:16:48 +01:00
echo " XResolution=$WIDTH"
echo " YResolution=$HEIGHT"
echo ""
echo "[Networking]"
echo " InstallDefaultComponents=Yes"
echo ""
echo "[Branding]"
echo " BrandIEUsingUnattended=Yes"
echo ""
echo "[URL]"
echo " Home_Page = http://www.google.com"
echo " Search_Page = http://www.google.com"
echo ""
echo "[TerminalServices]"
echo " AllowConnections=1"
2024-05-22 00:53:19 +02:00
echo ""
} | unix2dos > "$target/WINNT.SIF"
if [[ "$driver" == "2k3" ]]; then
{ echo "[Components]"
echo " TerminalServer=On"
echo ""
echo "[LicenseFilePrintData]"
echo " AutoMode=PerServer"
echo " AutoUsers=5"
echo ""
} | unix2dos >> "$target/WINNT.SIF"
fi
{ echo "Windows Registry Editor Version 5.00"
echo ""
echo "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Security]"
echo "\"FirstRunDisabled\"=dword:00000001"
echo "\"UpdatesDisableNotify\"=dword:00000001"
echo "\"FirewallDisableNotify\"=dword:00000001"
echo "\"AntiVirusDisableNotify\"=dword:00000001"
echo ""
echo "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\wscsvc]"
echo "\"Start\"=dword:00000004"
echo ""
echo "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\GloballyOpenPorts\List]"
echo "\"3389:TCP\"=\"3389:TCP:*:Enabled:@xpsp2res.dll,-22009\""
echo ""
echo "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]"
echo "\"LimitBlankPasswordUse\"=dword:00000000"
echo ""
echo "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Applets\Tour]"
echo "\"RunCount\"=dword:00000000"
echo ""
echo "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced]"
echo "\"HideFileExt\"=dword:00000000"
echo ""
echo "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]"
echo "\"DefaultUserName\"=\"$username\""
echo "\"DefaultDomainName\"=\"Dockur\""
echo "\"AltDefaultUserName\"=\"$username\""
echo "\"AltDefaultDomainName\"=\"Dockur\""
echo "\"AutoAdminLogon\"=\"1\""
echo ""
echo "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000]"
echo "\"DefaultSettings.BitsPerPel\"=dword:00000020"
echo "\"DefaultSettings.XResolution\"=dword:00000$XHEX"
echo "\"DefaultSettings.YResolution\"=dword:00000$YHEX"
echo ""
echo "[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\Current\System\CurrentControlSet\Control\VIDEO\{23A77BF7-ED96-40EC-AF06-9B1F4867732A}\0000]"
echo "\"DefaultSettings.BitsPerPel\"=dword:00000020"
echo "\"DefaultSettings.XResolution\"=dword:00000$XHEX"
echo "\"DefaultSettings.YResolution\"=dword:00000$YHEX"
echo ""
2024-05-27 12:40:19 +02:00
echo "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce]"
echo "\"ScreenSaver\"=\"reg add \\\"HKCU\\\\Control Panel\\\\Desktop\\\" /f /v \\\"SCRNSAVE.EXE\\\" /t REG_SZ /d \\\"off\\\"\""
echo "\"ScreenSaverOff\"=\"reg add \\\"HKCU\\\\Control Panel\\\\Desktop\\\" /f /v \\\"ScreenSaveActive\\\" /t REG_SZ /d \\\"0\\\"\""
2024-05-27 12:40:19 +02:00
echo "$oem"
echo ""
} | unix2dos > "$dir/\$OEM\$/install.reg"
if [[ "$driver" == "2k3" ]]; then
{ echo "[HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\srvWiz]"
echo "@=dword:00000000"
echo ""
echo "[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\ServerOOBE\SecurityOOBE]"
echo "\"DontLaunchSecurityOOBE\"=dword:00000000"
echo ""
} | unix2dos >> "$dir/\$OEM\$/install.reg"
fi
{ echo "Set WshShell = WScript.CreateObject(\"WScript.Shell\")"
echo "Set WshNetwork = WScript.CreateObject(\"WScript.Network\")"
echo "Set Domain = GetObject(\"WinNT://\" & WshNetwork.ComputerName)"
echo ""
echo "Function DecodeSID(binSID)"
echo " ReDim o(LenB(binSID))"
echo ""
echo " For i = 1 To LenB(binSID)"
echo " o(i-1) = AscB(MidB(binSID, i, 1))"
echo " Next"
echo ""
echo " sid = \"S-\" & CStr(o(0)) & \"-\" & OctetArrayToString _"
echo " (Array(o(2), o(3), o(4), o(5), o(6), o(7)))"
echo " For i = 8 To (4 * o(1) + 4) Step 4"
echo " sid = sid & \"-\" & OctetArrayToString _"
echo " (Array(o(i+3), o(i+2), o(i+1), o(i)))"
echo " Next"
echo ""
echo " DecodeSID = sid"
echo "End Function"
echo ""
echo "Function OctetArrayToString(arr)"
echo " v = 0"
echo " For i = 0 To UBound(arr)"
echo " v = v * 256 + arr(i)"
echo " Next"
echo ""
echo " OctetArrayToString = CStr(v)"
echo "End Function"
echo ""
echo "For Each DomainItem in Domain"
echo " If DomainItem.Class = \"User\" Then"
echo " sid = DecodeSID(DomainItem.Get(\"objectSID\"))"
echo " If Left(sid, 9) = \"S-1-5-21-\" And Right(sid, 4) = \"-500\" Then"
echo " LocalAdminADsPath = DomainItem.ADsPath"
echo " Exit For"
echo " End If"
echo " End If"
echo "Next"
echo ""
echo "Call Domain.MoveHere(LocalAdminADsPath, \"$username\")"
echo ""
} | unix2dos > "$dir/\$OEM\$/admin.vbs"
{ echo "[COMMANDS]"
echo "\"REGEDIT /s install.reg\""
echo "\"Wscript admin.vbs\""
echo ""
} | unix2dos > "$dir/\$OEM\$/cmdlines.txt"
return 0
}
prepare2k3() {
local iso="$1"
local dir="$2"
local desc="$3"
local driver="2k3"
local arch key
[ -d "$dir/AMD64" ] && arch="amd64" || arch="x86"
if [[ "${arch,,}" == "x86" ]]; then
# Windows Server 2003 Standard x86 generic key (no activation, trial-only)
# This is not a pirated key, it comes from the official MS documentation.
key="QKDCQ-TP2JM-G4MDG-VR6F2-P9C48"
else
# Windows Server 2003 Standard x64 generic key (no activation, trial-only)
# This is not a pirated key, it comes from the official MS documentation.
key="P4WJG-WK3W7-3HM8W-RWHCK-8JTRY"
fi
2024-10-14 15:23:59 +02:00
prepareInstall "$iso" "$dir" "$desc" "$arch" "$key" "$driver" || return 1
return 0
}
prepareXP() {
local iso="$1"
local dir="$2"
local desc="$3"
local driver="xp"
local arch key
[ -d "$dir/AMD64" ] && arch="amd64" || arch="x86"
if [[ "${arch,,}" == "x86" ]]; then
# Windows XP Professional x86 generic key (no activation, trial-only)
# This is not a pirated key, it comes from the official MS documentation.
key="DR8GV-C8V6J-BYXHG-7PYJR-DB66Y"
else
# Windows XP Professional x64 generic key (no activation, trial-only)
# This is not a pirated key, it comes from the official MS documentation.
key="B2RBK-7KPT9-4JP6X-QQFWM-PJD6G"
fi
2024-10-14 15:23:59 +02:00
prepareInstall "$iso" "$dir" "$desc" "$arch" "$key" "$driver" || return 1
return 0
}
prepareLegacy() {
local iso="$1"
local dir="$2"
local desc="$3"
ETFS="boot.img"
[ -f "$dir/$ETFS" ] && [ -s "$dir/$ETFS" ] && return 0
rm -f "$dir/$ETFS"
local len offset
len=$(isoinfo -d -i "$iso" | grep "Nsect " | grep -o "[^ ]*$")
offset=$(isoinfo -d -i "$iso" | grep "Bootoff " | grep -o "[^ ]*$")
if ! dd "if=$iso" "of=$dir/$ETFS" bs=2048 "count=$len" "skip=$offset" status=none; then
error "Failed to extract boot image from $desc ISO!" && return 1
fi
[ -f "$dir/$ETFS" ] && [ -s "$dir/$ETFS" ] && return 0
error "Failed to locate file \"$ETFS\" in $desc ISO image!"
return 1
}
detectLegacy() {
local dir="$1"
local find find2
find=$(find "$dir" -maxdepth 1 -type d -iname win95 | head -n 1)
[ -n "$find" ] && DETECTED="win95" && return 0
find=$(find "$dir" -maxdepth 1 -type d -iname win98 | head -n 1)
[ -n "$find" ] && DETECTED="win98" && return 0
find=$(find "$dir" -maxdepth 1 -type d -iname win9x | head -n 1)
[ -n "$find" ] && DETECTED="win9x" && return 0
find=$(find "$dir" -maxdepth 1 -type f -iname cdrom_nt.5 | head -n 1)
[ -n "$find" ] && DETECTED="win2k" && return 0
find=$(find "$dir" -maxdepth 1 -type d -iname win51 | head -n 1)
find2=$(find "$dir" -maxdepth 1 -type f -iname setupxp.htm | head -n 1)
if [ -n "$find" ] || [ -n "$find2" ] || [ -f "$dir/WIN51AP" ] || [ -f "$dir/WIN51IC" ]; then
[ -d "$dir/AMD64" ] && DETECTED="winxpx64" && return 0
DETECTED="winxpx86" && return 0
fi
if [ -f "$dir/WIN51IA" ] || [ -f "$dir/WIN51IB" ] || [ -f "$dir/WIN51ID" ] || [ -f "$dir/WIN51IL" ] || [ -f "$dir/WIN51IS" ]; then
DETECTED="win2003r2" && return 0
fi
if [ -f "$dir/WIN51AA" ] || [ -f "$dir/WIN51AD" ] || [ -f "$dir/WIN51AS" ] || [ -f "$dir/WIN51MA" ] || [ -f "$dir/WIN51MD" ]; then
DETECTED="win2003r2" && return 0
fi
return 1
}
skipVersion() {
local id="$1"
case "${id,,}" in
"win9"* | "winxp"* | "win2k"* | "win2003"* )
return 0 ;;
esac
return 1
}
setMachine() {
local id="$1"
local iso="$2"
local dir="$3"
local desc="$4"
case "${id,,}" in
"win9"* )
ETFS="[BOOT]/Boot-1.44M.img" ;;
"win2k"* )
ETFS="[BOOT]/Boot-NoEmul.img" ;;
"winxp"* )
if ! prepareXP "$iso" "$dir" "$desc"; then
error "Failed to prepare $desc ISO!" && return 1
fi ;;
"win2003"* )
if ! prepare2k3 "$iso" "$dir" "$desc"; then
error "Failed to prepare $desc ISO!" && return 1
fi ;;
esac
case "${id,,}" in
"win9"* | "win2k"* )
DISK_TYPE="auto"
MACHINE="pc-i440fx-2.4"
BOOT_MODE="windows_legacy" ;;
"winxp"* | "win2003"* )
DISK_TYPE="blk"
BOOT_MODE="windows_legacy" ;;
"winvista"* | "win7"* | "win2008"* )
BOOT_MODE="windows_legacy" ;;
esac
case "${id,,}" in
"winxp"* | "win2003"* | "winvistax86"* | "win7x86"* | "win2008r2x86"* )
# Prevent bluescreen if 64 bit PCI hole size is >2G.
ARGS="-global q35-pcihost.x-pci-hole64-fix=false" ;;
esac
return 0
}
return 0