February 7th, 2015

PowerTip: Find Network Adapters Not Bound to TCP/IP

Doctor Scripto
Scripter

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

Hey, Scripting Guy! Question I am troubleshooting a computer that will not connect to the network, and I suspect the protocol bindings.
           How can I find network adapters that are not bound to TCP/IP?

Hey, Scripting Guy! AnswerUse the Get-NetAdapterBinding Windows PowerShell function, filter on a display name of TCP,
           and see if the protocol is enabled, for example:

Get-NetAdapterBinding -DisplayName *tcp* | where {!($_.enabled)}

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.