Merge pull request #11419 from microsoft/user/cfetoiu/tcpdump_flags

Add more flags to tcpdump command in networking script
This commit is contained in:
Cătălin Emil Fetoiu 2024-04-04 11:05:42 -07:00 committed by GitHub
commit ac56cd5e3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@ netsh wfp capture start file="$folder/wfpdiag.cab"
$tcpdumpProcess = $null
try
{
$tcpdumpProcess = Start-Process wsl.exe -ArgumentList "-u root tcpdump -n -i any > $folder/tcpdump.log" -PassThru
$tcpdumpProcess = Start-Process wsl.exe -ArgumentList "-u root tcpdump -n -i any -e -vvv > $folder/tcpdump.log" -PassThru
}
catch {}