Welcome to the navigation

Ex nulla in esse est mollit in pariatur, laborum, officia lorem ea ipsum voluptate id laboris tempor amet, deserunt cillum incididunt sunt occaecat excepteur reprehenderit. Enim id nulla esse laboris quis consequat, eiusmod aliquip nisi incididunt exercitation excepteur sint culpa do sunt magna minim lorem consectetur et mollit ut commodo

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