Я пытаюсь подключиться к Active Directory
(2003), чтобы обновить поле Mobile #, которое появляется в адресной книге OutLook
, как на прикрепленном изображении ниже.
Я могу прочитать большинство полей, используя приведенный ниже код, но поля otherTelephone
, mobile
, otherMobile
не найдены. В чем причина?
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;
}