update tcpdump flags

This commit is contained in:
Catalin-Emil Fetoiu 2024-04-03 14:35:10 -07:00
parent b848170b87
commit d9fb9f04db
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ netsh wfp capture start file="$folder/wfpdiag.cab"
$tcpdumpProcess = $null $tcpdumpProcess = $null
try 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 {} catch {}