Jump to content

Recommended Posts

Posted
Im trying to view what speed a server core server is connected at. I would normally look in the Local area connection status, however this is not avail as its server core, does anyone no if there is a command to show this. Thanks
Posted (edited)

You can do it in Powershell which is the preffered method as they are busy saying stuff like netsh are leaving after W8

 Get-WmiObject -Class Win32_NetworkAdapter | `
   Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | `
   Format-Table -Property SystemName,Name,NetConnectionID,Speed 

 

http://stackoverflow.com/questions/3002473/powershell-script-to-get-network-card-speed-of-a-windows-computer

Edited by SYNACK
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...