目前我在Windows 10和Windows Server 2012上成功运行了以下tshark命令:
tshark -l -n -r "\\.\pipe\tsharkpipe2"
但是当我在Windows 7和Windows Server 2012上运行它时,tshark会给我File does not exist error
。但是,我可以使用-i
的管道,如:
tshark -i "\\.\pipe\tsharkpipe2"
但我需要运行-Y
过滤器和-T pdml
,这似乎无法使用-i
完成。
我正在使用来自C# Example的tshark 2.0.5和Wireshark wiki,并且tshark和我的客户端都以管理员身份运行。
我在这里错过了什么吗?