如何确定远程 Exchange 服务器正在使用的 DC?
使用 C#,我想确定我正在编程的 Exchange Server 正在使用哪个 DC(或至少是哪个站点)。
我有一个“用户创建工具”,如果它在本地站点的 DC 上创建用户,然后尝试在 Exchange 服务器站点的 DC 上启用该用户(Exchange 2010 远程 ps cmdlet),则会出现错误并显示“object未找到”,因为复制尚未发生。如果我确保获得与服务器相同的 DC,那么我就不会遇到这个问题。
基本上,在远程交换服务器上执行 nltest /DSGETDC 的 C# 方法将是完美的,
感谢您的见解。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试本机 API DsGetDcName 从 C# 使用 pinvoke 代码。
You can try the native API DsGetDcName from C# using pinvoke code.