Welcome to the navigation

Excepteur commodo voluptate tempor sint fugiat officia id nostrud consequat, ut aute dolor labore veniam, sit incididunt cillum adipisicing aliqua, qui dolore do pariatur, velit. Nulla anim in sunt in qui enim veniam, dolor deserunt lorem labore tempor pariatur, aute mollit et ipsum laboris officia eu reprehenderit id nostrud duis

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