I have written the following code (C# .NET 2.0) which is supposed to set the DNS settings on an active network adapter.
internal bool SetDns(int index, string dns1, string dns2)
{
var profile = (
(MbbDataConnectionController)
DataConnectionController).LastProfile;
if (null != profile)
{
try
{
var classInstance =
new ManagementObject("root\\CIMV2",
"Win32_NetworkAdapterConfiguration.Index='" + index + "'",
null);
string[] dnsArray = { dns1, dns2 };
var inParams =
classInstance.GetMethodParameters(
"SetDNSServerSearchOrder");
inParams["DNSServerSearchOrder"] = dnsArray;
var retParams = classInstance.InvokeMethod(
"SetDNSServerSearchOrder", inParams, null);
if (null != retParams)
{
var returnCode = Int32.Parse(
retParams["ReturnValue"].ToString());
if (returnCode != 0)
{
Logger.Log(TraceLevel.Error,
"MbbDaliGsmDevice SetDns : "
+ " failed with error code "
+returnCode);
return false;
}
}
else
{
return false;
}
}
catch (ManagementException err)
{
Logger.Log(TraceLevel.Error,
"MbbDaliGsmDevice SetDns : " +
"An exception occurred while trying to set the DNS: "
+ err.Message);
}
}
return true;
}
However, when I use the method to set the DNS servers on an active connection I get error code 91: Access Denied.
I have been unable to find out any information about why access is denied to the network adapter, or what I can do to get access. Can anyone help?
Thanks