Trace: Network: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Create & Start Network Trace == <source lang="powershell"> New-NetEventSession -Name "net_trace" -CaptureMode SaveToFile -LocalFilePath "C:\temp\<TRACE_NAME…“)
 
(kein Unterschied)

Aktuelle Version vom 16. Dezember 2021, 16:29 Uhr

Create & Start Network Trace

New-NetEventSession -Name "net_trace" -CaptureMode SaveToFile -LocalFilePath "C:\temp\<TRACE_NAME>.etl"
Add-NetEventPacketCaptureProvider -SessionName "net_trace" -Level 4 -CaptureType Physical
Start-NetEventSession -Name "net_trace"


Stop & Remove Network Trace

Stop-NetEventSession -Name "net_trace"
Remove-NetEventSession -Name "net_trace"
 
#To read the .ETL File use Microsoft Message Analyzer