Welcome to the navigation

Amet, et nostrud cupidatat sint occaecat fugiat in ut reprehenderit dolor esse eiusmod commodo dolore id ex elit, ipsum consequat, incididunt sed ad proident, excepteur. Irure nulla eiusmod minim officia pariatur, occaecat amet, sunt incididunt qui cupidatat voluptate ea in duis ut sint ullamco aliquip fugiat magna ad deserunt esse

Yeah, this will be replaced... But please enjoy the search!

Disable ipv6 on all ethernet adapters using powershell

Here's a one-liner to disable ipv6 on all ehternet adapters using powershell

Get-NetAdapter | foreach { Disable-NetAdapterBinding -InterfaceAlias $_.Name -ComponentID ms_tcpip6 }

Check the result with this line

Get-NetAdapter | foreach { Get-NetAdapterBinding -InterfaceAlias $_.Name -ComponentID ms_tcpip6 }

Cheers