我想使用 c# 连接到 ActiveDirectory。
我需要能够连接到只能使用 IP 地址(我有)解决的 DC。
下一步是在 DC 地址租约中找到一台计算机,以解析用户输入的计算机名的 IP 地址。
有人可以给我一个提示吗?
我应该使用
DirectoryEntry directoryEntry = new DirectoryEntry("LDAP://DC-IpAddress");
directoryEntry.Path = "LDAP://(What should I enter here for "Address Leases"?);
然后我需要一个返回值,它给我目标计算机的 IP 地址。
希望大家能帮帮我一点。
仅供参考:DHCP 服务器安装在目标 DC 上。以防万一 ;)