通过createprocess运行时捕获netsh.exe错误

时间:2016-09-28 10:11:27

标签: c++ windows network-programming ip netsh

我有一个在Windows上运行的c ++代码。请参考下面的代码片段(sudo代码,它不完整)。

char * command = L" C:\ Windows \ System32 \ netsh.exe interface ipv4 set address name = \" Local Area Connection \" source = static addr = mask = gateway =" }

if ((Createprocess(command, ...))
{
   return true;
}

下面

  1. 如果netsh.exe引发任何错误,我们如何捕获该错误?

  2. 如果发现ip地址重复,netsh.exe是否会抛出错误?

0 个答案:

没有答案