get udp endpoints

This commit is contained in:
Catalin-Emil Fetoiu 2024-08-16 16:35:36 -07:00
parent 2d31b04229
commit e6ee234f1f

View File

@ -113,6 +113,12 @@ function Collect-WindowsNetworkState {
Get-VMSwitch | select Name,Id,SwitchType | Out-File -FilePath "$folder/Get-VMSwitch_$ReproStep.log" -Append
}
catch {}
try
{
Get-NetUdpEndpoint | Out-File -FilePath "$folder/Get-NetUdpEndpoint_$ReproStep.log" -Append
}
catch {}
}
$folder = "WslNetworkingLogs-" + (Get-Date -Format "yyyy-MM-dd_HH-mm-ss")