Update install.sh

This commit is contained in:
Kroese 2024-02-01 13:08:32 +01:00 committed by GitHub
parent 97ff6c1ac9
commit 64d38f39ab
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -627,6 +627,7 @@ prepareXP() {
echo "NoWaitAfterGUIMode=1"
echo "FileSystem-ConvertNTFS"
echo "ExtendOemPartition=0"
echo "Hibernation=\"No\""
echo ""
echo "[GuiUnattended]"
echo "OEMSkipRegional=1"
@ -634,11 +635,11 @@ prepareXP() {
echo "AdminPassword=*"
echo "TimeZone=0"
echo "AutoLogon=Yes"
echo "AutoLogonCount=1"
echo "AutoLogonCount=99999"
echo ""
echo "[UserData]"
echo "FullName=\"Docker\""
echo "ComputerName=\"Docker\""
echo "ComputerName=\"*\""
echo "OrgName=\"Windows for Docker\""
echo "ProductKey=$key"
echo ""
@ -650,6 +651,12 @@ prepareXP() {
echo ""
echo "[RegionalSettings]"
echo "Language=00000409"
echo ""
echo "[TerminalServices]"
echo "AllowConnections=1"
echo ""
echo "[URL]"
echo "Home_Page=http://www.google.com"
} > "$sif"
return 0