无法从 Active Directory 读取手机号字段

Unable to read Mobile # field from Active Directory

我正在尝试连接到 Active Directory (2003) 以更新显示在 OutLook 通讯录中的手机号码字段,如下图所示。

我可以使用下面的代码读取大部分字段,但找不到 otherTelephonemobileotherMobile 字段。这是什么原因?

static void Main(string[] args)
    {
        Console.Write("Enter user      : ");
        String username = Console.ReadLine();

        try
        {
            DirectoryEntry myLdapConnection = createDirectoryEntry();

            DirectorySearcher search = new DirectorySearcher(myLdapConnection,);
            search.Filter = "(sAMAccountName=" + username + ")";
            search.PropertiesToLoad.Add("title");
            search.PropertiesToLoad.Add("street");
            search.PropertiesToLoad.Add("department");
            search.PropertiesToLoad.Add("mail");
            search.PropertiesToLoad.Add("manager");
            search.PropertiesToLoad.Add("telephoneNumber");
            search.PropertiesToLoad.Add("otherTelephone");
            search.PropertiesToLoad.Add("mobile");
            search.PropertiesToLoad.Add("otherMobile");


            SearchResult result = search.FindOne();

            if (result != null)
            {
                DirectoryEntry entryToUpdate = result.GetDirectoryEntry();
                Console.WriteLine("Current title   : " + entryToUpdate.Properties["title"][0].ToString());

                //Console.Write("\n\nEnter new title : ");
                //String newTitle = Console.ReadLine();
                //entryToUpdate.Properties["title"].Value = newTitle;
                //entryToUpdate.CommitChanges();
                //Console.WriteLine("\n\n...new title saved");
                Console.ReadLine();
            }

            else Console.WriteLine("User not found!");
        }

        catch (Exception e)
        {
            Console.WriteLine("Exception caught:\n\n" + e.ToString());
        }
    }

    static DirectoryEntry createDirectoryEntry()
    {
        // create and return new LDAP connection with desired settings  
        DirectoryEntry ldapConnection = new DirectoryEntry("abc.ca");
        ldapConnection.Path = "LDAP://OU=staffusers,DC=leeds-art,DC=ac,DC=uk";
        ldapConnection.AuthenticationType = AuthenticationTypes.Secure;
        return ldapConnection;
    }

我认为您的问题是某些(阅读最多的)属性默认情况下不会在对象上设置,它们仅在第一次设置值时针对该对象存在。您需要更新代码以处理根本不存在的值,并假设这意味着它没有设置值。

您可以通过 运行 针对特定用户的查询来测试这一点,观察是否缺少 mobile 属性,然后向该字段添加一个值,然后将其删除。然后您应该会看到 属性 从那时起就包含在该用户的列表中。