cmd toll to view status of a network interface card

  • Thread starter Thread starter Martin Lehmann
  • Start date Start date
M

Martin Lehmann

Is anybody aware of cmd tool which show me the Link Speed
and duplex setting ?
 
Martin said:
Is anybody aware of cmd tool which show me the Link Speed
and duplex setting ?

I recently found this vbs script :

'-----
Set Ndis = GetObject("WinMgmts:root/wmi").InstancesOf("MSNdis_LinkSpeed")
For Each obj In Ndis
WScript.Echo obj.InstanceName & ": " & obj.NdisLinkSpeed / 10000, "Mb/s"
Next
'-----

I'm not expirienced in wmi so you might ask in a wmi-related group.

HTH
 
Back
Top