The fields (or attributes) listed below cannot be synchronized and used within Exclaimer.

LDAP Name Display Name
accountNameHistory
allowedAttributes
allowedAttributesEffective
allowedChildClasses
allowedChildClassesEffective
altSecurityIdentities
bridgeheadServerListBL
canonicalName
controlAccessRights
defaultClassStore
description Description
destinationIndicator
directReports Direct Reports
dSCorePropagationData
extensionName
fromEntry
frsComputerReferenceBL
fRSMemberReferenceBL
groupPriority
internationalISDNNumber International ISDN Number (Others)
isPrivilegeHolder
lmPwdHistory
localeID
managedObjects
masteredBy
memberOf Group Membership
mhsORAddress
mSMQDigests
mSMQDigestsMig
msNPCallingStationID
msNPSavedCallingStationID
msRADIUSFramedRoute
msRASSavedFramedRoute
networkAddress
nonSecurityMemberBL
ntPwdHistory
o
objectClass
otherFacsimileTelephoneNumber Fax Number (Others)
otherHomePhone Home Phone (Others)
otherIpPhone IP Phone Number (Others)
otherLoginWorkstations
otherMailbox E-Mail Address (Others)
otherMobile Mobile Number (Others)
otherPager Pager Number (Others)
otherTelephone Phone Number (Others)
otherWellKnownObjects
ou
possibleInferiors
postalAddress
postOfficeBox Post Office Box
preferredDeliveryMethod
proxyAddresses
queryPolicyBL
registeredAddress
repsFrom
repsTo
seeAlso
servicePrincipalName
showInAddressBook
sIDHistory
siteObjectBL
subRefs
subSchemaSubEntry
supplementalCredentials
teletexTerminalIdentifier
telexNumber Telex Number (Others)
tokenGroups
tokenGroupsGlobalAndUniversal
tokenGroupsNoGCAcceptable
url Web Page Address (Others)
userCertificate
userPassword
userSharedFolderOther
userSMIMECertificate
wbemPath
wellKnownObjects
x121Address

Please click on the required option listed below to go through the detailed description:

To check if an attribute is multi-valued or not

To check if an attribute is multi-valued or not, run the following Powershell commands:

  1. Open Windows Powershell on a domain controller.
  2. To import the Active Directory module:

    Import-Module -Name ActiveDirectory

  3. To set the schema path to search:

    $schemaPath = (Get-ADRootDSE).schemaNamingContext

  4. To check if the attribute is multi-valued:

    Get-ADObject -filter * -SearchBase $schemaPath -Properties * | where lDAPDisplayName -like "<attribute name" | Select lDAPDisplayName,isSingleValued

    For example:

    Get-ADObject -filter * -SearchBase $schemaPath -Properties * | where lDAPDisplayName -like "labeledURI" | Select lDAPDisplayName,isSingleValued

    If the isSingleValued property is False, this means the attribute is a multi-value attribute.