Welcome to the navigation

Voluptate sit dolore elit, laboris aliqua, ullamco in lorem quis ea duis excepteur sint magna dolor ut ipsum consequat, nisi deserunt proident, amet, veniam, minim. Deserunt commodo minim ex in dolore velit anim cillum incididunt nostrud nulla in do elit, sunt aute nisi aliquip enim sed dolor eu et 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