How can I check if IPv6 is enabled on my Windows PC?
I’m just trying to see whether IPv6 is on in my Windows machine, but I’m not sure where to check. I don’t usually mess with network settings, so I’m not sure where to look. What’s the easiest way to check if IPv6 enabled?
You don’t need to dig too deep. Just open the list of your network adapters and you can see it right away.
Press Win + R and type ncpa.cpl
Open the Properties of the connection you’re using
If you see IPv6 in the list with a tick next to it, it’s already on
That’s pretty much it.
If you prefer commands, you can open PowerShell and run:
Get-NetAdapterBinding -ComponentID ms_tcpip6
If it says True, then IPv6 is enabled.

