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

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