Hola
Escorpion_Negro en este misma web postearon la solucion de obtener la mac de la tarjeta de red. El code fue este:
Código vb:
Ver originalPublic Function GetMAC() As String
Dim str As String
Dim p As New Process
'StartInfo representa el conjunto de parámetros que se van a
p.StartInfo.UseShellExecute = False
p.StartInfo.RedirectStandardOutput = True
p.StartInfo.FileName = "GetMac.exe"
p.StartInfo.Arguments = "/fo list"
p.Start()
'StandardOutput Obtiene una secuencia que se utiliza
str = p.StandardOutput.ReadLine
str = p.StandardOutput.ReadLine
p.WaitForExit()
Return str.Substring(23)
End Function
Fuente :
http://www.forosdelweb.com/f29/obtne...vb-net-609318/