querying netsh in c#

本文关键字:in netsh querying | 更新日期: 2023-09-27 18:15:40

我一直在尝试用c#查询WiFi信息的理想方法。我尝试过netsh方法,但不确定如何分离信息。我注意到Vistumbler使用了netsh。是否有一种方法,这些开发人员在查询netsh时将信息分开,或者他们只是执行了大量的字符串操作来删除不相关的东西。

querying netsh in c#

我通常就是这么做的。调用netsh,获取输出并解析它。

Process p = new Process();
p.StartInfo.FileName = "netsh.exe";
p.StartInfo.Arguments = "netsh arguments...";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardOutput = true;
p.Start();
string output = p.StandardOutput.ReadToEnd();
// parse output and look for results