这个是获取到的字符串结果: E:\代码\参考\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug>ipconfig\ E:\代码\参考\WindowsFormsApplication2\WindowsFormsApplication2\bin\Debug>exit 代码: public string RunCmd(string cmd) |
|
15分 | |
这个还是不行,获取的还是“Microsoft Windows [版本 6.1.7601] |
|
对啊 , 你看下面的回答啊,上面那个是问题。。。。。。 |
|
对哦,我就是按照那篇提供了解决办法的博文里面的代码来调试了一下,结果还是一样 |
|
你的命令多了一个“\”,改为:
c.RunCmd(@"ipconfig"); |
|
10分 |
获取 ipconfig 结果可以这样写
var info = new ProcessStartInfo { FileName = "ipconfig", Arguments = "/all", RedirectStandardOutput = true, UseShellExecute = false }; var p = Process.Start(info); var result = p.StandardOutput.ReadToEnd(); |
5分 |
ipconfig 后面莫名其妙加个斜杠是要干嘛
|