How to retrieve a computer's motherboard serial number
How to retrieve a computer's motherboard serial number
API Declarations
'Put 'Microsoft WMI Scripting Library' to references
Rate How to retrieve a computer's motherboard serial number
(2(2 Vote))
Dim obj
Dim WMI
Set WMI = GetObject("WinMgmts:")
Set objs = WMI.InstancesOf("Win32_BaseBoard")
For Each obj In objs
MsgBox obj.SerialNumber
Next
How to retrieve a computer's motherboard serial number Comments
No comments yet — be the first to post one!
Post a Comment