Skip to content

Commit

Permalink
Merge pull request #11426 from microsoft/user/khorton/add_tcpip6_para…
Browse files Browse the repository at this point in the history
…meter_output

Adding the regitry values under tcpip6/parameters
  • Loading branch information
keith-horton authored Apr 6, 2024
2 parents 31e0eeb + 8741785 commit e0856aa
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions diagnostics/collect-networking-logs.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e0856aa

Please sign in to comment.