tags:

views:

145

answers:

3

Can you help me to track the motherboard number in vb.net

A: 

This is a very open-ended question and an impossible one to answer. You need a lot of low-level information that simply is not readily available. Further, "motherboard number" can mean a variety of different things.

So to answer your "Can you..." question, the answer would be "no" given the information given.

Christopher Estep
+1  A: 

Retrieving Motherboard Serial Number using WMI
http://www.codegain.com/index.php?option=com_content&view=article&id=345

It's in C#, but it should be fairly simple to convert it to VB.

Robert Harvey
A: 

Maybe you can get this information via WMI (a type of Windows-specific SNMP). It provides many information about the system, e.g. the BIOS serial no, maybe you should give it a try. There's WMI-Support in the .NET-Framework.

Mulmoth