Summary: Use Windows PowerShell to find network adapters that are bound to TCP/IP v4.
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?
Use the Get-NetAdapterBinding function, and filter on the DisplayName parameter for
things that look like *tcp/ipv4*:
Get-NetAdapterBinding -DisplayName *IPv4*