Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Summary : Use Windows PowerShell 3.0 in Windows 8 to see network adapters that are bound to TCP/IP.
How can I find all network adapters that are bound to TCP/IPv4 by using Windows PowerShell 3.0 in Windows 8?
Use the Get-NetAdapterBinding function, pipe the results to a Where-Object cmdlet, and filter for the BindName equal to ‘tcpip’ :
Get-NetAdapterBinding | where bindname -eq 'tcpip'...(read more)