Windows installer

This commit is contained in:
2026-08-24 14:47:14 +03:00
Unverified
parent d25cb7e57a
commit 529e090b25
61 changed files with 7395 additions and 49 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
VM_NAME="${FROMCHAT_WINDOWS_VM:-Windows 11}"
SCOPE="${1:-all}"
if ! command -v prlctl >/dev/null 2>&1; then
echo "prlctl not found — run sync-windows-vm.cmd inside the VM instead" >&2
exit 1
fi
prlctl exec "$VM_NAME" cmd /c "C:\\FromChat\\app\\scripts\\sync-windows-vm.cmd ${SCOPE}"