Using C# I want to determine which DC (or at least which Site) the Exchange Server I am programming against is using.

I have a "User creation tool" and if it creates the user on a DC on the local site and then tries to enable the user on a DC in the Exchange server's site (Exchange 2010 remote ps cmdlet) it will error with the "object not found" since replication hasn't happened. If I ensure that I get the same DC as the server, then I won't have that problem.

basically a C# way of doing nltest /DSGETDC on the remote exchange server would be perfect

Thanks for your insight.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

You can try the native API DsGetDcName from C# using pinvoke code.

link|improve this answer
Looks like this might do it. It seems I can tell it the computer to ask and all. Thanks! – Brian Hampson Dec 20 '11 at 20:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.