Summary: Use a function in Windows 8 to show network adapter status information.
How can I use Windows PowerShell in Windows 8 to find network adapter status information, such as link speed and duplexing?
Use the Get-NetAdapter function, and select the appropriate properties, for example:
Get-NetAdapter | SELECT name, status, speed, fullduplex | where status -eq 'up'