diff --git a/assets/win11arm64-ltsc.xml b/assets/win11arm64-ltsc.xml
index f429e7b..0c200df 100644
--- a/assets/win11arm64-ltsc.xml
+++ b/assets/win11arm64-ltsc.xml
@@ -86,6 +86,9 @@
true
Docker
Windows for Docker
+
+
+
false
diff --git a/src/install.sh b/src/install.sh
index e9ce4da..a1c290a 100644
--- a/src/install.sh
+++ b/src/install.sh
@@ -156,10 +156,6 @@ finishInstall() {
fi
fi
- if [ -n "${VGA:-}" ] && [[ "${VGA:-}" != "virtio" ]] && [[ "${VGA:-}" != "ramfb" ]]; then
- echo "$VGA" > "$STORAGE/windows.vga"
- fi
-
if [ -n "${DISK_TYPE:-}" ] && [[ "${DISK_TYPE:-}" != "scsi" ]]; then
echo "$DISK_TYPE" > "$STORAGE/windows.type"
fi
@@ -980,12 +976,6 @@ bootWindows() {
rm -rf "$TMP"
- if [ -s "$STORAGE/windows.vga" ] && [ -f "$STORAGE/windows.vga" ]; then
- [ -z "${VGA:-}" ] && VGA=$(<"$STORAGE/windows.vga")
- else
- [ -z "${VGA:-}" ] && [[ "${PLATFORM,,}" == "arm64" ]] && VGA="virtio-gpu"
- fi
-
if [ -s "$STORAGE/windows.type" ] && [ -f "$STORAGE/windows.type" ]; then
[ -z "${DISK_TYPE:-}" ] && DISK_TYPE=$(<"$STORAGE/windows.type")
fi