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
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

You can do it in Powershell which is the preffered method as they are busy saying stuff like netsh are leaving after W8http://stackoverflow.com/questions/3...ndows-computerCode:Get-WmiObject -Class Win32_NetworkAdapter | ` Where-Object { $_.Speed -ne $null -and $_.MACAddress -ne $null } | ` Format-Table -Property SystemName,Name,NetConnectionID,Speed
Last edited by SYNACK; 21st August 2012 at 10:57 AM.
LukeC (14th February 2013)
There are currently 1 users browsing this thread. (0 members and 1 guests)