Hi All,
I want to How I can get Domain Controller IP address programatically using C#, anyone tried that?
Thanks
|
|
Hi All, I want to How I can get Domain Controller IP address programatically using C#, anyone tried that? Thanks
|
||
|
|
|
|
Here's how I would do it. You'll need to use System.Net and System.DirectoryServices.
|
||
|
|
|
|
Well here is the general workflow of how to get it as described at the MS site: http://support.microsoft.com/kb/247811 Here is the link from PInvoke.net to call the referenced DsGetDcName function: http://pinvoke.net/default.aspx/netapi32/DsGetDcName.html You could go down and dirty and do a raw DNS A Record query as described in the first link, but I think the PInvoke call should do the trick. Hope that helps, Mike |
||
|
|
|
Thanks All, I done it as in this code
Thanks again |
||
|
|