The fields (or attributes) listed below cannot be synchronized and used within Exclaimer.
NOTE: The attributes listed in the table below are limited to a number of common attributes that are multi-valued.
For more information, see steps on how to check if an attribute is multi-valued or not.
For more information, see steps on how to check if an attribute is multi-valued or not.
| 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:
- Open Windows Powershell on a domain controller.
-
To import the Active Directory module:
Import-Module -Name ActiveDirectory
-
To set the schema path to search:
$schemaPath = (Get-ADRootDSE).schemaNamingContext
-
To check if the attribute is multi-valued:
Get-ADObject -filter * -SearchBase $schemaPath -Properties * | where lDAPDisplayName -like "<attribute name" | Select lDAPDisplayName,isSingleValuedFor 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.