DNS Server Name?

  • Thread starter Thread starter Guest
  • Start date Start date
Using WMI:
(look for text wrap)

-- 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?
 
What about when the client is a smartphone?

I don't think WMI will work then?
 
Hmm, not sure in smartphone... Sorry.

What about when the client is a smartphone?

I don't think WMI will work then?
 

Ask a Question

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.

Ask a Question

Back
Top