Merge pull request #11426 from microsoft/user/khorton/add_tcpip6_parameter_output

Adding the regitry values under tcpip6/parameters
This commit is contained in:
Keith Horton 2024-04-05 17:35:28 -07:00 committed by GitHub
commit e0856aa89c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -266,6 +266,14 @@ try
}
catch {}
# Collect the old Tcpip6 registry values - as they can break WSL if DisabledComponents is set to 0xff
# see https://learn.microsoft.com/en-us/troubleshoot/windows-server/networking/configure-ipv6-in-windows
try
{
Get-Item HKLM:SYSTEM\CurrentControlSet\Services\Tcpip6\Parameters | Out-File -FilePath "$folder/tcpip6_parameters.log" -Append
}
catch {}
# Collect the setup and NetSetup log files
$netSetupPath = "$env:WINDIR/logs/netsetup"
if (Test-Path $netSetupPath)