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

PowerTip: Find Network Adapters Bound to TCP/IP v4

$
0
0

Summary: Use Windows PowerShell to find network adapters that are bound to TCP/IP v4.

Hey, Scripting Guy! Question How can I use Windows PowerShell on my computer running Windows 8.1 to find protocol binding
          information about network adapters that are bound to TCP/IP v4?

Hey, Scripting Guy! Answer Use the Get-NetAdapterBinding function, and filter on the DisplayName parameter for
          things that look like *tcp/ipv4*:

Get-NetAdapterBinding -DisplayName *IPv4*


Viewing all articles
Browse latest Browse all 3333

Trending Articles