如何通过 C# 确定您的 AD/AM 实例是否已启动并正在运行?
我看到了一个链接来了解 AD 是否正在运行,但我不太确定这是否适用于 AD/AM。 需要注意的是,假设我有权限,我应该能够检查任何 AD/AM 实例(任何域)。
I saw a link to find out if AD was running, but am not too sure if the same applies to AD/AM.
One caveat is that I should be able to check about any AD/AM instance (any domain) assuming I have permissions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
同样的方法适用于 AD 或 AD LDS(轻量级目录服务,ADAM 的新名称)。 .NET 示例位于 http://msdn.microsoft.com /en-us/library/x8wxt72e(VS.71).aspx
the same approach applies to AD or to AD LDS (lightweight directory services, new name for ADAM). .NET examples at http://msdn.microsoft.com/en-us/library/x8wxt72e(VS.71).aspx
针对 AD/AM 和 AD 执行 LDAP 查询在功能上非常接近。 您只需要在绑定字符串中包含 DNS 前缀以及端口(如果它不是默认的 389):
一个主要的问题是 AD/AM 中默认缺少 RootDSE。 您可以手动添加它,但默认情况下您不能使用那些使用 LDAP://Server/RootDSE 语法的便捷搜索过滤器。
ADAM 实例由端口号分隔,因此您需要根据所需的实例指定端口。 您可以在服务器的 Windows 2008 注册表中找到它:
或者您可以执行命令行查询:
Performing LDAP queries against AD/AM and AD are very close in functionality. You just need to include a DNS prefix in your bind string as well as the port (if it's not the default 389):
One major pain is the default absence of RootDSE in AD/AM. You can add it manually but by default you can't use those handy search filters that use the LDAP://Server/RootDSE syntax.
The ADAM instances are separated by port numbers so you will need to indicate a port based on the instance you want. You can find this in the Windows 2008 registry of the server at:
or you could perform a command line query: