List Physical Network Adapters Using PowerShell Posted bySiva April 20, 2011 Leave a comment on List Physical Network Adapters Using PowerShell Get-WmiObject win32_NetworkAdapter | %{ if ($_.PhysicalAdapter) {$_.Description} }