May 12th, 2014

PowerTip: Find Network Adapters Bound to TCP/IP v4

Doctor Scripto
Scripter

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*

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.