Windows 10 22h2 how to disabled ipv6

Francesco Gatto 20 Reputation points
2023-05-02T10:35:16.1433333+00:00

Hello guys,

i've tried to disable ipv6 via regedit. i've tried to modify this key "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters\DisabledComponents" with 0XFF but continues to remain active.

How can i do?

I would like to apply this modification to several pcs, so I can't for each one do it via gui

Thank you

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

Accepted answer
  1. Limitless Technology 44,776 Reputation points
    2023-05-03T15:39:36.78+00:00

    Hello

    Thank you for your question and reaching out.

    Please try below Powershell commands using elevated mode.

    Get-NetAdapterBinding -ComponentID ms_tcpip6

    Disable-NetAdapterBinding -Name "Local Area Connection" -ComponentID ms_tcpip6

    You can use the wildcard * to disable IPv6 on all network adapters, instead of disabling them one by one.

    Disable-NetAdapterBinding -Name "*" -ComponentID ms_tcpip6

    --If the reply is helpful, please Upvote and Accept as answer--

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.