1

我已经知道如何搜索广告,但是为了获得搜索结果,我的搜索必须准确。我不能只做精确的。问题是我必须根据电话号码查找用户,而这些可以用与输入它们的人一样多的格式编写。我的输入始终是 MSISDN,只是数字,中间没有空格或多余的字符,AD 中的字段绝非如此简单。

如何在不检索所有用户的情况下搜索此类号码并在软件中进行扫描。

例如,我正在查看“mobile”和“telephoneNumber”字段。

例如,AD 中的数字可能是“+45 12 34 56 78”或“(555) 1234”,尽管后者几乎没有资格作为有效的 MSISDN,但想法是一样的,从计算机上看到的各种疯狂看法。如果我查找所有用户,我可以通过删除所有非数字来生成 MSISDN,但我怀疑如果我每次需要查找数字时都开始转储他们的整个 AD,企业是否会高兴。

示例代码:

        String domain = "example.com";
        String msisdn = "4512345678";

        // create your domain context
        PrincipalContext ctx = new PrincipalContext(ContextType.Domain, domain);

        DirectorySearcher ds = new DirectorySearcher(ctx.ConnectedServer);

        ds.Filter = String.Format("(mobile={0})", msisdn);

        ds.PropertiesToLoad.Add("cn");
        ds.PropertiesToLoad.Add("sn");
        ds.PropertiesToLoad.Add("name");
        ds.PropertiesToLoad.Add("mail");
        ds.PropertiesToLoad.Add("mobile");
        ds.PropertiesToLoad.Add("telephoneNumber");

        foreach (SearchResult de in ds.FindAll())
        {
            Console.WriteLine("");
            foreach (String key in de.Properties.PropertyNames)
            {

                Console.WriteLine("{0}: {1}", key.PadRight(30, '.'), de.Properties[key].Count);
                int i = 1;
                foreach (String prop in de.Properties[key])
                {
                    Console.WriteLine("{0}: {1}", (String.Format("[{0}]", (i++)).PadLeft(30, ' ')), prop);
                }
            }
            Console.WriteLine("");
        }
4

1 回答 1

2

您可以将通配符放入过滤器中。我有一个类似的程序,我在其中搜索名称以输出电话号码。

我这样过滤:

static SearchResultCollection GetUsers(string target)
    {
        DirectoryEntry domain = new DirectoryEntry(<removed fqdn>);
        DirectorySearcher searcher = new DirectorySearcher(domain);
        searcher.Filter = "(&(objectClass=User)(displayName=*" + target + "*))";
        searcher.Sort = new SortOption("displayName", SortDirection.Ascending);
        return searcher.FindAll();
    }
于 2012-04-26T17:56:09.097 回答