PowerTip: Use PowerShell to Find Protocol Binding on Network Adapters

Doctor Scripto

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

0 comments

Discussion is closed.

Feedback usabilla icon