ADSI 查询返回对象的父对象

发布于 2024-07-24 16:23:26 字数 287 浏览 4 评论 0原文

有谁知道我可以在 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 技术交流群。

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

发布评论

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

评论(1

强辩 2024-07-31 16:23:26

查看distinguishedName 属性,并丢弃第一个分隔逗号之前的所有内容。 这将是父对象的 DistinguishedName(顺便说一下,它可能不是 OU,它可能是容器或其他类型的对象)

下面是一个从子 DistinguishedName 获取父 DistinguishedName 的函数。 它处理包含转义逗号的distinguishedName 值。
公共字符串 GetParent(字符串 sDistinguishedName)
{
int iPos = sDistinguishedName.IndexOf(',');

    if (iPos > 0)
    {
        while (iPos > -1)
        {
            //go back from iPos to find all slashes.
            int iFound = 0;
            for (int iSearch = iPos - 1; iPos >= 0 && sDistinguishedName[iSearch] == '\\'; iSearch--)
            {
                iFound++;
            }

            if (iFound % 2 == 0)
            {
                return sDistinguishedName.Substring(iPos + 1, sDistinguishedName.Length - iPos - 1);
            }
            else
            {
                iPos = sDistinguishedName.IndexOf(',', iPos + 1);
            }
        }
    }

    return sDistinguishedName;
}

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(',');

    if (iPos > 0)
    {
        while (iPos > -1)
        {
            //go back from iPos to find all slashes.
            int iFound = 0;
            for (int iSearch = iPos - 1; iPos >= 0 && sDistinguishedName[iSearch] == '\\'; iSearch--)
            {
                iFound++;
            }

            if (iFound % 2 == 0)
            {
                return sDistinguishedName.Substring(iPos + 1, sDistinguishedName.Length - iPos - 1);
            }
            else
            {
                iPos = sDistinguishedName.IndexOf(',', iPos + 1);
            }
        }
    }

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