Quantcast
Channel: Hey, Scripting Guy! Blog
Viewing all articles
Browse latest Browse all 3333

PowerTip: Use PowerShell to Find Protocol Binding on Network Adapters

$
0
0

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


Viewing all articles
Browse latest Browse all 3333

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>