我知道要获取 Active Directory 服务器的专有名称:
DirectoryEntry nRoot = new DirectoryEntry("LDAP://localhost:389");//this for OpenLDAP
string dnPath = nRoot.Properties["distinguishedName"].Value.ToString();
我收到“指定了无效的 dn 语法”的错误
尽管如果使用 AD 服务器 IP 而不是 localhost:389 尝试相同的代码,它会完美运行。
任何想法?
谢谢!