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

link|improve this question
do you run it elevated? – rene Jan 10 at 16:09
No. A quick test confirmed that this will run with elevated rights - unfortunately currently the specification for this project means I cannot have the application request elevated rights – pbtrn10k Jan 10 at 16:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.