I can get the serial numbers from all attached monitors with the Powershell command:
get-wmiobject wmimonitorid -namespace root\wmi|foreach-object{($_.SerialnumberID|foreach-object{[char]$_}) -join „“}
Is it possible to do this with VBA?
My intention is to add the serial numbers to Excel (one serial number per cell).
you will need to add WMI scripting library to the references
You can change debug.print to add to certain cells instead, by using
Dim s as String
ands = s + chr(c);