我有一个在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;
}
下面
如果netsh.exe引发任何错误,我们如何捕获该错误?
如果发现ip地址重复,netsh.exe是否会抛出错误?