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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top