Skip to content
Follow
Windows

How to Disable IPV6 on Windows 11

Richard
Written by
Richard
Apr 13, 2026 Updated Jul 12, 2026 6 min read
How to Enable or Disable Browse as Guest in Microsoft Edge
How to Enable or Disable Browse as Guest in Microsoft Edge

Disabling IPv6 on Windows 11 can fix network issues or help with specific setups.

IPv6 is a newer system for internet addresses, designed to replace the older IPv4 system. It offers many more available addresses than IPv4.

Windows 11 comes with IPv6 turned on automatically. You might want to turn it off if you encounter problems with your internet connection or need to fine-tune your network settings.

⚡ Quick Answer

You disable IPv6 by right-clicking the network icon, selecting Network and internet settings, then your adapter, and unchecking “Internet Protocol Version 6 (TCP/IPv6)”. Alternatively, use PowerShell or the Registry Editor for more advanced control. Restart your computer after making changes.

Why disable or change IPv6?

Users sometimes prefer the older IPv4 internet protocol over IPv6. Other users wish to turn off IPv6 tunnel interfaces, which automatically connect when a computer detects specific network conditions. Completely disabling IPv6 is not advised, but users can control how IPv6 functions.

Understanding IPv6 settings

Let’s look at where these IPv6 settings are stored. They live in the Windows registry at this location:

🗝️Registry
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters

The specific setting you’ll change is called DisabledComponents, and it uses a numbering system called hexadecimal (a base-16 system) to control various IPv6 features.

IPv6 options and what they do

Prefer IPv4 over IPv6

You can make Windows 11 prefer the older IPv4 connection over the newer IPv6 connection. This is a good option if you don't want to fully disable IPv6 but want to make sure your computer uses the most compatible network type first.

Recommended: This is the best option instead of completely disabling IPv6.

To confirm this is working, follow these steps:

  1. Open Command Prompt or PowerShell
  2. Type: ping bing.com
  3. Look at the response. If IPv4 is preferred, you should see an IPv4 address returned

You can also check network settings by running:

💻Code
netsh interface ipv6 show prefixpolicies

Look for entries with higher precedence numbers. These will be preferred over lower numbers.

You can disable most of IPv6 on Windows 11 by changing a specific setting in the Windows Registry. This method turns off IPv6 for most uses, though it will still run minimally for essential system tasks.

⚠️ Admin Required: Administrator rights are necessary for these changes.

  1. Right-click on Command Prompt and select "Run as administrator"
  2. Type this command and replace with the number you want (like 0x20 or 0xFF):

    reg add "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters" /v DisabledComponents /t REG_DWORD /d 0xFF /f

  3. Press Enter
  4. Restart your computer for changes to take effect

Unbinding IPv6 from your network adapter means you are completely removing it from your connection, which is not recommended for Windows 11. Windows works best with IPv6 active, and some features require it to function correctly.

Disabling IPv6 on Windows 11 isn't recommended because the operating system performs best with it active. Certain programs and computer features, like some network discovery tools, actually require IPv6 to function correctly.

If you still want to unbind IPv6, you have two options:

Option 1Using Network Settings

  1. Right-click on the network icon in your taskbar
  2. Select "Network and internet settings"
  3. Find your network adapter
  4. Uncheck "Internet Protocol Version 6 (TCP/IPv6)"
Windows network adapter settings showing IPv6 disable option
Windows network adapter settings showing IPv6 disable option

Option 2Using PowerShell

You can use PowerShell to disable IPv6 on Windows 11, but you need administrator rights to do this. You'll need to replace '' with the name of your network connection, like 'Ethernet' or 'WiFi'.

Replace <MyAdapter> with your network adapter name (like "Ethernet" or "WiFi"):

IPv6 tunnel interfaces act as special pathways, essentially allowing the newer IPv6 internet 'language' to travel over the older IPv4 network. Windows automatically creates these interfaces when required, employing methods such as 6to4, ISATAP, and Teredo for network connections.

Users can disable Internet Protocol version 6 (IPv6) and automatic network connections if IPv6 is not needed or if these connections cause problems. Turning off IPv6 on a computer can prevent network conflicts and improve performance for systems that use older network setups. This action helps ensure a smoother internet experience.

The main tunneling methods are:

  • 6to4 tunneling
  • ISATAP
  • Teredo

How to disable tunnel interfaces

Method 1Using the registry

You can turn off IPv6 tunnel interfaces in Windows 11 using either the Windows Registry or Group Policy, both needing administrator access. Changing the registry's 'DisabledComponents' value to '0x01' is one way to do this.

Set the DisabledComponents value to 0x01

Method 2Using Group Policy (Windows Pro/Enterprise only)

You can turn off IPv6 tunnel interfaces in Windows 11 using either the Windows Registry or Group Policy, both needing administrator access. Changing the registry's 'DisabledComponents' value to '0x01' is one way to do this.

  1. Press Windows key + R
  2. Type gpdit.msc and press Enter
  3. Navigate to: Computer Configuration\Administrative Templates\Network\TCPIP Settings\IPv6 Transition Technologies
  4. Set the following to "Disabled":
    • 6to4 State
    • ISATAP State
    • Teredo State
📝Note
ISATAP and Teredo are already disabled by default in Windows 11.
Group Policy Editor window with IPv6 disabled configuration
Group Policy Editor window with IPv6 disabled configuration

Important things to remember

When you change the registry to disable IPv6, it doesn't change the checkbox in your network settings, as these work separately. It's also important to know that you can't truly disable IPv6 completely because Windows needs it for some internal system tasks.
  • Changing the DisabledComponents registry setting doesn't change the checkbox in network properties. The checkbox and the registry setting work separately.
  • You cannot completely disable IPv6. It runs internally for system tasks.
  • Disabling IPv6 incorrectly (using 0xffffffff instead of 0xff) can delay your computer startup by five seconds.
  • Some programs and features expect IPv6 to work properly.

Summary

📝Good to Know
Windows 11 has IPv6 turned on by default, but you can manage it using the 'DisabledComponents' registry setting. The best method is usually to prefer IPv4 (using value 0x20) rather than disabling IPv6 entirely, and you need admin rights to make these changes.

Should I disable IPv6 in 🪟 Windows 11?

Generally, you should not disable IPv6 in Windows 11 as it is a core component of modern networking. If you are experiencing connectivity issues, it is better to prioritize IPv4 over IPv6 using registry settings rather than disabling the protocol entirely, which can cause unexpected system errors or network instability.

Is disabling IPv6 a bad idea?

Yes, it's generally a bad idea to disable IPv6 on Windows 11 because many newer parts of Windows and network services need it to work right. Turning it off can cause problems with how your computer runs, finding other devices on your network, and using new internet services.

What does disabling IPv6 mean?

Disabling IPv6 on Windows 11 means your computer stops using the newest internet language, forcing it to only use the older IPv4 standard for communication. This stops your system from using IPv6 addresses, which might stop some network features from working correctly.

Does Microsoft recommend disabling IPv6?

No, Microsoft does not recommend disabling IPv6 on Windows. They state that IPv6 is a required part of the operating system, and turning it off or messing with its parts could make some Windows features stop working properly.

Was this guide helpful?

Tags: #Windows 11
Was this helpful?
Richard

About the Author

Richard

Tech Writer, IT Professional

Richard, a writer for Geek Rewind, is a tech enthusiast who loves breaking down complex IT topics into simple, easy-to-understand ideas. With years of hands-on experience in system administration and enterprise IT operations, he’s developed a knack for offering practical tips and solutions. Richard aims to make technology more accessible and actionable. He's deeply committed to the Geek Rewind community, always ready to answer questions and engage in discussions.

📚 Related Tutorials

How to Turn On or Off Let Windows Keep Me Connected with Cellular Connection in Windows 11
Windows How to Turn On or Off Let Windows Keep Me Connected with Cellular Connection in Windows 11
How to Reset Group Policy Windows 11 to Default
Windows How to Reset Group Policy Windows 11 to Default
How to Disable Command Prompt in Windows 11
Windows How to Disable Command Prompt in Windows 11
How to Add Your Child's Microsoft Account to Windows 11
Windows How to Add Your Child's Microsoft Account to Windows 11

No comments yet — be the first to share your thoughts!

Leave a Comment

Your email address will not be published. Required fields are marked *