stop ipv6 from automatically enabling

Page 1 of 3 123 LastLast

  1. Posts : 582
    Windows 10 Pro 64 bit 19044.1706
       #1

    stop ipv6 from automatically enabling


    How to stop ivp6 from automatically enabling ? I tried to disable it in registry and it didn't work and i can't disable it in my modem. I don't know any other way, i want to stick to ipv4 for now. How to prevert ipv6 from automatically enabling ???
      My Computer


  2. Posts : 56,825
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #2

    empleat said:
    How to stop ivp6 from automatically enabling ? I tried to disable it in registry and it didn't work and i can't disable it in my modem. I don't know any other way, i want to stick to ipv4 for now. How to prevert ipv6 from automatically enabling ???
    In your LAN card adapter properties is where the IPv4 & IPv6 settings are. Unchecked the IPv6 box, apply, etc. Best to reboot after.

    stop ipv6 from automatically enabling-2019-08-29_09h18_46.png
      My Computers


  3. Posts : 5,452
    Windows 11 Home
       #3

    Additionally, you can run this in CMD as admin:
    Code:
    netsh int ipv6 isatap set state disabled
    netsh int teredo set state disabled
    netsh interface ipv6 6to4 set state state=disabled undoonstop=disabled
    reg add "HKLM\System\CurrentControlSet\Services\Tcpip6\Parameters" /v "DisabledComponents" /t REG_DWORD /d "255" /f
      My Computer


  4. Posts : 582
    Windows 10 Pro 64 bit 19044.1706
    Thread Starter
       #4

    It seems it is causing my vpn, when i connect to a server. I contacted them..
      My Computer


  5. Posts : 56,825
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #5

    empleat said:
    It seems it is causing my vpn, when i connect to a server. I contacted them..
    I see. Please keep us informed, and let us know if you got it resolved. Thanks.
      My Computers


  6. Posts : 582
    Windows 10 Pro 64 bit 19044.1706
    Thread Starter
       #6

    Still not sure why when i connect to a vpn and than disconnect ipv6 enables for all adapters.
    Hm they offered only this: https://support.microsoft.com/en-us/...advanced-users
    Using microsoft fixer, or disable via registry - both doesn't work.
    I currently don't have ipv6, but i can get it at any point and i don't wanna mix my traffic from virtual machine and windows. Also still sending some packets, guess it will be some basic networking like dhcp or something.
    Is there any other way to uninstall ipv6 or disable it ?
      My Computer


  7. Posts : 56,825
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #7

    empleat said:
    Still not sure why when i connect to a vpn and than disconnect ipv6 enables for all adapters.
    Hm they offered only this: https://support.microsoft.com/en-us/...advanced-users
    Using microsoft fixer, or disable via registry - both doesn't work.
    I currently don't have ipv6, but i can get it at any point and i don't wanna mix my traffic from virtual machine and windows. Also still sending some packets, guess it will be some basic networking like dhcp or something.
    Is there any other way to uninstall ipv6 or disable it ?
    Did you try what I posted back in post #2? Disabling it in your adapter? I don't see any mention that you did.

    stop ipv6 from automatically enabling
      My Computers


  8. Posts : 5,330
    Windows 11 Pro 64-bit
       #8

    This batch script will Enable or Disable IPv6 for All Network Adapters.

    Code:
    ::  Enable or Disable IPv6 in Windows 7, Windows 8, and Windows 10
    
    @Echo Off 
    
    net sess>nul 2>&1||(powershell start cmd -ArgumentList """/c %~0""" -verb Runas & exit)
    
    Cls & Mode CON  LINES=11 COLS=80 & Color 0E & Title Created By FreeBooter
    Echo.
    Echo.
    Echo.
    Echo.
    Echo           Do You Want to Disable IPv6 for All Network Adapters (Y/N)?   
    Echo.       
    Echo.
    Echo.
    
    
    Set /p input= RESPONSE: 
    
    If /i  Not %input%==Y (Goto :_Ex) Else (Goto :_Start) 
    
    :_Ex
    If /i Not %input%==N  (Goto :EOF) Else (Goto :_RegRestore)
    
    
    
    :_Start
    
    Powershell Disable-NetAdapterBinding -Name "*" -ComponentID ms_tcpip6
    
    
    
    
    Cls & Mode CON  LINES=11 COLS=60 & Color 0E & Title Created By FreeBooter
    Echo.
    Echo.
    Echo.
    Echo.
    Echo            Disabling IPv6 for All Network Adapters 
    Echo.
    Echo.
    Echo. 
    Ping -n 6 localhost >Nul
    Exit
    
    
    :_RegRestore
    
    Powershell Enable-NetAdapterBinding -Name "*" -ComponentID ms_tcpip6
    
    
    
    Cls & Mode CON  LINES=11 COLS=60 & Color 0E & Title Created By FreeBooter
    Echo.
    Echo.
    Echo.
    Echo.
    Echo            Enabling IPv6 for All Network Adapters
    Echo.
    Echo.
    Echo. 
    Ping -n 6 localhost >Nul
    Exit
      My Computer


  9. Posts : 582
    Windows 10 Pro 64 bit 19044.1706
    Thread Starter
       #9

    f14tomcat said:
    Did you try what I posted back in post #2? Disabling it in your adapter? I don't see any mention that you did.
    Yep, also i tried TairikuOkami's script. I tried everything i found.

    FreeBooter - scrip says:The term ':_Ex' is not recognized as the name of a cmdlet, function

    Also problem is not to disable it, because every time after i connect to vpn and after disconnecting ipv6 reenables on all adapters. And i tried every solution they told me, which is in that link above and they said they can't offer anything more.
    I need uninstall ipv6 which is greyed out. Or remove some windows files so it doesn't work at all!!
    Don't know why it is reenabling each time bizzare bug indeed...
      My Computer


  10. Posts : 56,825
    Multi-boot Windows 10/11 - RTM, RP, Beta, and Insider
       #10

    empleat said:
    Yep, also i tried TairikuOkami's script. I tried everything i found.

    FreeBooter - scrip says:The term ':_Ex' is not recognized as the name of a cmdlet, function

    Also problem is not to disable it, because every time after i connect to vpn and after disconnecting ipv6 reenables on all adapters. And i tried every solution they told me, which is in that link above and they said they can't offer anything more.
    I need uninstall ipv6 which is greyed out. Or remove some windows files so it doesn't work at all!!
    Don't know why it is reenabling each time bizzare bug indeed...
    Sorry none of all the solutions is doing it for you. I agree this a a bit bizarre.

    Just for a sanity check, if you disable it (anyway you can), verify visually again it is disabled, connect to the VPN. While still connected to VPN, check to see if re-enabled. Or is this only after the VPN is disconnected?
    Last edited by f14tomcat; 02 Sep 2019 at 16:50.
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 06:14.
Find Us




Windows 10 Forums