feat: Add Win10 enterprise

This commit is contained in:
Kroese 2024-04-21 21:37:32 +02:00 committed by GitHub
parent 4688952cf1
commit 892e515618
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,11 +213,15 @@ getVersion() {
else
if [[ "${name,,}" == *"ltsc"* ]]; then
detected="win10x64-ltsc"
else
if [[ "${name,,}" == *"enterprise evaluation"* ]]; then
detected="win10x64-enterprise-eval"
else
detected="win10x64"
fi
fi
fi
fi
echo "$detected"
return 0