0

AD 中的某些字段具有多个值的“其他”选项: AD 字段屏幕截图

我尝试使用以下代码向该字段添加新值:

 if (Domaincontact.Telephones.Faxes != null)
   {
     foreach (var fax in Domaincontact.Telephones.Faxes)
       {
        if(activeDirectoryContact.Properties[FAX].Contains(fax)) continue;
            activeDirectoryContact.Properties[FAX].Add(fax);
        }
    }
 activeDirectoryContact.CommitChanges();

但是在最后一行代码之后有一个异常:

ExtendedErrorMessage = "00002081: AtrErr: DSID-031517FA, #2:\n\t0: 00002081: DSID-031517FA, problem 1005 (CONSTRAINT_ATT_TYPE), data 0, Att 17 (facsimileTelephoneNumber)\n\t1: 00002081: DSID-031517FA, problem 1005 (CONSTRAINT_ATT_TYPE), data 0, Att 17 (facsimileTelephoneNumber)\n"

AD有什么问题?;D 有人可以告诉我我错过了什么吗?

4

1 回答 1

0

好的。我自己想通了。这里是指向AD 字段描述的链接。在我的情况下,它将是:

otherFacsimileTelephoneNumber

和别的:

otherHomePhone otherIpPhone otherLoginWorkstations otherMailbox otherMobile otherPager otherTelephone

于 2015-11-05T10:22:29.227 回答