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--