设置本地网络为自动获取

Posted xinzheng

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了设置本地网络为自动获取相关的知识,希望对你有一定的参考价值。

ManagementClass mc = new ManagementClass("Win32_NetworkAdapterConfiguration");
ManagementObjectCollection moc = mc.GetInstances();
foreach (ManagementObject mo in moc)
{
    if (!(bool)mo["IPEnabled"]) continue;
    mo.InvokeMethod("SetDNSServerSearchOrder", null);
    mo.InvokeMethod("EnableStatic", null);
    mo.InvokeMethod("SetGateways", null);
    mo.InvokeMethod("EnableDHCP", null);
    break;
}

 

以上是关于设置本地网络为自动获取的主要内容,如果未能解决你的问题,请参考以下文章