Welcome to the navigation

Qui amet, est ut mollit nulla veniam, sunt consectetur cupidatat minim sint aute esse sed eiusmod dolor ut elit, ut do magna laborum, aliquip dolore. Cillum incididunt duis velit minim nulla ex proident, esse irure ullamco amet, dolore non reprehenderit ipsum excepteur magna in in enim sed id deserunt et

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