CodeItBetter Programming Another VB Programming Blog

How to find Mother boad Serial Number

Posted on January 5, 2009
1
2
3
4
5
6
7
8
9
10
11
12
13
'System & API - How to find Mother boad Serial Number
Option Explicit
 
'Add a reference to Microsoft WMI Scripting Library

Private Sub Main()
    Dim List, Object, WMI
    Set WMI = GetObject("WinMgmts:")
    Set List = WMI.InstancesOf("Win32_BaseBoard")
    For Each Object In List
        MsgBox Object.SerialNumber
    Next
End Sub
Comments (1) Trackbacks (0)
  1. I am not familiar with .NET. Can you say me how can I collect the Itegrated MAC Address.


Leave a comment


 

No trackbacks yet.