如何通过 C# 确定您的 AD/AM 实例是否已启动并正在运行?

发布于 2024-07-11 00:34:04 字数 89 浏览 8 评论 0原文

我看到了一个链接来了解 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冬天旳寂寞 2024-07-18 00:34:04

同样的方法适用于 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

薆情海 2024-07-18 00:34:04

针对 AD/AM 和 AD 执行 LDAP 查询在功能上非常接近。 您只需要在绑定字符串中包含 DNS 前缀以及端口(如果它不是默认的 389):

LDAP://ADAMServer:50000/DC=domain,DC=local

一个主要的问题是 AD/AM 中默认缺少 RootDSE。 您可以手动添加它,但默认情况下您不能使用那些使用 LDAP://Server/RootDSE 语法的便捷搜索过滤器。

ADAM 实例由端口号分隔,因此您需要根据所需的实例指定端口。 您可以在服务器的 Windows 2008 注册表中找到它:

HKLM\SYSTEM\CurrentControlSet\Services\ADAM_InstanceName\Parameters

或者您可以执行命令行查询:

c:\windows\adam\dsdbutil.exe "list instances"

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):

LDAP://ADAMServer:50000/DC=domain,DC=local

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:

HKLM\SYSTEM\CurrentControlSet\Services\ADAM_InstanceName\Parameters

or you could perform a command line query:

c:\windows\adam\dsdbutil.exe "list instances"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文