January 12th, 2014

PowerTip: Use PowerShell to Find Protocol Binding on Network Adapters

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to find which protocols are bound to your network adapters.

Hey, Scripting Guy! Question How can I use Windows 8.1 and Windows PowerShell 4.0 to show which enabled protocols
          are bound to my network adapters?

Hey, Scripting Guy! Answer Use the Get-NetAdapter cmdlet to retrieve all of the network adapters on your system,
          pipe it to the Get-NetAdapterBinding cmdlet, and filter on enabled is equal to True:

Get-NetAdapter | Get-NetAdapterBinding | ? enabled -eq $true

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.