ADSI 查询返回对象的父对象
有谁知道我可以在 ADSI 查询中查询什么属性来返回对象的父 OU? 我知道我可以绑定到 AD 对象,然后使用 object.Parent 返回它的父 OU,但是如果我在 ADSI 查询中请求“parent”,它会作为无效查询返回,除非绝对必要,否则我宁愿不进行绑定。
(即 “从 'LDAP://DC=Contoso,DC=COM' WHERE objectCategory='group' 中选择 sAMAccountName、distinguishedName、objectSid、groupType”
)
Does anyone know what property I can query for in an ADSI query that would return the object's parent OU? I know I can bind to the AD object and then use object.Parent to return it's parent OU, but if I ask for "parent" in a ADSI query it returns back as a invalid query I would rather not do bind unless absolutely necessary.
(i.e. "SELECT sAMAccountName, distinguishedName, objectSid, groupType FROM 'LDAP://DC=Contoso,DC=COM' WHERE objectCategory='group'"
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看distinguishedName 属性,并丢弃第一个分隔逗号之前的所有内容。 这将是父对象的 DistinguishedName(顺便说一下,它可能不是 OU,它可能是容器或其他类型的对象)
下面是一个从子 DistinguishedName 获取父 DistinguishedName 的函数。 它处理包含转义逗号的distinguishedName 值。
公共字符串 GetParent(字符串 sDistinguishedName)
{
int iPos = sDistinguishedName.IndexOf(',');
Look at the distinguishedName property, and discard anything before the first delimiting comma. That will be the distinguishedName of the parent object (which may not be an OU by the way, it could potentially be a container or other type of object)
Here's a function to get the parent distinguishedName from a child distinguishedName. It handles distinguishedName values that contain escaped commas.
public string GetParent(string sDistinguishedName)
{
int iPos = sDistinguishedName.IndexOf(',');