Skip to content

Instantly share code, notes, and snippets.

@devlights
Created April 21, 2017 14:18
Show Gist options
  • Select an option

  • Save devlights/9a4db2453a4054ed282a149145aad0d8 to your computer and use it in GitHub Desktop.

Select an option

Save devlights/9a4db2453a4054ed282a149145aad0d8 to your computer and use it in GitHub Desktop.
netsh コマンドを使用してLANアナライズ

使い方

管理者モードでコマンドプロンプト起動

以下のコマンドを打ち込むとLANキャプチャ開始

netsh trace start capture=yes report=no persistent=no maxSize=0 fileMode=single correlation=no traceFile=c:\tmp\xxxxx.etl

停止する場合は以下のコマンドを打ち込む

netsh trace stop

etlファイルに結果が収集されるのに時間がかかるので注意

出来上がった etl ファイルを Microsoft Message Analyzer で読み込むとデータが表示される。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment