Forum Discussion
James_Haynes
Nov 09, 2021Copper Contributor
Remove INSECURE_NPCAP from an adapter Interface
I am trying to remove the Npcap Packet Driver (NPCAP) from my Ethernet 2 interface. If I run the command: PS C:\WINDOWS\system32> Get-NetAdapterBinding -AllBindings Name DisplayName ComponentID En...
Jan 29, 2022
You specify Ethernet_2 in your command, but the adapter's name is Ethernet 2. So the command would have to be :
Disable-NetAdapterBinding -Name "Ethernet 2" -ComponentID INSECURE_NPCAP
- Jan 31, 2022Did this solve your issue?
- JimH4Jan 31, 2022Copper ContributorThanks for the help. Unfortunately, I had to solve the issue a while back and just did a re-install on the laptop.
- Jan 31, 2022reinstall is also an option 😉