-- Code Start --
ManagementObjectSearcher mos = new ManagementObjectSearcher ("SELECT
DNSServerSearchOrder FROM Win32_NetworkAdapterConfiguration");
foreach (ManagementObject mo in mos.Get())
{
if (mo["DNSServerSearchOrder"] != null)
{
foreach (string s in (string[])(mo["DNSServerSearchOrder"]))
{
Console.WriteLine (s);
}
}
}
-- Code End --
How can I identify which DNS Server a machine is using in vb.net?
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.