Finding connected network adapters
One of the most fundamental pieces of troubleshooting or security checks to do is to find out which of the many network adapters on a computer are actually connected to a network.
PowerTip : Show ‘up’ physical adapters
Question: You want to see which physical network adapters on your Windows 8.1 computer using Windows PowerShell. How can you do this?
Answer: Use the -physical parameter with the Get-NetAdapter function and filter for a status of up. This technique appears here:
Get-NetAdapter -physical| where status -eq 'up'
## Using NetSh
It is pretty easy to use NetSh to retrieve information about the connection status of network adapters. To do so, I use the following command:
netsh interface ipv4 show interfaces
One of the problems, from a management perspective, is that the command returns text. Therefore, if I need to parse the text to pull out specific information, such as the Interface Index number, or the Name of the adapter, then I am going to have to resort to writing a complicated regular expression pattern. If all I need to do is to obtain the information because I am writing to a log file as text, then the command works great, and is the lowest common denominator - I can use it all the way back to Windows 2000 days.
I can even run the netsh commands from within the Windows PowerShell console. This appears in the figure that follows.
Using WMI
It is possible to use WMI and the Win32_NetworkAdapter WMI class to retrieve information about the connection status. The NetConnectionStatus property reports backed in a coded value that reports the status. These values are documented on MSDN for the Win32_NetworkAdapter class. Using the Get-WmiObject Windows PowerShell cmdlet, I can work with any operating system that installs Windows PowerShell. This includes Windows XP, Windows Server 2003 and above. The following command returns information similar to the NetSh command.
get-wmiobject win32\_networkadapter|select netconnectionid, name, InterfaceIndex, netconnectionstatus
The command and the output from the command appear in the figure that follows.

The difference is that instead of plain text, the command returns objects that can be further manipulated. Therefore, while the above command actually returns the network connection status of all network adapters, the NetSh command only returns the ones that are connected. If I filter on a netconnectionstatus of 2 I can return only the connected network adapters. The command becomes this one (this is a single line command that I broke at the pipeline character for readability):
````
get-wmiobject win32_networkadapter -filter “netconnectionstatus = 2”|
selectnetconnectionid,name,InterfaceIndex,netconnectionstatus ```` The command and output appear in the figure that follows.
If the desire is to obtain the connection status of more than just network adapters that are connected, then the task will require writing a script to do a lookup. The lookup values appear in the table that follows:
| Value | Meaning |
|---|---|
| 0 | Disconnected |
| 1 | Connecting |
| 2 | Connected |
| 3 | Disconnecting |
| 4 | Hardware not present |
| 5 | Hardware disabled |
| 6 | Hardware malfunction |
| 7 | Media disconnected |
| 8 | Authenticating |
| 9 | Authentication succeeded |
| 10 | Authentication failed |
| 11 | Invalid Address |
| 12 | Credentials required |
The Get-NetworkAdapterStatus.ps1 script requires at least Windows PowerShell 2.0 which means that it will run on Windows XP SP3 and above.
Get-NetworkAdapterStatus.Ps1 ```` <#
.Synopsis Produces a listing of network adapters and status on a local or remote machine.
.Description This script produces a listing of network adapters and status on a local or remote machine.
.Example Get-NetworkAdapterStatus.ps1 -computer MunichServer Lists all the network adapters and status on a computer named MunichServer
.Example Get-NetworkAdapterStatus.ps1 Lists all the network adapters and status on local computer
.Inputs [string]
.OutPuts [string]
.Notes NAME: Get-NetworkAdapterStatus.ps1
AUTHOR: Ed Wilson
LASTEDIT: 1/10/2014
KEYWORDS: Hardware, Network Adapter
.Link
Http://www.ScriptingGuys.com