Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Show Connected Physical Adapters

$
0
0

Summary:  Use the Get-NetAdapter function to show physical network adapters that are connected.

Hey, Scripting Guy! Question How can I use Windows PowerShell to see which physical network adapters on my Windows 8.1 computer
          are up and connected?

Hey, Scripting Guy! Answer Use the –physical parameter with the Get-NetAdapter function, and filter for a status of Up:

Get-NetAdapter -physical | where status -eq 'up'


Viewing all articles
Browse latest Browse all 3333

Trending Articles