wmic baseboard get serialnumber
in the powershell returns message No Instance Available.
CimInstance ClassName win32_baseboard
for windows guest in proxmox?qm config VMID | grep machine
)Thank you for your reply.Which machine version do you have configured for that VM? (check withqm config VMID | grep machine
)
Versions 8.1 and 8.2 use a 64 bit SMBIOS table that Windows doesn't understand, so it can't read from it an you'll get empty values for SMBIOS data like serialnumber or UUID. It's reported to QEMU and patched for QEMU v9.0 [1].
Change machine version to 8.0 and it should work [2].
[1] https://gitlab.com/qemu-project/qemu/-/issues/2008
[2] https://gitlab.com/imammedo/qemu/-/commit/13919efa4c4fc4d6810e21a5b94bc10119dd850c
dmidecode -t 2
to the guest by the qm set <vmID> --args "-smbios type=2,serial=qwerty1234"
The machine version were 8.0 from the begginingDidn't work just changing machine version to <=8.0 ?