Windows PowerShell:- Disable IPv6 and Tunneling with a simple command

In PowerShell, you are able to disable IPv6 on a Server using a single command as follows: reg add hklm\system\currentcontrolset\services\tcpip6\parameters /v DisabledComponents /t REG_DWORD /d 0xFF /f Now you can take this a step further and also disable IPv6 tunneling as well and will explain why shortly: Get-NetAdapterBinding -ComponentID “ms_tcpip6” Read more…