mirror of
https://github.com/kneutron/ansitest.git
synced 2025-01-16 04:42:55 +08:00
12 lines
229 B
Bash
12 lines
229 B
Bash
#!/bin/bash
|
|
|
|
# arg1 = vmid
|
|
echo "$(date) - syncing time on Win VM $1"
|
|
set -x
|
|
qm guest exec $1 w32tm /resync
|
|
set +x
|
|
date
|
|
|
|
# REF: https://windowsloop.com/windows-time-sync-command/
|
|
# REF: https://pve.proxmox.com/pve-docs/qm.1.html
|