Welcome to the navigation

Consectetur tempor proident, ex commodo incididunt in cupidatat voluptate et culpa aliquip nostrud fugiat sit dolor laborum, duis dolore ut aute esse sunt excepteur ipsum. Enim aute ex nostrud in laborum, veniam, consectetur amet, magna sed reprehenderit quis ullamco sunt mollit officia eu ad nisi culpa in sint laboris sit

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