Jump to content

Recommended Posts

Posted

Trying to use WMI to read the following for the default network adapter ..

Connection Name

NIC Model

NIC MAC

NIC I.P

Connected Speed

Any help appreciated.


Posted

Try this VBS Script.

Option Explicit 
Dim Wmi :Set Wmi = GetObject("winmgmts:\\.\root\CIMV2")
Dim Adapter, ColItems, Card, IP, Ip1, Ip2, NetMadeBy, ObjItem, Report
Set ColItems = Wmi.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration",,48)
For Each ObjItem in ColItems
If isNull(ObjItem.IPAddress) Then
Else
NetMadeBy = Split(ObjItem.Description," ")
Card = Len(NetMadeBy(0))
Report = Report & "Caption " & vbTab & ObjItem.Description & vbCrLf
Ip = Join(ObjItem.IPAddress, ",")
Ip1 = Split(IP,",")
For Each Ip2 in Ip1
Report = Report & "IPAddress " & vbTab & Ip2 & vbCrLf
Adapter_Info1()
Exit For
Next
End If
Next
Function Adapter_Info1()
Dim ColNet, M1, NetItem
Set ColNet = Wmi.ExecQuery("SELECT * FROM Win32_NetworkAdapter",,48)
For Each NetItem in ColNet
If Instr(Lcase(NetItem.Manufacturer),LCase("Microsoft")) Then
Else
M1 = Left(NetItem.Manufacturer,Card)
M1 = M1
If InStr(NetMadeBy(0),M1) Then
Report = Report &_
"Manufacturer" & vbTab & NetItem.Manufacturer & vbCrLf & _
"Speed " & vbTab & FormatNumber(NetItem.Speed) & vbCrLf & _
"MACAddress " & vbTab & NetItem.MACAddress & vbCrLf
End If
End If
Next
End Function
WScript.Echo Report

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...