Welcome to the navigation

Labore veniam, in officia eiusmod laborum, sed duis anim aliqua, nisi mollit qui dolore in fugiat voluptate ullamco est laboris id enim commodo ex elit. Dolore ut adipisicing laboris dolor ut esse dolore consequat, ex est in mollit sed labore fugiat do sit sunt laborum, enim anim ullamco culpa aliquip

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