diff --git a/ADMF/ADMF.psd1 b/ADMF/ADMF.psd1 index dbd4501..8576923 100644 --- a/ADMF/ADMF.psd1 +++ b/ADMF/ADMF.psd1 @@ -3,7 +3,7 @@ RootModule = 'ADMF.psm1' # Version number of this module. - ModuleVersion = '1.13.108' + ModuleVersion = '1.13.110' # ID used to uniquely identify this module GUID = '43f2a890-942f-4dd7-bad0-b774b44ea849' @@ -33,8 +33,8 @@ @{ ModuleName = 'Principal'; ModuleVersion = '1.0.0' } @{ ModuleName = 'ADMF.Core'; ModuleVersion = '1.1.9' } @{ ModuleName = 'DCManagement'; ModuleVersion = '1.2.25' } - @{ ModuleName = 'DomainManagement'; ModuleVersion = '1.9.218' } - @{ ModuleName = 'ForestManagement'; ModuleVersion = '1.5.79' } + @{ ModuleName = 'DomainManagement'; ModuleVersion = '1.9.228' } + @{ ModuleName = 'ForestManagement'; ModuleVersion = '1.5.81' } ) # Assemblies that must be loaded prior to importing this module diff --git a/ADMF/bin/ADMF.dll b/ADMF/bin/ADMF.dll index 2481fde..61235e1 100644 Binary files a/ADMF/bin/ADMF.dll and b/ADMF/bin/ADMF.dll differ diff --git a/ADMF/bin/ADMF.pdb b/ADMF/bin/ADMF.pdb index 17c55c9..8e26915 100644 Binary files a/ADMF/bin/ADMF.pdb and b/ADMF/bin/ADMF.pdb differ diff --git a/ADMF/changelog.md b/ADMF/changelog.md index 435300d..67245a9 100644 --- a/ADMF/changelog.md +++ b/ADMF/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 1.13.110 (2025-10-02) + +- Upd: Invoke-AdmfForest - reordered sequence to prioritize formal schema updates over custom extensions. +- Upd: Test-AdmfForest - added "SchemaManage" option, to trigger additional test results for schema attributes that exist in schema but have no configuration. + ## 1.13.108 (2025-05-28) - New: DefaultGroupMemberships - Added default groupmemberships as a Component diff --git a/ADMF/functions/Invoke-AdmfForest.ps1 b/ADMF/functions/Invoke-AdmfForest.ps1 index a18b3a6..f7dc584 100644 --- a/ADMF/functions/Invoke-AdmfForest.ps1 +++ b/ADMF/functions/Invoke-AdmfForest.ps1 @@ -108,7 +108,31 @@ Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'Server Site Assignment', $parameters.Server Invoke-FMServer @parameters } - if ($newOptions -band [UpdateForestOptions]::Schema) { + if ($newOptions -band [UpdateForestOptions]::ForestLevel) { + if (Get-FMForestLevel) { + Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'ForestLevel', $parameters.Server + Invoke-FMForestLevel @parameters + } + else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'ForestLevel' } + } + if ($newOptions -band [UpdateForestOptions]::SchemaLdif) { + if (Get-FMSchemaLdif) { + Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'Schema (Ldif)', $parameters.Server + Invoke-FMSchemaLdif @parameters + } + else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'Schema (Ldif)' } + } + if ($newOptions -band [UpdateForestOptions]::ExchangeSchema) { + if (Get-FMExchangeSchema) { + Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'ExchangeSchema', $parameters.Server + Invoke-FMExchangeSchema @parameters + } + else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'ExchangeSchema' } + } + if ( + ($newOptions -band [UpdateForestOptions]::Schema) -or + ($newOptions -band [UpdateForestOptions]::SchemaManage) + ) { if (Get-FMSchema) { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'Schema (Custom)', $parameters.Server Invoke-FMSchema @parameters @@ -122,13 +146,6 @@ } else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'Schema Default Permissions' } } - if ($newOptions -band [UpdateForestOptions]::SchemaLdif) { - if (Get-FMSchemaLdif) { - Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'Schema (Ldif)', $parameters.Server - Invoke-FMSchemaLdif @parameters - } - else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'Schema (Ldif)' } - } if ($newOptions -band [UpdateForestOptions]::NTAuthStore) { if (Get-FMNTAuthStore) { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'NTAuthStore', $parameters.Server @@ -143,20 +160,6 @@ } else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'Certificate' } } - if ($newOptions -band [UpdateForestOptions]::ForestLevel) { - if (Get-FMForestLevel) { - Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'ForestLevel', $parameters.Server - Invoke-FMForestLevel @parameters - } - else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'ForestLevel' } - } - if ($newOptions -band [UpdateForestOptions]::ExchangeSchema) { - if (Get-FMExchangeSchema) { - Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Executing.Invoke' -StringValues 'ExchangeSchema', $parameters.Server - Invoke-FMExchangeSchema @parameters - } - else { Write-PSFMessage -Level Host -String 'Invoke-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'ExchangeSchema' } - } } catch { Write-Error $_ diff --git a/ADMF/functions/Test-AdmfForest.ps1 b/ADMF/functions/Test-AdmfForest.ps1 index e3f2b5c..1755480 100644 --- a/ADMF/functions/Test-AdmfForest.ps1 +++ b/ADMF/functions/Test-AdmfForest.ps1 @@ -92,10 +92,15 @@ Write-PSFMessage -Level Host -String 'Test-AdmfForest.Executing.Test' -StringValues 'Server Site Assignment', $parameters.Server Test-FMServer @parameters } - if ($newOptions -band [UpdateForestOptions]::Schema) { + if ( + ($newOptions -band [UpdateForestOptions]::Schema) -or + ($newOptions -band [UpdateForestOptions]::SchemaManage) + ) { if (Get-FMSchema) { + $manageParam = @{} + if ($newOptions -band [UpdateForestOptions]::SchemaManage) { $manageParam.ReportUnconfigured = $true } Write-PSFMessage -Level Host -String 'Test-AdmfForest.Executing.Test' -StringValues 'Schema (Custom)', $parameters.Server - Test-FMSchema @parameters + Test-FMSchema @parameters @manageParam } else { Write-PSFMessage -Level Host -String 'Test-AdmfForest.Skipping.Test.NoConfiguration' -StringValues 'Schema (Custom)' } } diff --git a/ADMF/internal/components/ExchangeDefaults/forest/schema/msExchangeDefault.psd1 b/ADMF/internal/components/ExchangeDefaults/forest/schema/msExchangeDefault.psd1 new file mode 100644 index 0000000..0a6c45b --- /dev/null +++ b/ADMF/internal/components/ExchangeDefaults/forest/schema/msExchangeDefault.psd1 @@ -0,0 +1,37719 @@ +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Activation-Schedule' + lDAPDisplayName = 'activationSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Activation-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Activation-Schedule' + OID = '1.2.840.113556.1.2.213' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Activation-Style' + lDAPDisplayName = 'activationStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Activation-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Activation-Style' + OID = '1.2.840.113556.1.2.73' +} +@{ + AttributeSyntax = '2.5.5.4' + AdminDisplayName = 'Address-Type' + LdapDisplayName = 'addressType' + OMSyntax = 20 + MayBeContainedIn = @( + 'ms-Exch-Replication-Connector' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Address-Type' + Optional = $True + IsDefunct = $False + AdminDescription = 'Address-Type' + OID = '1.2.840.113556.1.2.350' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-ADMD' + lDAPDisplayName = 'aDMD' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ADMD' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ADMD' + OID = '1.2.840.113556.1.2.232' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Admin-Display-Name' + LdapDisplayName = 'adminDisplayName' + OMSyntax = 64 + MayBeContainedIn = @( + 'ms-Exch-MDB' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Admin-Display-Name' + Optional = $True + IsDefunct = $False + AdminDescription = 'Admin-Display-Name' + OID = '1.2.840.113556.1.2.194' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-Extension-DLL' + lDAPDisplayName = 'adminExtensionDLL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Extension-DLL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Extension-DLL' + OID = '1.2.840.113556.1.2.95' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Alt-Recipient' + lDAPDisplayName = 'altRecipient' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Alt-Recipient' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alt-Recipient' + OID = '1.2.840.113556.1.2.126' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Alt-Recipient-BL' + lDAPDisplayName = 'altRecipientBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alt-Recipient-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Alt-Recipient-BL' + OID = '1.2.840.113556.1.2.294' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Alt-Security-Identities' + OID = '1.2.840.113556.1.4.867' + Optional = $True + LdapDisplayName = 'altSecurityIdentities' + MustBeContainedIn = @( + ) + Name = 'Alt-Security-Identities' + PartialAttributeSet = $True + MayBeContainedIn = @( + ) + AdminDisplayName = 'Alt-Security-Identities' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 9 +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Anonymous-Access' + lDAPDisplayName = 'anonymousAccess' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Anonymous-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Anonymous-Access' + OID = '1.2.840.113556.1.2.482' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Anonymous-Account' + lDAPDisplayName = 'anonymousAccount' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Anonymous-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Anonymous-Account' + OID = '1.2.840.113556.1.2.561' +} +@{ + AttributeSyntax = '2.5.5.1' + AdminDisplayName = 'Assistant' + LdapDisplayName = 'assistant' + OMSyntax = 127 + MayBeContainedIn = @( + 'Mail-Recipient' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Assistant' + Optional = $True + IsDefunct = $False + AdminDescription = 'Assistant' + OID = '1.2.840.113556.1.4.652' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Association-Lifetime' + lDAPDisplayName = 'associationLifetime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Association-Lifetime' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Association-Lifetime' + OID = '1.2.840.113556.1.2.149' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Assoc-Remote-DXA' + lDAPDisplayName = 'assocRemoteDXA' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Assoc-Remote-DXA' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Assoc-Remote-DXA' + OID = '1.2.840.113556.1.2.299' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Attribute-Certificate' + lDAPDisplayName = 'attributeCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Attribute-Certificate' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Attribute-Certificate' + OID = '1.2.840.113556.1.2.587' +} +@{ + attributeSyntax = '2.5.5.7' + adminDisplayName = 'ms-Exch-Auth-Orig' + lDAPDisplayName = 'authOrig' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Auth-Orig' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-Orig' + OID = '1.2.840.113556.1.2.129' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Auth-Orig-BL' + lDAPDisplayName = 'authOrigBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Auth-Orig-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-Orig-BL' + OID = '1.2.840.113556.1.2.290' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Authorized-Domain' + lDAPDisplayName = 'authorizedDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authorized-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authorized-Domain' + OID = '1.2.840.113556.1.2.202' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Authorized-Password' + lDAPDisplayName = 'authorizedPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authorized-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authorized-Password' + OID = '1.2.840.113556.1.2.193' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Authorized-User' + lDAPDisplayName = 'authorizedUser' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authorized-User' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authorized-User' + OID = '1.2.840.113556.1.2.276' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-AutoReply' + lDAPDisplayName = 'autoReply' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-AutoReply' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-AutoReply' + OID = '1.2.840.113556.1.2.286' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-AutoReply-Message' + lDAPDisplayName = 'autoReplyMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-AutoReply-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-AutoReply-Message' + OID = '1.2.840.113556.1.2.287' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Available-Authorization-Packages' + lDAPDisplayName = 'availableAuthorizationPackages' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Available-Authorization-Packages' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Available-Authorization-Packages' + OID = '1.2.840.113556.1.2.476' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Available-Distributions' + lDAPDisplayName = 'availableDistributions' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Available-Distributions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Available-Distributions' + OID = '1.2.840.113556.1.2.486' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bridgehead-Servers' + lDAPDisplayName = 'bridgeheadServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Bridgehead-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bridgehead-Servers' + OID = '1.2.840.113556.1.2.463' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Business-Roles' + lDAPDisplayName = 'businessRoles' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Business-Roles' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Business-Roles' + OID = '1.2.840.113556.1.2.105' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + Optional = $True + AdminDescription = 'Country-Name' + AdminDisplayName = 'Country-Name' + OID = '2.5.4.6' + LdapDisplayName = 'c' + IsDefunct = $False + Name = 'Country-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-Mail-Gateway' + ) + MustBeContainedIn = @( + ) + OMSyntax = 64 + SearchFlags = 16 +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Can-Preserve-DNs' + lDAPDisplayName = 'canPreserveDNs' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Can-Preserve-DNs' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Can-Preserve-DNs' + OID = '1.2.840.113556.1.2.455' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Certificate-Chain-V3' + lDAPDisplayName = 'certificateChainV3' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Certificate-Chain-V3' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Certificate-Chain-V3' + OID = '1.2.840.113556.1.2.562' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Certificate-Revocation-List-V1' + lDAPDisplayName = 'certificateRevocationListV1' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Certificate-Revocation-List-V1' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Certificate-Revocation-List-V1' + OID = '1.2.840.113556.1.2.564' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Certificate-Revocation-List-V3' + lDAPDisplayName = 'certificateRevocationListV3' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Certificate-Revocation-List-V3' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Certificate-Revocation-List-V3' + OID = '1.2.840.113556.1.2.563' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Character-Set' + lDAPDisplayName = 'characterSet' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Character-Set' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Character-Set' + OID = '1.2.840.113556.1.2.480' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Character-Set-List' + lDAPDisplayName = 'characterSetList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Character-Set-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Character-Set-List' + OID = '1.2.840.113556.1.2.477' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Client-Access-Enabled' + lDAPDisplayName = 'clientAccessEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Client-Access-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Client-Access-Enabled' + OID = '1.2.840.113556.1.2.559' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Clock-Alert-Offset' + lDAPDisplayName = 'clockAlertOffset' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Clock-Alert-Offset' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Clock-Alert-Offset' + OID = '1.2.840.113556.1.2.165' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Clock-Alert-Repair' + lDAPDisplayName = 'clockAlertRepair' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Clock-Alert-Repair' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Clock-Alert-Repair' + OID = '1.2.840.113556.1.2.164' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Clock-Warning-Offset' + lDAPDisplayName = 'clockWarningOffset' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Clock-Warning-Offset' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Clock-Warning-Offset' + OID = '1.2.840.113556.1.2.177' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Clock-Warning-Repair' + lDAPDisplayName = 'clockWarningRepair' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Clock-Warning-Repair' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Clock-Warning-Repair' + OID = '1.2.840.113556.1.2.166' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Common-Name' + OID = '2.5.4.3' + Optional = $True + LdapDisplayName = 'cn' + MustBeContainedIn = @( + 'documentSeries' + 'groupOfUniqueNames' + 'ms-Print-ConnectionPolicy' + 'room' + 'IpService' + 'IpProtocol' + 'OncRpc' + 'IpNetwork' + 'NisNetgroup' + 'NisMap' + 'NisObject' + 'ms-Exch-Add-In' + 'ms-Exch-Addr-Type' + 'ms-Exch-Admin-Extension' + 'ms-Exch-DXA-Site-Server' + 'ms-Exch-MHS-Monitoring-Config' + 'ms-Exch-MTA-Cfg' + 'ms-Exch-Protocol-Cfg' + 'ms-Exch-Protocol-Cfg-Shared' + 'ms-Exch-Remote-DXA' + 'ms-Exch-Site-Addressing' + 'ms-Exch-Storage-Group' + 'ms-Exch-Encryption-Cfg' + 'ms-Exch-Information-Store' + 'ms-Exch-MDB' + 'ms-Exch-MTA' + 'ms-Exch-Transport-Stack' + 'ms-Exch-Mail-Gateway' + 'ms-Exch-Site-Connector' + ) + Name = 'Common-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'document' + 'rFC822LocalPart' + 'PosixAccount' + 'PosixGroup' + 'IpHost' + 'IEEE802Device' + 'BootableDevice' + ) + AdminDisplayName = 'Common-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 1 +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Text-Country' + LdapDisplayName = 'co' + OMSyntax = 64 + MayBeContainedIn = @( + 'ms-Exch-Public-Folder' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Text-Country' + Optional = $True + IsDefunct = $False + AdminDescription = 'Text-Country' + OID = '1.2.840.113556.1.2.131' + MustBeContainedIn = @( + 'friendlyCountry' + ) +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Company' + LdapDisplayName = 'company' + OMSyntax = 64 + MayBeContainedIn = @( + 'Mail-Recipient' + 'ms-Exch-Public-Folder' + ) + SearchFlags = 17 + AdvancedView = $True + Name = 'Company' + Optional = $True + IsDefunct = $False + AdminDescription = 'Company' + OID = '1.2.840.113556.1.2.146' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Compromised-Key-List' + lDAPDisplayName = 'compromisedKeyList' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Compromised-Key-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Compromised-Key-List' + OID = '1.2.840.113556.1.2.542' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Computer-Name' + lDAPDisplayName = 'computerName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Computer-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Computer-Name' + OID = '1.2.840.113556.1.2.20' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Connected-Domains' + lDAPDisplayName = 'connectedDomains' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Connected-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Connected-Domains' + OID = '1.2.840.113556.1.2.211' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Connection-List-Filter' + lDAPDisplayName = 'connectionListFilter' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Connection-List-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Connection-List-Filter' + OID = '1.2.840.113556.1.2.475' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Connection-List-Filter-Type' + lDAPDisplayName = 'connectionListFilterType' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Connection-List-Filter-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Connection-List-Filter-Type' + OID = '1.2.840.113556.1.2.526' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Container-Info' + lDAPDisplayName = 'containerInfo' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Container-Info' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Container-Info' + OID = '1.2.840.113556.1.2.296' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Type' + lDAPDisplayName = 'contentType' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Type' + OID = '1.2.840.113556.1.2.481' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Control-Msg-Folder-ID' + lDAPDisplayName = 'controlMsgFolderID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Msg-Folder-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Msg-Folder-ID' + OID = '1.2.840.113556.1.2.483' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Control-Msg-Rules' + lDAPDisplayName = 'controlMsgRules' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Msg-Rules' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Msg-Rules' + OID = '1.2.840.113556.1.2.485' +} +@{ + AttributeSyntax = '2.5.5.9' + AdminDisplayName = 'Cost' + LdapDisplayName = 'cost' + OMSyntax = 2 + MayBeContainedIn = @( + 'ms-Exch-Site-Connector' + 'ms-Exch-Routing-Group-Connector' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Cost' + Optional = $True + IsDefunct = $False + AdminDescription = 'Cost' + OID = '1.2.840.113556.1.2.135' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Cross-Certificate-CRL' + lDAPDisplayName = 'crossCertificateCRL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Cross-Certificate-CRL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Cross-Certificate-CRL' + OID = '1.2.840.113556.1.2.565' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Default-Message-Format' + lDAPDisplayName = 'defaultMessageFormat' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Message-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Message-Format' + OID = '1.2.840.113556.1.2.572' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Delegate-User' + lDAPDisplayName = 'delegateUser' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Delegate-User' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Delegate-User' + OID = '1.2.840.113556.1.2.591' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Deleted-Item-Flags' + lDAPDisplayName = 'deletedItemFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Deleted-Item-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Deleted-Item-Flags' + OID = '1.2.840.113556.1.2.106' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Deliv-Cont-Length' + lDAPDisplayName = 'delivContLength' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Deliv-Cont-Length' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Deliv-Cont-Length' + OID = '1.2.840.113556.1.2.138' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Deliv-EITs' + lDAPDisplayName = 'delivEITs' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Deliv-EITs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Deliv-EITs' + OID = '1.2.840.113556.1.2.139' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Deliver-And-Redirect' + lDAPDisplayName = 'deliverAndRedirect' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Deliver-And-Redirect' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Deliver-And-Redirect' + OID = '1.2.840.113556.1.2.190' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Delivery-Mechanism' + lDAPDisplayName = 'deliveryMechanism' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Delivery-Mechanism' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Delivery-Mechanism' + OID = '1.2.840.113556.1.2.241' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Deliv-Ext-Cont-Types' + lDAPDisplayName = 'delivExtContTypes' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Deliv-Ext-Cont-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Deliv-Ext-Cont-Types' + OID = '1.2.840.113556.1.2.140' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Department' + LdapDisplayName = 'department' + OMSyntax = 64 + MayBeContainedIn = @( + 'Mail-Recipient' + 'ms-Exch-Public-Folder' + ) + SearchFlags = 17 + AdvancedView = $True + Name = 'Department' + Optional = $True + IsDefunct = $False + AdminDescription = 'Department' + OID = '1.2.840.113556.1.2.141' + MustBeContainedIn = @( + ) +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Description' + OID = '2.5.4.13' + Optional = $True + LdapDisplayName = 'description' + MustBeContainedIn = @( + ) + Name = 'Description' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'account' + 'document' + 'documentSeries' + 'groupOfUniqueNames' + 'ms-DFSR-ReplicationGroup' + 'ms-DFSR-ContentSet' + 'rFC822LocalPart' + 'room' + 'PosixAccount' + 'ShadowAccount' + 'PosixGroup' + 'IpService' + 'IpProtocol' + 'OncRpc' + 'IpHost' + 'IpNetwork' + 'NisNetgroup' + 'NisMap' + 'NisObject' + 'ms-Exch-PF-Tree' + 'ms-Exch-Storage-Group' + 'ms-Exch-MDB' + ) + AdminDisplayName = 'Description' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 0 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Diagnostic-Reg-Key' + lDAPDisplayName = 'diagnosticRegKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Diagnostic-Reg-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Diagnostic-Reg-Key' + OID = '1.2.840.113556.1.2.189' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Disabled-Gateway-Proxy' + lDAPDisplayName = 'disabledGatewayProxy' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Disabled-Gateway-Proxy' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Disabled-Gateway-Proxy' + OID = '1.2.840.113556.1.2.541' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Display-Name' + OID = '1.2.840.113556.1.2.13' + Optional = $True + LdapDisplayName = 'displayName' + MustBeContainedIn = @( + ) + Name = 'Display-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'inetOrgPerson' + 'User' + 'ms-Exch-Active-Directory-Connector' + 'ms-Exch-Connection-Agreement' + 'ms-Exch-Schema-Map-Policy' + 'ms-Exch-PF-Tree' + 'ms-Exch-Storage-Group' + 'ms-Exch-Conference-Site' + 'ms-Exch-MDB' + 'ms-Exch-MRS-Request' + ) + AdminDisplayName = 'Display-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 5 +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-DL-Member-Rule' + lDAPDisplayName = 'dLMemberRule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Member-Rule' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DL-Member-Rule' + OID = '1.2.840.113556.1.2.330' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DL-Mem-Default' + lDAPDisplayName = 'dLMemDefault' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Mem-Default' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DL-Mem-Default' + OID = '1.2.840.113556.1.4.7000.102.12527' +} +@{ + attributeSyntax = '2.5.5.7' + adminDisplayName = 'ms-Exch-DL-Mem-Reject-Perms' + lDAPDisplayName = 'dLMemRejectPerms' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Mem-Reject-Perms' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DL-Mem-Reject-Perms' + OID = '1.2.840.113556.1.2.47' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DL-Mem-Reject-Perms-BL' + lDAPDisplayName = 'dLMemRejectPermsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Mem-Reject-Perms-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DL-Mem-Reject-Perms-BL' + OID = '1.2.840.113556.1.2.293' +} +@{ + attributeSyntax = '2.5.5.7' + adminDisplayName = 'ms-Exch-DL-Mem-Submit-Perms' + lDAPDisplayName = 'dLMemSubmitPerms' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Mem-Submit-Perms' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DL-Mem-Submit-Perms' + OID = '1.2.840.113556.1.2.144' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DL-Mem-Submit-Perms-BL' + lDAPDisplayName = 'dLMemSubmitPermsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-DL-Mem-Submit-Perms-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DL-Mem-Submit-Perms-BL' + OID = '1.2.840.113556.1.2.291' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-X500-NC' + lDAPDisplayName = 'dnQualifier' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X500-NC' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X500-NC' + OID = '1.2.840.113556.1.2.509' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Domain-Def-Alt-Recip' + lDAPDisplayName = 'domainDefAltRecip' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Def-Alt-Recip' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Def-Alt-Recip' + OID = '1.2.840.113556.1.2.145' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Domain-Name' + lDAPDisplayName = 'domainName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Name' + OID = '1.2.840.113556.1.2.147' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Do-OAB-Version' + lDAPDisplayName = 'doOABVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Do-OAB-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Do-OAB-Version' + OID = '1.2.840.113556.1.2.575' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Admin-Copy' + lDAPDisplayName = 'dXAAdminCopy' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Admin-Copy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Admin-Copy' + OID = '1.2.840.113556.1.2.378' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Admin-Forward' + lDAPDisplayName = 'dXAAdminForward' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Admin-Forward' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Admin-Forward' + OID = '1.2.840.113556.1.2.379' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Admin-Update' + lDAPDisplayName = 'dXAAdminUpdate' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Admin-Update' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Admin-Update' + OID = '1.2.840.113556.1.2.381' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Append-ReqCN' + lDAPDisplayName = 'dXAAppendReqCN' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Append-ReqCN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Append-ReqCN' + OID = '1.2.840.113556.1.2.174' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DXA-Conf-Container-List' + lDAPDisplayName = 'dXAConfContainerList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Conf-Container-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DXA-Conf-Container-List' + OID = '1.2.840.113556.1.2.180' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-DXA-Conf-Req-Time' + lDAPDisplayName = 'dXAConfReqTime' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Conf-Req-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Conf-Req-Time' + OID = '1.2.840.113556.1.2.122' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-DXA-Conf-Seq' + lDAPDisplayName = 'dXAConfSeq' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Conf-Seq' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Conf-Seq' + OID = '1.2.840.113556.1.2.184' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Conf-Seq-USN' + lDAPDisplayName = 'dXAConfSeqUSN' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Conf-Seq-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Conf-Seq-USN' + OID = '1.2.840.113556.1.2.45' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Exchange-Options' + lDAPDisplayName = 'dXAExchangeOptions' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Exchange-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Exchange-Options' + OID = '1.2.840.113556.1.2.359' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Export-Now' + lDAPDisplayName = 'dXAExportNow' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Export-Now' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Export-Now' + OID = '1.2.840.113556.1.2.377' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Import-Now' + lDAPDisplayName = 'dXAImportNow' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Import-Now' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Import-Now' + OID = '1.2.840.113556.1.2.376' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-DXA-Imp-Seq' + lDAPDisplayName = 'dXAImpSeq' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Imp-Seq' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Imp-Seq' + OID = '1.2.840.113556.1.2.116' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-DXA-Imp-Seq-Time' + lDAPDisplayName = 'dXAImpSeqTime' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Imp-Seq-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Imp-Seq-Time' + OID = '1.2.840.113556.1.2.117' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Imp-Seq-USN' + lDAPDisplayName = 'dXAImpSeqUSN' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Imp-Seq-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Imp-Seq-USN' + OID = '1.2.840.113556.1.2.86' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DXA-In-Template-Map' + lDAPDisplayName = 'dXAInTemplateMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-In-Template-Map' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DXA-In-Template-Map' + OID = '1.2.840.113556.1.2.363' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DXA-Local-Admin' + lDAPDisplayName = 'dXALocalAdmin' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Local-Admin' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Local-Admin' + OID = '1.2.840.113556.1.2.113' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-DXA-Native-Address-Type' + lDAPDisplayName = 'dXANativeAddressType' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Native-Address-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Native-Address-Type' + OID = '1.2.840.113556.1.2.331' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DXA-Out-Template-Map' + lDAPDisplayName = 'dXAOutTemplateMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Out-Template-Map' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DXA-Out-Template-Map' + OID = '1.2.840.113556.1.2.364' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DXA-Password' + lDAPDisplayName = 'dXAPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Password' + OID = '1.2.840.113556.1.2.305' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Prev-Exchange-Options' + lDAPDisplayName = 'dXAPrevExchangeOptions' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Exchange-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Exchange-Options' + OID = '1.2.840.113556.1.2.216' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DXA-Prev-Export-Native-Only' + lDAPDisplayName = 'dXAPrevExportNativeOnly' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Export-Native-Only' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Export-Native-Only' + OID = '1.2.840.113556.1.2.203' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Prev-In-Exchange-Sensitivity' + lDAPDisplayName = 'dXAPrevInExchangeSensitivity' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-In-Exchange-Sensitivity' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-In-Exchange-Sensitivity' + OID = '1.2.840.113556.1.2.90' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DXA-Prev-Remote-Entries' + lDAPDisplayName = 'dXAPrevRemoteEntries' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Remote-Entries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Remote-Entries' + OID = '1.2.840.113556.1.2.265' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Prev-Replication-Sensitivity' + lDAPDisplayName = 'dXAPrevReplicationSensitivity' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Replication-Sensitivity' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Replication-Sensitivity' + OID = '1.2.840.113556.1.2.215' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Prev-Template-Options' + lDAPDisplayName = 'dXAPrevTemplateOptions' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Template-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Template-Options' + OID = '1.2.840.113556.1.2.395' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Prev-Types' + lDAPDisplayName = 'dXAPrevTypes' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Prev-Types' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Prev-Types' + OID = '1.2.840.113556.1.2.217' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DXA-Recipient-CP' + lDAPDisplayName = 'dXARecipientCP' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Recipient-CP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Recipient-CP' + OID = '1.2.840.113556.1.2.384' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DXA-Remote-Client' + lDAPDisplayName = 'dXARemoteClient' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Remote-Client' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Remote-Client' + OID = '1.2.840.113556.1.2.112' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DXA-ReqName' + lDAPDisplayName = 'dXAReqName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-ReqName' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-ReqName' + OID = '1.2.840.113556.1.2.446' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-DXA-Req-Seq' + lDAPDisplayName = 'dXAReqSeq' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Req-Seq' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Req-Seq' + OID = '1.2.840.113556.1.2.101' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-DXA-Req-Seq-Time' + lDAPDisplayName = 'dXAReqSeqTime' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Req-Seq-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Req-Seq-Time' + OID = '1.2.840.113556.1.2.114' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Req-Seq-USN' + lDAPDisplayName = 'dXAReqSeqUSN' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Req-Seq-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Req-Seq-USN' + OID = '1.2.840.113556.1.2.182' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-DXA-Svr-Seq' + lDAPDisplayName = 'dXASvrSeq' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Svr-Seq' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Svr-Seq' + OID = '1.2.840.113556.1.2.360' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-DXA-Svr-Seq-Time' + lDAPDisplayName = 'dXASvrSeqTime' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Svr-Seq-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Svr-Seq-Time' + OID = '1.2.840.113556.1.2.361' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Svr-Seq-USN' + lDAPDisplayName = 'dXASvrSeqUSN' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Svr-Seq-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Svr-Seq-USN' + OID = '1.2.840.113556.1.2.124' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Template-Options' + lDAPDisplayName = 'dXATemplateOptions' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Template-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Template-Options' + OID = '1.2.840.113556.1.2.358' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-DXA-Template-TimeStamp' + lDAPDisplayName = 'dXATemplateTimeStamp' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Template-TimeStamp' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Template-TimeStamp' + OID = '1.2.840.113556.1.2.365' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DXA-Types' + lDAPDisplayName = 'dXATypes' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-Types' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DXA-Types' + OID = '1.2.840.113556.1.2.119' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-DXA-UnConf-Container-List' + lDAPDisplayName = 'dXAUnConfContainerList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DXA-UnConf-Container-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DXA-UnConf-Container-List' + OID = '1.2.840.113556.1.2.181' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Employee-Number' + LdapDisplayName = 'employeeNumber' + OMSyntax = 64 + MayBeContainedIn = @( + 'inetOrgPerson' + 'Organizational-Person' + 'User' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Employee-Number' + Optional = $True + IsDefunct = $False + AdminDescription = 'Employee-Number' + OID = '1.2.840.113556.1.2.610' + MustBeContainedIn = @( + ) +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Employee-Type' + LdapDisplayName = 'employeeType' + OMSyntax = 64 + MayBeContainedIn = @( + 'inetOrgPerson' + 'Organizational-Person' + 'User' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Employee-Type' + Optional = $True + IsDefunct = $False + AdminDescription = 'Employee-Type' + OID = '1.2.840.113556.1.2.613' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Enable-Compatibility' + lDAPDisplayName = 'enableCompatibility' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Enable-Compatibility' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Enable-Compatibility' + OID = '1.2.840.113556.1.2.567' +} +@{ + AttributeSyntax = '2.5.5.8' + AdminDisplayName = 'Enabled' + LdapDisplayName = 'Enabled' + OMSyntax = 1 + MayBeContainedIn = @( + 'ms-Exch-Chat-Network' + 'ms-Exch-Chat-Virtual-Network' + 'ms-Exch-Edge-Sync-Connector' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Enabled' + Optional = $True + IsDefunct = $False + AdminDescription = 'Enabled' + OID = '1.2.840.113556.1.2.557' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Enabled-Authorization-Packages' + lDAPDisplayName = 'enabledAuthorizationPackages' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Enabled-Authorization-Packages' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Enabled-Authorization-Packages' + OID = '1.2.840.113556.1.2.479' +} +@{ + AttributeSyntax = '2.5.5.8' + AdminDisplayName = 'Enabled-Connection' + LdapDisplayName = 'enabledConnection' + OMSyntax = 1 + MayBeContainedIn = @( + 'ms-Exch-MCU' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Enabled-Connection' + Optional = $True + IsDefunct = $False + AdminDescription = 'Enabled-Connection' + OID = '1.2.840.113556.1.4.36' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Enabled-Protocol-Cfg' + lDAPDisplayName = 'enabledProtocolCfg' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Enabled-Protocol-Cfg' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Enabled-Protocol-Cfg' + OID = '1.2.840.113556.1.2.515' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Enabled-Protocols' + lDAPDisplayName = 'enabledProtocols' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Enabled-Protocols' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Enabled-Protocols' + OID = '1.2.840.113556.1.2.474' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Encapsulation-Method' + lDAPDisplayName = 'encapsulationMethod' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encapsulation-Method' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encapsulation-Method' + OID = '1.2.840.113556.1.2.448' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Encrypt' + lDAPDisplayName = 'encrypt' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypt' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypt' + OID = '1.2.840.113556.1.2.236' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Encrypt-Alg-List-NA' + lDAPDisplayName = 'encryptAlgListNA' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypt-Alg-List-NA' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Encrypt-Alg-List-NA' + OID = '1.2.840.113556.1.2.130' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Encrypt-Alg-List-Other' + lDAPDisplayName = 'encryptAlgListOther' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypt-Alg-List-Other' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Encrypt-Alg-List-Other' + OID = '1.2.840.113556.1.2.399' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Encrypt-Alg-Selected-NA' + lDAPDisplayName = 'encryptAlgSelectedNA' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypt-Alg-Selected-NA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypt-Alg-Selected-NA' + OID = '1.2.840.113556.1.2.401' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Encrypt-Alg-Selected-Other' + lDAPDisplayName = 'encryptAlgSelectedOther' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypt-Alg-Selected-Other' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypt-Alg-Selected-Other' + OID = '1.2.840.113556.1.2.397' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Expand-DLs-Locally' + lDAPDisplayName = 'expandDLsLocally' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Expand-DLs-Locally' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Expand-DLs-Locally' + OID = '1.2.840.113556.1.2.201' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Expiration-Time' + lDAPDisplayName = 'expirationTime' + oMSyntax = 23 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Expiration-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Expiration-Time' + OID = '1.2.840.113556.1.2.394' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Export-Containers' + lDAPDisplayName = 'exportContainers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Export-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Export-Containers' + OID = '1.2.840.113556.1.2.111' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Export-Custom-Recipients' + lDAPDisplayName = 'exportCustomRecipients' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Export-Custom-Recipients' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Export-Custom-Recipients' + OID = '1.2.840.113556.1.2.307' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-1' + lDAPDisplayName = 'extensionAttribute1' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-1' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-1' + OID = '1.2.840.113556.1.2.423' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-10' + lDAPDisplayName = 'extensionAttribute10' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-10' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-10' + OID = '1.2.840.113556.1.2.432' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-11' + lDAPDisplayName = 'extensionAttribute11' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-11' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-11' + OID = '1.2.840.113556.1.2.599' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-12' + lDAPDisplayName = 'extensionAttribute12' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-12' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-12' + OID = '1.2.840.113556.1.2.600' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-13' + lDAPDisplayName = 'extensionAttribute13' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-13' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-13' + OID = '1.2.840.113556.1.2.601' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-14' + lDAPDisplayName = 'extensionAttribute14' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-14' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-14' + OID = '1.2.840.113556.1.2.602' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-15' + lDAPDisplayName = 'extensionAttribute15' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-15' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-15' + OID = '1.2.840.113556.1.2.603' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-2' + lDAPDisplayName = 'extensionAttribute2' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-2' + OID = '1.2.840.113556.1.2.424' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-3' + lDAPDisplayName = 'extensionAttribute3' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-3' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-3' + OID = '1.2.840.113556.1.2.425' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-4' + lDAPDisplayName = 'extensionAttribute4' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-4' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-4' + OID = '1.2.840.113556.1.2.426' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-5' + lDAPDisplayName = 'extensionAttribute5' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-5' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-5' + OID = '1.2.840.113556.1.2.427' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-6' + lDAPDisplayName = 'extensionAttribute6' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-6' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-6' + OID = '1.2.840.113556.1.2.428' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-7' + lDAPDisplayName = 'extensionAttribute7' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-7' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-7' + OID = '1.2.840.113556.1.2.429' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-8' + lDAPDisplayName = 'extensionAttribute8' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-8' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-8' + OID = '1.2.840.113556.1.2.430' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-9' + lDAPDisplayName = 'extensionAttribute9' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-9' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-9' + OID = '1.2.840.113556.1.2.431' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Extension-Data' + lDAPDisplayName = 'extensionData' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Extension-Data' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Data' + OID = '1.2.840.113556.1.2.228' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-File-Version' + lDAPDisplayName = 'fileVersion' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-File-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-File-Version' + OID = '1.2.840.113556.1.2.178' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Filter-Local-Addresses' + lDAPDisplayName = 'filterLocalAddresses' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Filter-Local-Addresses' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Filter-Local-Addresses' + OID = '1.2.840.113556.1.2.44' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.9' + Optional = $True + AdminDescription = 'Flags' + AdminDisplayName = 'Flags' + OID = '1.2.840.113556.1.4.38' + LdapDisplayName = 'flags' + IsDefunct = $False + Name = 'Flags' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-IM-Firewall' + 'ms-Exch-Protocol-Cfg-IM-Virtual-Server' + ) + MustBeContainedIn = @( + ) + OMSyntax = 2 + SearchFlags = 0 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Folder-Pathname' + lDAPDisplayName = 'folderPathname' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Folder-Pathname' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Folder-Pathname' + OID = '1.2.840.113556.1.2.337' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Form-Data' + lDAPDisplayName = 'formData' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Form-Data' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Form-Data' + OID = '1.2.840.113556.1.2.607' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Forwarding-Address' + lDAPDisplayName = 'forwardingAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Forwarding-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Forwarding-Address' + OID = '1.2.840.113556.1.2.606' +} +@{ + AttributeSyntax = '2.5.5.9' + AdminDisplayName = 'Garbage-Coll-Period' + LdapDisplayName = 'garbageCollPeriod' + OMSyntax = 2 + MayBeContainedIn = @( + 'ms-Exch-Mail-Storage' + 'ms-Exch-MDB' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Garbage-Coll-Period' + Optional = $True + IsDefunct = $False + AdminDescription = 'Garbage-Coll-Period' + OID = '1.2.840.113556.1.2.301' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Gateway-Local-Cred' + lDAPDisplayName = 'gatewayLocalCred' + oMSyntax = 22 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Gateway-Local-Cred' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Gateway-Local-Cred' + OID = '1.2.840.113556.1.2.37' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Gateway-Local-Desig' + lDAPDisplayName = 'gatewayLocalDesig' + oMSyntax = 22 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Gateway-Local-Desig' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Gateway-Local-Desig' + OID = '1.2.840.113556.1.2.29' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Gateway-Proxy' + lDAPDisplayName = 'gatewayProxy' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Gateway-Proxy' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Gateway-Proxy' + OID = '1.2.840.113556.1.2.302' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Gateway-Routing-Tree' + lDAPDisplayName = 'gatewayRoutingTree' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Gateway-Routing-Tree' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Gateway-Routing-Tree' + OID = '1.2.840.113556.1.2.167' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-GWART-Last-Modified' + lDAPDisplayName = 'gWARTLastModified' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWART-Last-Modified' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWART-Last-Modified' + OID = '1.2.840.113556.1.2.260' +} +@{ + AttributeSyntax = '2.5.5.10' + AdminDisplayName = 'Help-Data32' + LdapDisplayName = 'helpData32' + OMSyntax = 4 + MayBeContainedIn = @( + 'ms-Exch-Protocol-Cfg-Shared' + 'ms-Exch-Protocol-Cfg-IMAP' + 'ms-Exch-Protocol-Cfg-POP' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Help-Data32' + Optional = $True + IsDefunct = $False + AdminDescription = 'Help-Data32' + OID = '1.2.840.113556.1.2.9' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Heuristics' + lDAPDisplayName = 'heuristics' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Heuristics' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Heuristics' + OID = '1.2.840.113556.1.2.452' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Hide-DL-Membership' + lDAPDisplayName = 'hideDLMembership' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Hide-DL-Membership' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Hide-DL-Membership' + OID = '1.2.840.113556.1.2.297' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-MDB' + lDAPDisplayName = 'homeMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-MDB' + OID = '1.2.840.113556.1.2.244' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-MDB-BL' + lDAPDisplayName = 'homeMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Home-MDB-BL' + OID = '1.2.840.113556.1.2.393' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-MTA' + lDAPDisplayName = 'homeMTA' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-MTA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-MTA' + OID = '1.2.840.113556.1.2.171' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-HTTP-Pub-AB-Attributes' + lDAPDisplayName = 'hTTPPubABAttributes' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Pub-AB-Attributes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HTTP-Pub-AB-Attributes' + OID = '1.2.840.113556.1.2.516' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-HTTP-Pub-GAL' + lDAPDisplayName = 'hTTPPubGAL' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Pub-GAL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Pub-GAL' + OID = '1.2.840.113556.1.2.502' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-HTTP-Pub-GAL-Limit' + lDAPDisplayName = 'hTTPPubGALLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Pub-GAL-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Pub-GAL-Limit' + OID = '1.2.840.113556.1.2.503' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-HTTP-Pub-PF' + lDAPDisplayName = 'hTTPPubPF' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Pub-PF' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HTTP-Pub-PF' + OID = '1.2.840.113556.1.2.505' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-HTTP-Servers' + lDAPDisplayName = 'hTTPServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HTTP-Servers' + OID = '1.2.840.113556.1.2.517' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Import-Container' + lDAPDisplayName = 'importContainer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Import-Container' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Import-Container' + OID = '1.2.840.113556.1.2.110' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Imported-From' + lDAPDisplayName = 'importedFrom' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Imported-From' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Imported-From' + OID = '1.2.840.113556.1.2.263' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Inbound-Sites' + lDAPDisplayName = 'inboundSites' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Inbound-Sites' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Inbound-Sites' + OID = '1.2.840.113556.1.2.71' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Incoming-Msg-Size-Limit' + lDAPDisplayName = 'incomingMsgSizeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Incoming-Msg-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Incoming-Msg-Size-Limit' + OID = '1.2.840.113556.1.2.491' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-INSAdmin' + lDAPDisplayName = 'iNSAdmin' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-INSAdmin' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-INSAdmin' + OID = '1.2.840.113556.1.2.543' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Internet-Encoding' + lDAPDisplayName = 'internetEncoding' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Internet-Encoding' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internet-Encoding' + OID = '1.2.840.113556.1.2.551' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-KCC-Status' + lDAPDisplayName = 'kCCStatus' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-KCC-Status' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-KCC-Status' + OID = '1.2.840.113556.1.2.237' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-KM-Server' + lDAPDisplayName = 'kMServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-KM-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-KM-Server' + OID = '1.2.840.113556.1.2.440' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Locality-Name' + OID = '2.5.4.7' + Optional = $True + LdapDisplayName = 'l' + MustBeContainedIn = @( + ) + Name = 'Locality-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'account' + 'document' + 'documentSeries' + 'IpHost' + 'IpNetwork' + 'ms-Exch-Public-Folder' + ) + AdminDisplayName = 'Locality-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 17 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Language-ISO639' + lDAPDisplayName = 'language' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Language-ISO639' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Language-ISO639' + OID = '1.2.840.113556.1.2.616' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Language' + lDAPDisplayName = 'languageCode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Language' + OID = '1.2.840.113556.1.2.467' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-LDAP-Search-Cfg' + lDAPDisplayName = 'lDAPSearchCfg' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-LDAP-Search-Cfg' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-LDAP-Search-Cfg' + OID = '1.2.840.113556.1.2.552' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.4' + Optional = $True + AdminDescription = 'Legacy-Exchange-DN' + AdminDisplayName = 'Legacy-Exchange-DN' + OID = '1.2.840.113556.1.4.655' + LdapDisplayName = 'legacyExchangeDN' + IsDefunct = $False + Name = 'Legacy-Exchange-DN' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-Base-Class' + 'ms-Exch-Oma-Connector' + 'ms-Exch-Client-Access-Array' + ) + MustBeContainedIn = @( + ) + OMSyntax = 20 + SearchFlags = 13 +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Line-Wrap' + lDAPDisplayName = 'lineWrap' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Line-Wrap' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Line-Wrap' + OID = '1.2.840.113556.1.2.449' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-List-Public-Folders' + lDAPDisplayName = 'listPublicFolders' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-List-Public-Folders' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-List-Public-Folders' + OID = '1.2.840.113556.1.2.592' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Local-Bridge-Head' + lDAPDisplayName = 'localBridgeHead' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Local-Bridge-Head' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Local-Bridge-Head' + OID = '1.2.840.113556.1.2.311' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Local-Bridge-Head-Address' + lDAPDisplayName = 'localBridgeHeadAddress' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Local-Bridge-Head-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Local-Bridge-Head-Address' + OID = '1.2.840.113556.1.2.225' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Local-Initial-Turn' + lDAPDisplayName = 'localInitialTurn' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Local-Initial-Turn' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Local-Initial-Turn' + OID = '1.2.840.113556.1.2.39' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Location' + OID = '1.2.840.113556.1.4.222' + Optional = $True + LdapDisplayName = 'location' + MustBeContainedIn = @( + ) + Name = 'Location' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'Group' + 'room' + ) + AdminDisplayName = 'Location' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 1 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Log-Filename' + lDAPDisplayName = 'logFilename' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Log-Filename' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Log-Filename' + OID = '1.2.840.113556.1.2.192' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Log-Rollover-Interval' + lDAPDisplayName = 'logRolloverInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Log-Rollover-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Log-Rollover-Interval' + OID = '1.2.840.113556.1.2.348' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'E-mail-Addresses' + OID = '0.9.2342.19200300.100.1.3' + Optional = $True + LdapDisplayName = 'mail' + MustBeContainedIn = @( + ) + Name = 'E-mail-Addresses' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'inetOrgPerson' + 'Mail-Recipient' + 'ms-Exch-Dynamic-Distribution-List' + ) + AdminDisplayName = 'E-mail-Addresses' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 5 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mail-Nickname' + lDAPDisplayName = 'mailNickname' + oMSyntax = 64 + Optional = $True + searchFlags = 5 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mail-Nickname' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mail-Nickname' + OID = '1.2.840.113556.1.2.447' +} +@{ + AttributeSyntax = '2.5.5.1' + AdminDisplayName = 'Managed-By' + LdapDisplayName = 'managedBy' + OMSyntax = 127 + MayBeContainedIn = @( + 'Application-Version' + 'ms-DS-App-Configuration' + 'ms-DS-App-Data' + 'ms-Exch-Dynamic-Distribution-List' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Managed-By' + Optional = $True + IsDefunct = $False + AdminDescription = 'Managed-By' + OID = '1.2.840.113556.1.4.653' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-MAPI-Recipient' + lDAPDisplayName = 'mAPIRecipient' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MAPI-Recipient' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MAPI-Recipient' + OID = '1.2.840.113556.1.2.371' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Maximum-Object-ID' + lDAPDisplayName = 'maximumObjectID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Maximum-Object-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Maximum-Object-ID' + OID = '1.2.840.113556.1.2.458' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Backoff-Interval' + lDAPDisplayName = 'mDBBackoffInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Backoff-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Backoff-Interval' + OID = '1.2.840.113556.1.2.72' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Msg-Time-Out-Period' + lDAPDisplayName = 'mDBMsgTimeOutPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Msg-Time-Out-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Msg-Time-Out-Period' + OID = '1.2.840.113556.1.2.64' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Over-Hard-Quota-Limit' + lDAPDisplayName = 'mDBOverHardQuotaLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MDB-Over-Hard-Quota-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Over-Hard-Quota-Limit' + OID = '1.2.840.113556.1.4.7000.102.11037' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Over-Quota-Limit' + lDAPDisplayName = 'mDBOverQuotaLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MDB-Over-Quota-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Over-Quota-Limit' + OID = '1.2.840.113556.1.2.272' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Storage-Quota' + lDAPDisplayName = 'mDBStorageQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MDB-Storage-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Storage-Quota' + OID = '1.2.840.113556.1.2.266' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Unread-Limit' + lDAPDisplayName = 'mDBUnreadLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Unread-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Unread-Limit' + OID = '1.2.840.113556.1.2.69' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-MDB-Use-Defaults' + lDAPDisplayName = 'mDBUseDefaults' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MDB-Use-Defaults' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Use-Defaults' + OID = '1.2.840.113556.1.2.309' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Size-Limit' + lDAPDisplayName = 'messageSizeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Size-Limit' + OID = '1.2.840.113556.1.2.100' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Message-Tracking-Enabled' + lDAPDisplayName = 'messageTrackingEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Tracking-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Tracking-Enabled' + OID = '1.2.840.113556.1.2.453' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Monitor-Clock' + lDAPDisplayName = 'monitorClock' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitor-Clock' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitor-Clock' + OID = '1.2.840.113556.1.2.163' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitored-Configurations' + lDAPDisplayName = 'monitoredConfigurations' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitored-Configurations' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitored-Configurations' + OID = '1.2.840.113556.1.2.198' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitored-Servers' + lDAPDisplayName = 'monitoredServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitored-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitored-Servers' + OID = '1.2.840.113556.1.2.179' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitored-Services' + lDAPDisplayName = 'monitoredServices' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitored-Services' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitored-Services' + OID = '1.2.840.113556.1.2.199' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Alert-Delay' + lDAPDisplayName = 'monitoringAlertDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Alert-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Alert-Delay' + OID = '1.2.840.113556.1.2.158' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Alert-Units' + lDAPDisplayName = 'monitoringAlertUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Alert-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Alert-Units' + OID = '1.2.840.113556.1.2.57' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Availability-Style' + lDAPDisplayName = 'monitoringAvailabilityStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Availability-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Availability-Style' + OID = '1.2.840.113556.1.2.450' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Monitoring-Availability-Window' + lDAPDisplayName = 'monitoringAvailabilityWindow' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Availability-Window' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Availability-Window' + OID = '1.2.840.113556.1.2.200' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitoring-Cached-Via-Mail' + lDAPDisplayName = 'monitoringCachedViaMail' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Cached-Via-Mail' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Cached-Via-Mail' + OID = '1.2.840.113556.1.2.196' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitoring-Cached-Via-RPC' + lDAPDisplayName = 'monitoringCachedViaRPC' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Cached-Via-RPC' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Cached-Via-RPC' + OID = '1.2.840.113556.1.2.197' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Monitoring-Escalation-Procedure' + lDAPDisplayName = 'monitoringEscalationProcedure' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Escalation-Procedure' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Escalation-Procedure' + OID = '1.2.840.113556.1.2.188' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Hotsite-Poll-Interval' + lDAPDisplayName = 'monitoringHotsitePollInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Hotsite-Poll-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Hotsite-Poll-Interval' + OID = '1.2.840.113556.1.2.186' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Hotsite-Poll-Units' + lDAPDisplayName = 'monitoringHotsitePollUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Hotsite-Poll-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Hotsite-Poll-Units' + OID = '1.2.840.113556.1.2.87' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Mail-Update-Interval' + lDAPDisplayName = 'monitoringMailUpdateInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Mail-Update-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Mail-Update-Interval' + OID = '1.2.840.113556.1.2.195' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Mail-Update-Units' + lDAPDisplayName = 'monitoringMailUpdateUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Mail-Update-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Mail-Update-Units' + OID = '1.2.840.113556.1.2.93' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Normal-Poll-Interval' + lDAPDisplayName = 'monitoringNormalPollInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Normal-Poll-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Normal-Poll-Interval' + OID = '1.2.840.113556.1.2.187' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Normal-Poll-Units' + lDAPDisplayName = 'monitoringNormalPollUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Normal-Poll-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Normal-Poll-Units' + OID = '1.2.840.113556.1.2.88' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitoring-Recipients' + lDAPDisplayName = 'monitoringRecipients' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Recipients' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Recipients' + OID = '1.2.840.113556.1.2.159' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Monitoring-Recipients-NDR' + lDAPDisplayName = 'monitoringRecipientsNDR' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Recipients-NDR' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Recipients-NDR' + OID = '1.2.840.113556.1.2.387' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-RPC-Update-Interval' + lDAPDisplayName = 'monitoringRPCUpdateInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-RPC-Update-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-RPC-Update-Interval' + OID = '1.2.840.113556.1.2.92' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-RPC-Update-Units' + lDAPDisplayName = 'monitoringRPCUpdateUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-RPC-Update-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-RPC-Update-Units' + OID = '1.2.840.113556.1.2.89' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Warning-Delay' + lDAPDisplayName = 'monitoringWarningDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Warning-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Warning-Delay' + OID = '1.2.840.113556.1.2.157' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Warning-Units' + lDAPDisplayName = 'monitoringWarningUnits' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Warning-Units' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Warning-Units' + OID = '1.2.840.113556.1.2.56' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Monitor-Servers' + lDAPDisplayName = 'monitorServers' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitor-Servers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitor-Servers' + OID = '1.2.840.113556.1.2.156' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Monitor-Services' + lDAPDisplayName = 'monitorServices' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitor-Services' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitor-Services' + OID = '1.2.840.113556.1.2.160' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.9' + AdminDescription = 'Contains the seniority index as applied by the organization where the person works.' + OID = '1.2.840.113556.1.4.1997' + Optional = $True + LdapDisplayName = 'msDS-HABSeniorityIndex' + MustBeContainedIn = @( + ) + Name = 'ms-DS-HAB-Seniority-Index' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'Group' + 'Mail-Recipient' + 'Organizational-Person' + 'ms-Exch-Department' + ) + AdminDisplayName = 'ms-DS-HAB-Seniority-Index' + IsDefunct = $False + OMSyntax = 2 + SearchFlags = 1 +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'The phonetic display name of an object. In the absence of a phonetic display name the existing display name is used.' + OID = '1.2.840.113556.1.4.1946' + Optional = $True + LdapDisplayName = 'msDS-PhoneticDisplayName' + MustBeContainedIn = @( + ) + Name = 'ms-DS-Phonetic-Display-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'Group' + 'Mail-Recipient' + 'Organizational-Person' + 'ms-Exch-Department' + ) + AdminDisplayName = 'ms-DS-Phonetic-Display-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 5 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-2003-Url' + lDAPDisplayName = 'msExch2003Url' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-2003-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-2003-Url' + OID = '1.2.840.113556.1.4.7000.102.51566' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Accepted-Domain-BL' + lDAPDisplayName = 'msExchAcceptedDomainBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Accepted-Domain-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Accepted-Domain-BL' + OID = '1.2.840.113556.1.4.7000.102.51948' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Accepted-Domain-Flags' + lDAPDisplayName = 'msExchAcceptedDomainFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Accepted-Domain-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Accepted-Domain-Flags' + OID = '1.2.840.113556.1.4.7000.102.50745' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Accepted-Domain-Name' + lDAPDisplayName = 'msExchAcceptedDomainName' + oMSyntax = 20 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Accepted-Domain-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Accepted-Domain-Name' + OID = '1.2.840.113556.1.4.7000.102.50778' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Access-Control-Map' + lDAPDisplayName = 'msExchAccessControlMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Access-Control-Map' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Access-Control-Map' + OID = '1.2.840.113556.1.4.7000.102.64' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Access-Flags' + lDAPDisplayName = 'msExchAccessFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Access-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Access-Flags' + OID = '1.2.840.113556.1.4.7000.102.2016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Access-SSL-Flags' + lDAPDisplayName = 'msExchAccessSSLFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Access-SSL-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Access-SSL-Flags' + OID = '1.2.840.113556.1.4.7000.102.2006' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Account-Forest-BL' + lDAPDisplayName = 'msExchAccountForestBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Account-Forest-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Account-Forest-BL' + OID = '1.2.840.113556.1.4.7000.102.51915' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Account-Forest-Link' + lDAPDisplayName = 'msExchAccountForestLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Account-Forest-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Account-Forest-Link' + OID = '1.2.840.113556.1.4.7000.102.51869' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Activation-Config' + lDAPDisplayName = 'msExchActivationConfig' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Activation-Config' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Activation-Config' + OID = '1.2.840.113556.1.4.7000.102.51271' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Activation-Preference' + lDAPDisplayName = 'msExchActivationPreference' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Activation-Preference' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Activation-Preference' + OID = '1.2.840.113556.1.4.7000.102.50940' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Active-Instance-Sleep-Interval' + lDAPDisplayName = 'msExchActiveInstanceSleepInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Active-Instance-Sleep-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Active-Instance-Sleep-Interval' + OID = '1.2.840.113556.1.4.7000.102.51662' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ActiveSync-Device-AutoBlock-Duration' + lDAPDisplayName = 'msExchActiveSyncDeviceAutoBlockDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ActiveSync-Device-AutoBlock-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ActiveSync-Device-AutoBlock-Duration' + OID = '1.2.840.113556.1.4.7000.102.51794' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Duration' + lDAPDisplayName = 'msExchActiveSyncDeviceAutoblockThresholdIncidenceDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Duration' + OID = '1.2.840.113556.1.4.7000.102.51795' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Limit' + lDAPDisplayName = 'msExchActiveSyncDeviceAutoblockThresholdIncidenceLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Incidence-Limit' + OID = '1.2.840.113556.1.4.7000.102.51792' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Type' + lDAPDisplayName = 'msExchActiveSyncDeviceAutoblockThresholdType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ActiveSync-Device-Autoblock-Threshold-Type' + OID = '1.2.840.113556.1.4.7000.102.51791' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Activity-Based-Authentication-Timeout-Interval' + lDAPDisplayName = 'msExchActivityBasedAuthenticationTimeoutInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Activity-Based-Authentication-Timeout-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Activity-Based-Authentication-Timeout-Interval' + OID = '1.2.840.113556.1.4.7000.102.51619' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ADC-Global-Names' + lDAPDisplayName = 'msExchADCGlobalNames' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-ADC-Global-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-ADC-Global-Names' + OID = '1.2.840.113556.1.4.7000.102.63' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ADC-Object-Type' + lDAPDisplayName = 'msExchADCObjectType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ADC-Object-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ADC-Object-Type' + OID = '1.2.840.113556.1.4.7000.102.84' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ADC-Options' + lDAPDisplayName = 'msExchADCOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ADC-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ADC-Options' + OID = '1.2.840.113556.1.4.7000.102.41' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Add-Groups-To-Token' + lDAPDisplayName = 'msExchAddGroupsToToken' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Add-Groups-To-Token' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Add-Groups-To-Token' + OID = '1.2.840.113556.1.4.7000.102.95' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Additional-DN-Map' + lDAPDisplayName = 'msExchAdditionalDNMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Additional-DN-Map' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Additional-DN-Map' + OID = '1.2.840.113556.1.4.7000.102.42' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Address-Book-Flags' + lDAPDisplayName = 'msExchAddressBookFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Address-Book-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-Book-Flags' + OID = '1.2.840.113556.1.4.7000.102.51733' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-Book-Policy-BL' + lDAPDisplayName = 'msExchAddressBookPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Book-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Address-Book-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.51842' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-Book-Policy-Link' + lDAPDisplayName = 'msExchAddressBookPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Address-Book-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-Book-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51841' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Address-List-OU' + lDAPDisplayName = 'msExchAddressListOU' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-List-OU' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Address-List-OU' + OID = '1.2.840.113556.1.4.7000.102.112' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Address-List-Paging-Enabled' + lDAPDisplayName = 'msExchAddressListPagingEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-List-Paging-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-List-Paging-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51250' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-Lists-BL' + lDAPDisplayName = 'msExchAddressListsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Lists-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Address-Lists-BL' + OID = '1.2.840.113556.1.4.7000.102.51844' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-List-Service-BL' + lDAPDisplayName = 'msExchAddressListServiceBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-List-Service-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-List-Service-BL' + OID = '1.2.840.113556.1.4.7000.102.74' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-List-Service-Link' + lDAPDisplayName = 'msExchAddressListServiceLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-List-Service-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-List-Service-Link' + OID = '1.2.840.113556.1.4.7000.102.75' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Address-Lists-Link' + lDAPDisplayName = 'msExchAddressListsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Lists-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Address-Lists-Link' + OID = '1.2.840.113556.1.4.7000.102.51843' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Address-Rewrite-Exception-List' + lDAPDisplayName = 'msExchAddressRewriteExceptionList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Rewrite-Exception-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Address-Rewrite-Exception-List' + OID = '1.2.840.113556.1.4.7000.102.50471' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Address-Rewrite-External-Name' + lDAPDisplayName = 'msExchAddressRewriteExternalName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Rewrite-External-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-Rewrite-External-Name' + OID = '1.2.840.113556.1.4.7000.102.50473' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Address-Rewrite-Internal-Name' + lDAPDisplayName = 'msExchAddressRewriteInternalName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Rewrite-Internal-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-Rewrite-Internal-Name' + OID = '1.2.840.113556.1.4.7000.102.50472' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Address-Rewrite-Mapping-Type' + lDAPDisplayName = 'msExchAddressRewriteMappingType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Address-Rewrite-Mapping-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Address-Rewrite-Mapping-Type' + OID = '1.2.840.113556.1.4.7000.102.50474' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Adfs-Authentication-Raw-Configuration' + lDAPDisplayName = 'msExchAdfsAuthenticationRawConfiguration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Adfs-Authentication-Raw-Configuration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Adfs-Authentication-Raw-Configuration' + OID = '1.2.840.113556.1.4.7000.102.52066' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-ACL' + lDAPDisplayName = 'msExchAdminACL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-ACL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-ACL' + OID = '1.2.840.113556.1.4.7000.102.2011' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Age-Limit' + lDAPDisplayName = 'msExchAdminAuditLogAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Audit-Log-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.51370' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Cmdlets' + lDAPDisplayName = 'msExchAdminAuditLogCmdlets' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Cmdlets' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Admin-Audit-Log-Cmdlets' + OID = '1.2.840.113556.1.4.7000.102.51371' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Excluded-Cmdlets' + lDAPDisplayName = 'msExchAdminAuditLogExcludedCmdlets' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Excluded-Cmdlets' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Admin-Audit-Log-Excluded-Cmdlets' + OID = '1.2.840.113556.1.4.7000.102.51769' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Flags' + lDAPDisplayName = 'msExchAdminAuditLogFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Audit-Log-Flags' + OID = '1.2.840.113556.1.4.7000.102.51369' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Mailbox' + lDAPDisplayName = 'msExchAdminAuditLogMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Audit-Log-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.51373' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admin-Audit-Log-Parameters' + lDAPDisplayName = 'msExchAdminAuditLogParameters' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Audit-Log-Parameters' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Admin-Audit-Log-Parameters' + OID = '1.2.840.113556.1.4.7000.102.51372' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Admin-Group-Mode' + lDAPDisplayName = 'msExchAdminGroupMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Group-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Group-Mode' + OID = '1.2.840.113556.1.4.7000.102.50014' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Admin-Groups-Enabled' + lDAPDisplayName = 'msExchAdminGroupsEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Groups-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Groups-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50026' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Administrative-Unit-BL' + lDAPDisplayName = 'msExchAdministrativeUnitBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Administrative-Unit-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Administrative-Unit-BL' + OID = '1.2.840.113556.1.4.7000.102.52158' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Administrative-Unit-Link' + lDAPDisplayName = 'msExchAdministrativeUnitLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Administrative-Unit-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Administrative-Unit-Link' + OID = '1.2.840.113556.1.4.7000.102.52157' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Admin-Mailbox' + lDAPDisplayName = 'msExchAdminMailbox' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admin-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Admin-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.1034' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Admins' + lDAPDisplayName = 'msExchAdmins' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Admins' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Admins' + OID = '1.2.840.113556.1.4.7000.102.50064' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Agents-Flags' + lDAPDisplayName = 'msExchAgentsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Agents-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Agents-Flags' + OID = '1.2.840.113556.1.4.7000.102.50509' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Aggregation-Subscription-Credential' + lDAPDisplayName = 'msExchAggregationSubscriptionCredential' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Aggregation-Subscription-Credential' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Aggregation-Subscription-Credential' + OID = '1.2.840.113556.1.4.7000.102.51149' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Aging-Keep-Time' + lDAPDisplayName = 'msExchAgingKeepTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Aging-Keep-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Aging-Keep-Time' + OID = '1.2.840.113556.1.4.7000.102.11059' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Alias-Gen-Format' + lDAPDisplayName = 'msExchAliasGenFormat' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alias-Gen-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alias-Gen-Format' + OID = '1.2.840.113556.1.4.7000.102.50010' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Alias-Gen-Type' + lDAPDisplayName = 'msExchAliasGenType' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alias-Gen-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alias-Gen-Type' + OID = '1.2.840.113556.1.4.7000.102.50011' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Alias-Gen-Uniqueness' + lDAPDisplayName = 'msExchAliasGenUniqueness' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alias-Gen-Uniqueness' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alias-Gen-Uniqueness' + OID = '1.2.840.113556.1.4.7000.102.50012' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Allow-Additional-Resources' + lDAPDisplayName = 'msExchAllowAdditionalResources' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Allow-Additional-Resources' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Allow-Additional-Resources' + OID = '1.2.840.113556.1.4.7000.102.9006' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Allow-Cross-Site-RPC-Client-Access' + lDAPDisplayName = 'msExchAllowCrossSiteRPCClientAccess' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Allow-Cross-Site-RPC-Client-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Allow-Cross-Site-RPC-Client-Access' + OID = '1.2.840.113556.1.4.7000.102.51525' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Allow-Enhanced-Security' + lDAPDisplayName = 'msExchAllowEnhancedSecurity' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Allow-Enhanced-Security' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Allow-Enhanced-Security' + OID = '1.2.840.113556.1.4.7000.102.11087' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Allow-Heuristic-AD-Calling-Line-Id-Resolution' + lDAPDisplayName = 'msExchAllowHeuristicADCallingLineIdResolution' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Allow-Heuristic-AD-Calling-Line-Id-Resolution' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Allow-Heuristic-AD-Calling-Line-Id-Resolution' + OID = '1.2.840.113556.1.4.7000.102.51147' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Allow-Time-Extensions' + lDAPDisplayName = 'msExchAllowTimeExtensions' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Allow-Time-Extensions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Allow-Time-Extensions' + OID = '1.2.840.113556.1.4.7000.102.9005' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-All-Room-List-BL' + lDAPDisplayName = 'msExchAllRoomListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-All-Room-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-All-Room-List-BL' + OID = '1.2.840.113556.1.4.7000.102.51850' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-All-Room-List-Link' + lDAPDisplayName = 'msExchAllRoomListLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-All-Room-List-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-All-Room-List-Link' + OID = '1.2.840.113556.1.4.7000.102.51849' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-AL-Object-Version' + lDAPDisplayName = 'msExchALObjectVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-AL-Object-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-AL-Object-Version' + OID = '1.2.840.113556.1.4.7000.102.59' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Alternate-File-Share-Witness' + lDAPDisplayName = 'msExchAlternateFileShareWitness' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alternate-File-Share-Witness' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alternate-File-Share-Witness' + OID = '1.2.840.113556.1.4.7000.102.51279' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Alternate-File-Share-Witness-Directory' + lDAPDisplayName = 'msExchAlternateFileShareWitnessDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alternate-File-Share-Witness-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alternate-File-Share-Witness-Directory' + OID = '1.2.840.113556.1.4.7000.102.51280' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Alternate-Mailboxes' + lDAPDisplayName = 'msExchAlternateMailboxes' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Alternate-Mailboxes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Alternate-Mailboxes' + OID = '1.2.840.113556.1.4.7000.102.51270' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Alternate-Server' + lDAPDisplayName = 'msExchAlternateServer' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Alternate-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Alternate-Server' + OID = '1.2.840.113556.1.4.7000.102.12532' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Anonymous-Throttling-Policy-State' + lDAPDisplayName = 'msExchAnonymousThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Anonymous-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Anonymous-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51623' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Anonymous-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchAnonymousThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Anonymous-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Anonymous-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52042' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Applies-To-Smtp-VS' + lDAPDisplayName = 'msExchAppliesToSmtpVS' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Applies-To-Smtp-VS' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Applies-To-Smtp-VS' + OID = '1.2.840.113556.1.4.7000.102.5058' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Applies-To-Smtp-VS-BL' + lDAPDisplayName = 'msExchAppliesToSmtpVSBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Applies-To-Smtp-VS-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Applies-To-Smtp-VS-BL' + OID = '1.2.840.113556.1.4.7000.102.5059' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Approval-Application-Link' + lDAPDisplayName = 'msExchApprovalApplicationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Approval-Application-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Approval-Application-Link' + OID = '1.2.840.113556.1.4.7000.102.50950' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Arbitration-Mailbox' + lDAPDisplayName = 'msExchArbitrationMailbox' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Arbitration-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Arbitration-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.50957' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Arbitration-Mailboxes-BL' + lDAPDisplayName = 'msExchArbitrationMailboxesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Arbitration-Mailboxes-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Arbitration-Mailboxes-BL' + OID = '1.2.840.113556.1.4.7000.102.50951' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Archive-Address' + lDAPDisplayName = 'msExchArchiveAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Address' + OID = '1.2.840.113556.1.4.7000.102.51584' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Archive-Database-BL' + lDAPDisplayName = 'msExchArchiveDatabaseBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Archive-Database-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Archive-Database-BL' + OID = '1.2.840.113556.1.4.7000.102.51449' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Archive-Database-Link' + lDAPDisplayName = 'msExchArchiveDatabaseLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Database-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Database-Link' + OID = '1.2.840.113556.1.4.7000.102.51444' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Archive-Database-Link-SL' + lDAPDisplayName = 'msExchArchiveDatabaseLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Database-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Database-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51931' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Archive-GUID' + lDAPDisplayName = 'msExchArchiveGUID' + oMSyntax = 4 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-GUID' + OID = '1.2.840.113556.1.4.7000.102.51443' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Archive-Name' + lDAPDisplayName = 'msExchArchiveName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Name' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Archive-Name' + OID = '1.2.840.113556.1.4.7000.102.51441' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Archive-Quota' + lDAPDisplayName = 'msExchArchiveQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Quota' + OID = '1.2.840.113556.1.4.7000.102.51442' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Archive-Release' + lDAPDisplayName = 'msExchArchiveRelease' + oMSyntax = 64 + Optional = $True + searchFlags = 11 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Release' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Release' + OID = '1.2.840.113556.1.4.7000.102.52074' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Archive-Status' + lDAPDisplayName = 'msExchArchiveStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Status' + OID = '1.2.840.113556.1.4.7000.102.51602' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Archive-Warn-Quota' + lDAPDisplayName = 'msExchArchiveWarnQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Archive-Warn-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Archive-Warn-Quota' + OID = '1.2.840.113556.1.4.7000.102.51493' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Assembly' + lDAPDisplayName = 'msExchAssembly' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Assembly' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Assembly' + OID = '1.2.840.113556.1.4.7000.102.51137' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Assistants-Maintenance-Schedule' + lDAPDisplayName = 'msExchAssistantsMaintenanceSchedule' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Assistants-Maintenance-Schedule' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Assistants-Maintenance-Schedule' + OID = '1.2.840.113556.1.4.7000.102.51395' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Assistants-Throttle-Workcycle' + lDAPDisplayName = 'msExchAssistantsThrottleWorkcycle' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Assistants-Throttle-Workcycle' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Assistants-Throttle-Workcycle' + OID = '1.2.840.113556.1.4.7000.102.51657' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Associated-Accepted-Domain-BL' + lDAPDisplayName = 'msExchAssociatedAcceptedDomainBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Associated-Accepted-Domain-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Associated-Accepted-Domain-BL' + OID = '1.2.840.113556.1.4.7000.102.52119' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Associated-Accepted-Domain-Link' + lDAPDisplayName = 'msExchAssociatedAcceptedDomainLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Associated-Accepted-Domain-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Associated-Accepted-Domain-Link' + OID = '1.2.840.113556.1.4.7000.102.52118' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Associated-AG' + lDAPDisplayName = 'msExchAssociatedAG' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Associated-AG' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Associated-AG' + OID = '1.2.840.113556.1.4.7000.102.50031' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Admin-Message' + lDAPDisplayName = 'msExchAttachmentFilteringAdminMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Admin-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Attachment-Filtering-Admin-Message' + OID = '1.2.840.113556.1.4.7000.102.50854' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Attachment-Names' + lDAPDisplayName = 'msExchAttachmentFilteringAttachmentNames' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Attachment-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Attachment-Filtering-Attachment-Names' + OID = '1.2.840.113556.1.4.7000.102.50475' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Content-Types' + lDAPDisplayName = 'msExchAttachmentFilteringContentTypes' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Content-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Attachment-Filtering-Content-Types' + OID = '1.2.840.113556.1.4.7000.102.50477' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Exception-Connectors-Link' + lDAPDisplayName = 'msExchAttachmentFilteringExceptionConnectorsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Exception-Connectors-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Attachment-Filtering-Exception-Connectors-Link' + OID = '1.2.840.113556.1.4.7000.102.50478' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Filter-Action' + lDAPDisplayName = 'msExchAttachmentFilteringFilterAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Filter-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Attachment-Filtering-Filter-Action' + OID = '1.2.840.113556.1.4.7000.102.50480' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Attachment-Filtering-Reject-Response' + lDAPDisplayName = 'msExchAttachmentFilteringRejectResponse' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Attachment-Filtering-Reject-Response' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Attachment-Filtering-Reject-Response' + OID = '1.2.840.113556.1.4.7000.102.50479' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Audit-Admin' + lDAPDisplayName = 'msExchAuditAdmin' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Audit-Admin' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Audit-Admin' + OID = '1.2.840.113556.1.4.7000.102.51673' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Audit-Delegate' + lDAPDisplayName = 'msExchAuditDelegate' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Audit-Delegate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Audit-Delegate' + OID = '1.2.840.113556.1.4.7000.102.51674' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Audit-Delegate-Admin' + lDAPDisplayName = 'msExchAuditDelegateAdmin' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Audit-Delegate-Admin' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Audit-Delegate-Admin' + OID = '1.2.840.113556.1.4.7000.102.51675' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Audit-Flags' + lDAPDisplayName = 'msExchAuditFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Audit-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Audit-Flags' + OID = '1.2.840.113556.1.4.7000.102.9004' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Audit-Owner' + lDAPDisplayName = 'msExchAuditOwner' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Audit-Owner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Audit-Owner' + OID = '1.2.840.113556.1.4.7000.102.51676' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Application-Identifier' + lDAPDisplayName = 'msExchAuthApplicationIdentifier' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Application-Identifier' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Application-Identifier' + OID = '1.2.840.113556.1.4.7000.102.52014' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-App-Secret' + lDAPDisplayName = 'msExchAuthAppSecret' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-App-Secret' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-App-Secret' + OID = '1.2.840.113556.1.4.7000.102.52017' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Authorization-Url' + lDAPDisplayName = 'msExchAuthAuthorizationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Authorization-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Authorization-Url' + OID = '1.2.840.113556.1.4.7000.102.52020' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auth-Auth-Server-Type' + lDAPDisplayName = 'msExchAuthAuthServerType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Auth-Server-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Auth-Server-Type' + OID = '1.2.840.113556.1.4.7000.102.52021' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Auth-Certificate-Data' + lDAPDisplayName = 'msExchAuthCertificateData' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Certificate-Data' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-Certificate-Data' + OID = '1.2.840.113556.1.4.7000.102.52012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Certificate-Thumbprint' + lDAPDisplayName = 'msExchAuthCertificateThumbprint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Certificate-Thumbprint' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-Certificate-Thumbprint' + OID = '1.2.840.113556.1.4.7000.102.52011' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Authentication-Flags' + lDAPDisplayName = 'msExchAuthenticationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authentication-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authentication-Flags' + OID = '1.2.840.113556.1.4.7000.102.2003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auth-Flags' + lDAPDisplayName = 'msExchAuthFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Flags' + OID = '1.2.840.113556.1.4.7000.102.52013' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Issuer-Name' + lDAPDisplayName = 'msExchAuthIssuerName' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Issuer-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Issuer-Name' + OID = '1.2.840.113556.1.4.7000.102.52018' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Issuing-Url' + lDAPDisplayName = 'msExchAuthIssuingUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Issuing-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Issuing-Url' + OID = '1.2.840.113556.1.4.7000.102.52019' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Auth-Linked-Account' + lDAPDisplayName = 'msExchAuthLinkedAccount' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Linked-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Linked-Account' + OID = '1.2.840.113556.1.4.7000.102.52022' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-AuthMailDisposition' + lDAPDisplayName = 'msExchAuthMailDisposition' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-AuthMailDisposition' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-AuthMailDisposition' + OID = '1.2.840.113556.1.4.5061' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Metadata-Url' + lDAPDisplayName = 'msExchAuthMetadataUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Metadata-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Metadata-Url' + OID = '1.2.840.113556.1.4.7000.102.52015' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Auth-Next-Effective-Date' + lDAPDisplayName = 'msExchAuthNextEffectiveDate' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Next-Effective-Date' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Next-Effective-Date' + OID = '1.2.840.113556.1.4.7000.102.52094' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Authoritative-Policy-Tag-GUID' + lDAPDisplayName = 'msExchAuthoritativePolicyTagGUID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authoritative-Policy-Tag-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authoritative-Policy-Tag-GUID' + OID = '1.2.840.113556.1.4.7000.102.51585' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Authoritative-Policy-Tag-Note' + lDAPDisplayName = 'msExchAuthoritativePolicyTagNote' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authoritative-Policy-Tag-Note' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authoritative-Policy-Tag-Note' + OID = '1.2.840.113556.1.4.7000.102.51586' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Authorization-Persistence' + lDAPDisplayName = 'msExchAuthorizationPersistence' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Authorization-Persistence' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Authorization-Persistence' + OID = '1.2.840.113556.1.4.7000.102.15011' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Auth-Policy-BL' + lDAPDisplayName = 'msExchAuthPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Auth-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.52156' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Auth-Policy-Link' + lDAPDisplayName = 'msExchAuthPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Auth-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.52155' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auth-Realm' + lDAPDisplayName = 'msExchAuthRealm' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auth-Realm' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auth-Realm' + OID = '1.2.840.113556.1.4.7000.102.52016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Database' + lDAPDisplayName = 'msExchAutoDAGParamDatabaseCopiesPerDatabase' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Database' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Database' + OID = '1.2.840.113556.1.4.7000.102.51967' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Volume' + lDAPDisplayName = 'msExchAutoDAGParamDatabaseCopiesPerVolume' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Volume' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Database-Copies-Per-Volume' + OID = '1.2.840.113556.1.4.7000.102.51964' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Database-Copy-Flags' + lDAPDisplayName = 'msExchAutoDAGParamDatabaseCopyFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Database-Copy-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Database-Copy-Flags' + OID = '1.2.840.113556.1.4.7000.102.51972' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Database-Flags' + lDAPDisplayName = 'msExchAutoDAGParamDatabaseFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Database-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Database-Flags' + OID = '1.2.840.113556.1.4.7000.102.51973' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Databases-Root-Folder-Path' + lDAPDisplayName = 'msExchAutoDAGParamDatabasesRootFolderPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Databases-Root-Folder-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Databases-Root-Folder-Path' + OID = '1.2.840.113556.1.4.7000.102.51962' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Failed-Volumes-Root-Folder-Path' + lDAPDisplayName = 'msExchAutoDAGParamFailedVolumesRootFolderPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Failed-Volumes-Root-Folder-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Failed-Volumes-Root-Folder-Path' + OID = '1.2.840.113556.1.4.7000.102.51963' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Flags' + lDAPDisplayName = 'msExchAutoDAGParamFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Flags' + OID = '1.2.840.113556.1.4.7000.102.51969' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Server-Flags' + lDAPDisplayName = 'msExchAutoDAGParamServerFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Server-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Server-Flags' + OID = '1.2.840.113556.1.4.7000.102.51971' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Databases' + lDAPDisplayName = 'msExchAutoDAGParamTotalNumberOfDatabases' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Databases' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Databases' + OID = '1.2.840.113556.1.4.7000.102.51965' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Servers' + lDAPDisplayName = 'msExchAutoDAGParamTotalNumberOfServers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Servers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Total-Number-Of-Servers' + OID = '1.2.840.113556.1.4.7000.102.51966' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Auto-DAG-Param-Volumes-Root-Folder-Path' + lDAPDisplayName = 'msExchAutoDAGParamVolumesRootFolderPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Param-Volumes-Root-Folder-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Param-Volumes-Root-Folder-Path' + OID = '1.2.840.113556.1.4.7000.102.51961' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Auto-DAG-Schema-Version' + lDAPDisplayName = 'msExchAutoDAGSchemaVersion' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-DAG-Schema-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-DAG-Schema-Version' + OID = '1.2.840.113556.1.4.7000.102.51968' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Database-Mount-After' + lDAPDisplayName = 'msExchAutoDatabaseMountAfter' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Database-Mount-After' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Database-Mount-After' + OID = '1.2.840.113556.1.4.7000.102.50680' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auto-Discover-Auth-Package' + lDAPDisplayName = 'msExchAutoDiscoverAuthPackage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Auth-Package' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Auth-Package' + OID = '1.2.840.113556.1.4.7000.102.50523' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auto-Discover-Cert-Principal-Name' + lDAPDisplayName = 'msExchAutoDiscoverCertPrincipalName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Cert-Principal-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Cert-Principal-Name' + OID = '1.2.840.113556.1.4.7000.102.50524' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Discover-Directory-Port' + lDAPDisplayName = 'msExchAutoDiscoverDirectoryPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Directory-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Directory-Port' + OID = '1.2.840.113556.1.4.7000.102.50520' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Discover-Flags' + lDAPDisplayName = 'msExchAutoDiscoverFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Flags' + OID = '1.2.840.113556.1.4.7000.102.50525' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Discover-Port' + lDAPDisplayName = 'msExchAutoDiscoverPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Port' + OID = '1.2.840.113556.1.4.7000.102.50519' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Discover-Referral-Port' + lDAPDisplayName = 'msExchAutoDiscoverReferralPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Referral-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Referral-Port' + OID = '1.2.840.113556.1.4.7000.102.50521' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auto-Discover-Server' + lDAPDisplayName = 'msExchAutoDiscoverServer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-Server' + OID = '1.2.840.113556.1.4.7000.102.50517' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Auto-Discover-SPA' + lDAPDisplayName = 'msExchAutoDiscoverSPA' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-SPA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-SPA' + OID = '1.2.840.113556.1.4.7000.102.50522' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Auto-Discover-TTL' + lDAPDisplayName = 'msExchAutoDiscoverTTL' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Auto-Discover-TTL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Auto-Discover-TTL' + OID = '1.2.840.113556.1.4.7000.102.50518' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-BL' + lDAPDisplayName = 'msExchAuxMailboxParentObjectIdBL' + oMSyntax = 127 + Optional = $True + searchFlags = 27 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-BL' + OID = '1.2.840.113556.1.4.7000.102.52142' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-Link' + lDAPDisplayName = 'msExchAuxMailboxParentObjectIdLink' + oMSyntax = 127 + Optional = $True + searchFlags = 27 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Aux-Mailbox-Parent-Object-Id-Link' + OID = '1.2.840.113556.1.4.7000.102.52141' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Availability-Access-Method' + lDAPDisplayName = 'msExchAvailabilityAccessMethod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Access-Method' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Access-Method' + OID = '1.2.840.113556.1.4.7000.102.50673' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Availability-Foreign-Connector-Domain' + lDAPDisplayName = 'msExchAvailabilityForeignConnectorDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Foreign-Connector-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Foreign-Connector-Domain' + OID = '1.2.840.113556.1.4.7000.102.50840' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Availability-Foreign-Connector-Type' + lDAPDisplayName = 'msExchAvailabilityForeignConnectorType' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Foreign-Connector-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Foreign-Connector-Type' + OID = '1.2.840.113556.1.4.7000.102.50839' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Availability-Forest-Name' + lDAPDisplayName = 'msExchAvailabilityForestName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Forest-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Forest-Name' + OID = '1.2.840.113556.1.4.7000.102.50669' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Availability-Org-Wide-Account' + lDAPDisplayName = 'msExchAvailabilityOrgWideAccount' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Org-Wide-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Org-Wide-Account' + OID = '1.2.840.113556.1.4.7000.102.50675' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Availability-Org-Wide-Account-BL' + lDAPDisplayName = 'msExchAvailabilityOrgWideAccountBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Org-Wide-Account-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Availability-Org-Wide-Account-BL' + OID = '1.2.840.113556.1.4.7000.102.51461' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Availability-Per-User-Account' + lDAPDisplayName = 'msExchAvailabilityPerUserAccount' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Per-User-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Per-User-Account' + OID = '1.2.840.113556.1.4.7000.102.50674' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Availability-Per-User-Account-BL' + lDAPDisplayName = 'msExchAvailabilityPerUserAccountBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Per-User-Account-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Availability-Per-User-Account-BL' + OID = '1.2.840.113556.1.4.7000.102.51462' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Availability-User-Name' + lDAPDisplayName = 'msExchAvailabilityUserName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-User-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-User-Name' + OID = '1.2.840.113556.1.4.7000.102.50670' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Availability-User-Password' + lDAPDisplayName = 'msExchAvailabilityUserPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-User-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-User-Password' + OID = '1.2.840.113556.1.4.7000.102.50671' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Availability-Use-Service-Account' + lDAPDisplayName = 'msExchAvailabilityUseServiceAccount' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Availability-Use-Service-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Availability-Use-Service-Account' + OID = '1.2.840.113556.1.4.7000.102.50672' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Available-Servers' + lDAPDisplayName = 'msExchAvailableServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Available-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Available-Servers' + OID = '1.2.840.113556.1.4.7000.102.9020' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-AV-Authentication-Service' + lDAPDisplayName = 'msExchAVAuthenticationService' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-AV-Authentication-Service' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-AV-Authentication-Service' + OID = '1.2.840.113556.1.4.7000.102.51587' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-BackEnd-VDir-URL' + lDAPDisplayName = 'msExchBackEndVDirURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-BackEnd-VDir-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-BackEnd-VDir-URL' + OID = '1.2.840.113556.1.4.7000.102.15012' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Background-Threads' + lDAPDisplayName = 'msExchBackgroundThreads' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Background-Threads' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Background-Threads' + OID = '1.2.840.113556.1.4.7000.102.11038' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Bar-Message-Class' + lDAPDisplayName = 'msExchBarMessageClass' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Bar-Message-Class' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bar-Message-Class' + OID = '1.2.840.113556.1.4.7000.102.1064' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Basic-Authentication-Domain' + lDAPDisplayName = 'msExchBasicAuthenticationDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Basic-Authentication-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Basic-Authentication-Domain' + OID = '1.2.840.113556.1.4.7000.102.2010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Blocked-Client-Versions' + lDAPDisplayName = 'msExchBlockedClientVersions' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Blocked-Client-Versions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Blocked-Client-Versions' + OID = '1.2.840.113556.1.4.7000.102.51049' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Blocked-Senders-Hash' + lDAPDisplayName = 'msExchBlockedSendersHash' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Blocked-Senders-Hash' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Blocked-Senders-Hash' + OID = '1.2.840.113556.1.4.7000.102.50976' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bridgeheaded-Local-Connectors-DN-BL' + lDAPDisplayName = 'msExchBridgeheadedLocalConnectorsDNBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Bridgeheaded-Local-Connectors-DN-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Bridgeheaded-Local-Connectors-DN-BL' + OID = '1.2.840.113556.1.4.7000.102.12515' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bridgeheaded-Remote-Connectors-DN-BL' + lDAPDisplayName = 'msExchBridgeheadedRemoteConnectorsDNBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Bridgeheaded-Remote-Connectors-DN-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Bridgeheaded-Remote-Connectors-DN-BL' + OID = '1.2.840.113556.1.4.7000.102.12516' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Bypass-Audit' + lDAPDisplayName = 'msExchBypassAudit' + oMSyntax = 1 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Bypass-Audit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Bypass-Audit' + OID = '1.2.840.113556.1.4.7000.102.51678' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bypass-Moderation-BL' + lDAPDisplayName = 'msExchBypassModerationBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Bypass-Moderation-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bypass-Moderation-BL' + OID = '1.2.840.113556.1.4.7000.102.51152' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bypass-Moderation-From-DL-Members-BL' + lDAPDisplayName = 'msExchBypassModerationFromDLMembersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Bypass-Moderation-From-DL-Members-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bypass-Moderation-From-DL-Members-BL' + OID = '1.2.840.113556.1.4.7000.102.51151' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bypass-Moderation-From-DL-Members-Link' + lDAPDisplayName = 'msExchBypassModerationFromDLMembersLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Bypass-Moderation-From-DL-Members-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bypass-Moderation-From-DL-Members-Link' + OID = '1.2.840.113556.1.4.7000.102.51141' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Bypass-Moderation-Link' + lDAPDisplayName = 'msExchBypassModerationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Bypass-Moderation-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Bypass-Moderation-Link' + OID = '1.2.840.113556.1.4.7000.102.51140' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CalCon-Client-Wait' + lDAPDisplayName = 'msExchCalConClientWait' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CalCon-Client-Wait' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CalCon-Client-Wait' + OID = '1.2.840.113556.1.4.7000.102.1043' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CalCon-Providers' + lDAPDisplayName = 'msExchCalConProviders' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CalCon-Providers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-CalCon-Providers' + OID = '1.2.840.113556.1.4.7000.102.1042' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CalCon-Query-Window' + lDAPDisplayName = 'msExchCalConQueryWindow' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CalCon-Query-Window' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CalCon-Query-Window' + OID = '1.2.840.113556.1.4.7000.102.1040' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CalCon-Refresh-Interval' + lDAPDisplayName = 'msExchCalConRefreshInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CalCon-Refresh-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CalCon-Refresh-Interval' + OID = '1.2.840.113556.1.4.7000.102.1041' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CalCon-Target-SiteDN' + lDAPDisplayName = 'msExchCalConTargetSiteDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CalCon-Target-SiteDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CalCon-Target-SiteDN' + OID = '1.2.840.113556.1.4.7000.102.1044' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Calculated-Target-Address' + lDAPDisplayName = 'msExchCalculatedTargetAddress' + oMSyntax = 1 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Calculated-Target-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calculated-Target-Address' + OID = '1.2.840.113556.1.4.7000.102.51754' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Logging-Quota' + lDAPDisplayName = 'msExchCalendarLoggingQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Calendar-Logging-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Logging-Quota' + OID = '1.2.840.113556.1.4.7000.102.52105' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Calendar-Repair-Disabled' + lDAPDisplayName = 'msExchCalendarRepairDisabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Disabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Disabled' + OID = '1.2.840.113556.1.4.7000.102.51336' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Repair-Flags' + lDAPDisplayName = 'msExchCalendarRepairFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Flags' + OID = '1.2.840.113556.1.4.7000.102.51340' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Repair-Interval-End-Window' + lDAPDisplayName = 'msExchCalendarRepairIntervalEndWindow' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Interval-End-Window' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Interval-End-Window' + OID = '1.2.840.113556.1.4.7000.102.51337' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Calendar-Repair-Interval-Start-Window' + lDAPDisplayName = 'msExchCalendarRepairIntervalStartWindow' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Interval-Start-Window' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Interval-Start-Window' + OID = '1.2.840.113556.1.4.7000.102.51338' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Repair-Log-File-Age-Limit' + lDAPDisplayName = 'msExchCalendarRepairLogFileAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Log-File-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Log-File-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.51341' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Repair-Log-File-Size-Limit' + lDAPDisplayName = 'msExchCalendarRepairLogFileSizeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Log-File-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Log-File-Size-Limit' + OID = '1.2.840.113556.1.4.7000.102.51342' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Calendar-Repair-Log-Path' + lDAPDisplayName = 'msExchCalendarRepairLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.51334' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Calendar-Repair-Max-Threads' + lDAPDisplayName = 'msExchCalendarRepairMaxThreads' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Calendar-Repair-Max-Threads' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Calendar-Repair-Max-Threads' + OID = '1.2.840.113556.1.4.7000.102.51339' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Canary-Data-0' + lDAPDisplayName = 'msExchCanaryData0' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Canary-Data-0' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Canary-Data-0' + OID = '1.2.840.113556.1.4.7000.102.52051' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Canary-Data-1' + lDAPDisplayName = 'msExchCanaryData1' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Canary-Data-1' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Canary-Data-1' + OID = '1.2.840.113556.1.4.7000.102.52052' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Canary-Data-2' + lDAPDisplayName = 'msExchCanaryData2' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Canary-Data-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Canary-Data-2' + OID = '1.2.840.113556.1.4.7000.102.52053' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Capability-Identifiers' + lDAPDisplayName = 'msExchCapabilityIdentifiers' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Capability-Identifiers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Capability-Identifiers' + OID = '1.2.840.113556.1.4.7000.102.51581' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-CA-Schema-Policy' + lDAPDisplayName = 'msExchCASchemaPolicy' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CA-Schema-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CA-Schema-Policy' + OID = '1.2.840.113556.1.4.7000.102.56' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Catalog' + lDAPDisplayName = 'msExchCatalog' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Catalog' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Catalog' + OID = '1.2.840.113556.1.4.7000.102.11052' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Catch-All-Recipient-BL' + lDAPDisplayName = 'msExchCatchAllRecipientBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Catch-All-Recipient-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Catch-All-Recipient-BL' + OID = '1.2.840.113556.1.4.7000.102.52120' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Catch-All-Recipient-Link' + lDAPDisplayName = 'msExchCatchAllRecipientLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Catch-All-Recipient-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Catch-All-Recipient-Link' + OID = '1.2.840.113556.1.4.7000.102.52117' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ccMail-ADE-Prop' + lDAPDisplayName = 'msExchccMailADEProp' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-ADE-Prop' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-ADE-Prop' + OID = '1.2.840.113556.1.4.7000.102.1036' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-ccMail-Connect-As-Password' + lDAPDisplayName = 'msExchccMailConnectAsPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Connect-As-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Connect-As-Password' + OID = '1.2.840.113556.1.4.7000.102.1207' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ccMail-Connect-As-Userid' + lDAPDisplayName = 'msExchccMailConnectAsUserid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Connect-As-Userid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Connect-As-Userid' + OID = '1.2.840.113556.1.4.7000.102.1206' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ccMail-Filter-Type' + lDAPDisplayName = 'msExchccMailFilterType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Filter-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Filter-Type' + OID = '1.2.840.113556.1.4.7000.102.1038' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ccMail-Import-Export-Version' + lDAPDisplayName = 'msExchccMailImportExportVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Import-Export-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Import-Export-Version' + OID = '1.2.840.113556.1.4.7000.102.1035' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ccMail-Keep-Forward-History' + lDAPDisplayName = 'msExchccMailKeepForwardHistory' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Keep-Forward-History' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Keep-Forward-History' + OID = '1.2.840.113556.1.4.7000.102.1037' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-ccMail-Password' + lDAPDisplayName = 'msExchccMailPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-Password' + OID = '1.2.840.113556.1.4.7000.102.1039' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ccMail-PO-Name' + lDAPDisplayName = 'msExchccMailPOName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-PO-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-PO-Name' + OID = '1.2.840.113556.1.4.7000.102.1031' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ccMail-PO-Path' + lDAPDisplayName = 'msExchccMailPOPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ccMail-PO-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ccMail-PO-Path' + OID = '1.2.840.113556.1.4.7000.102.1033' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Certificate' + lDAPDisplayName = 'msExchCertificate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Certificate' + OID = '1.2.840.113556.1.4.7000.102.9012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Access' + lDAPDisplayName = 'msExchChatAccess' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Access' + OID = '1.2.840.113556.1.4.7000.102.8044' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Admin-Message' + lDAPDisplayName = 'msExchChatAdminMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Admin-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Admin-Message' + OID = '1.2.840.113556.1.4.7000.102.8003' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Ban-Mask' + lDAPDisplayName = 'msExchChatBanMask' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Ban-Mask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Ban-Mask' + OID = '1.2.840.113556.1.4.7000.102.8040' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Ban-Reason' + lDAPDisplayName = 'msExchChatBanReason' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Ban-Reason' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Ban-Reason' + OID = '1.2.840.113556.1.4.7000.102.8043' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Broadcast-Address' + lDAPDisplayName = 'msExchChatBroadcastAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Broadcast-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Broadcast-Address' + OID = '1.2.840.113556.1.4.7000.102.8009' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Chat-Channel-Auto-Create' + lDAPDisplayName = 'msExchChatChannelAutoCreate' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Auto-Create' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Auto-Create' + OID = '1.2.840.113556.1.4.7000.102.8020' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Channel-Flags' + lDAPDisplayName = 'msExchChatChannelFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Flags' + OID = '1.2.840.113556.1.4.7000.102.8026' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Host-Key' + lDAPDisplayName = 'msExchChatChannelHostKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Host-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Host-Key' + OID = '1.2.840.113556.1.4.7000.102.8023' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Join-Message' + lDAPDisplayName = 'msExchChatChannelJoinMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Join-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Join-Message' + OID = '1.2.840.113556.1.4.7000.102.8030' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Key' + lDAPDisplayName = 'msExchChatChannelKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Key' + OID = '1.2.840.113556.1.4.7000.102.8021' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Language' + lDAPDisplayName = 'msExchChatChannelLanguage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Language' + OID = '1.2.840.113556.1.4.7000.102.8028' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Channel-LCID' + lDAPDisplayName = 'msExchChatChannelLCID' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-LCID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-LCID' + OID = '1.2.840.113556.1.4.7000.102.8029' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Channel-Limit' + lDAPDisplayName = 'msExchChatChannelLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Limit' + OID = '1.2.840.113556.1.4.7000.102.8010' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Channel-Mode' + lDAPDisplayName = 'msExchChatChannelMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Mode' + OID = '1.2.840.113556.1.4.7000.102.8006' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Name' + lDAPDisplayName = 'msExchChatChannelName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Name' + OID = '1.2.840.113556.1.4.7000.102.8019' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Owner-Key' + lDAPDisplayName = 'msExchChatChannelOwnerKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Owner-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Owner-Key' + OID = '1.2.840.113556.1.4.7000.102.8022' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Part-Message' + lDAPDisplayName = 'msExchChatChannelPartMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Part-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Part-Message' + OID = '1.2.840.113556.1.4.7000.102.8031' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-PICS' + lDAPDisplayName = 'msExchChatChannelPICS' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-PICS' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-PICS' + OID = '1.2.840.113556.1.4.7000.102.8027' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Subject' + lDAPDisplayName = 'msExchChatChannelSubject' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Subject' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Subject' + OID = '1.2.840.113556.1.4.7000.102.8025' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Channel-Topic' + lDAPDisplayName = 'msExchChatChannelTopic' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Channel-Topic' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Channel-Topic' + OID = '1.2.840.113556.1.4.7000.102.8024' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Class-Ident-Mask' + lDAPDisplayName = 'msExchChatClassIdentMask' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Class-Ident-Mask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Class-Ident-Mask' + OID = '1.2.840.113556.1.4.7000.102.8032' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Class-IP' + lDAPDisplayName = 'msExchChatClassIP' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Class-IP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Class-IP' + OID = '1.2.840.113556.1.4.7000.102.8033' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Class-Restrictions' + lDAPDisplayName = 'msExchChatClassRestrictions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Class-Restrictions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Class-Restrictions' + OID = '1.2.840.113556.1.4.7000.102.8046' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Chat-Class-Scope-Type' + lDAPDisplayName = 'msExchChatClassScopeType' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Class-Scope-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Class-Scope-Type' + OID = '1.2.840.113556.1.4.7000.102.8047' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Client-Port' + lDAPDisplayName = 'msExchChatClientPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Client-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Client-Port' + OID = '1.2.840.113556.1.4.7000.102.8007' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-DNS-Reverse-Mode' + lDAPDisplayName = 'msExchChatDNSReverseMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-DNS-Reverse-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-DNS-Reverse-Mode' + OID = '1.2.840.113556.1.4.7000.102.8013' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Chat-Duration' + lDAPDisplayName = 'msExchChatDuration' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Duration' + OID = '1.2.840.113556.1.4.7000.102.8042' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Chat-Enable-Anonymous' + lDAPDisplayName = 'msExchChatEnableAnonymous' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Enable-Anonymous' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Enable-Anonymous' + OID = '1.2.840.113556.1.4.7000.102.8011' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Chat-Enable-Authenticated' + lDAPDisplayName = 'msExchChatEnableAuthenticated' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Enable-Authenticated' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Enable-Authenticated' + OID = '1.2.840.113556.1.4.7000.102.8012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Extensions' + lDAPDisplayName = 'msExchChatExtensions' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Extensions' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Chat-Extensions' + OID = '1.2.840.113556.1.4.7000.102.8048' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Input-Flood-Limit' + lDAPDisplayName = 'msExchChatInputFloodLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Input-Flood-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Input-Flood-Limit' + OID = '1.2.840.113556.1.4.7000.102.8038' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Max-Anonymous' + lDAPDisplayName = 'msExchChatMaxAnonymous' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Max-Anonymous' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Max-Anonymous' + OID = '1.2.840.113556.1.4.7000.102.8015' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Max-Connections' + lDAPDisplayName = 'msExchChatMaxConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Max-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Max-Connections' + OID = '1.2.840.113556.1.4.7000.102.8014' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Max-Connections-Per-IP' + lDAPDisplayName = 'msExchChatMaxConnectionsPerIP' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Max-Connections-Per-IP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Max-Connections-Per-IP' + OID = '1.2.840.113556.1.4.7000.102.8049' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Max-Memberships' + lDAPDisplayName = 'msExchChatMaxMemberships' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Max-Memberships' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Max-Memberships' + OID = '1.2.840.113556.1.4.7000.102.8016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Max-Octets-To-Mask' + lDAPDisplayName = 'msExchChatMaxOctetsToMask' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Max-Octets-To-Mask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Max-Octets-To-Mask' + OID = '1.2.840.113556.1.4.7000.102.8050' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Message-Lag' + lDAPDisplayName = 'msExchChatMessageLag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Message-Lag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Message-Lag' + OID = '1.2.840.113556.1.4.7000.102.8034' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-MOTD' + lDAPDisplayName = 'msExchChatMOTD' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-MOTD' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-MOTD' + OID = '1.2.840.113556.1.4.7000.102.8004' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Network-Mode' + lDAPDisplayName = 'msExchChatNetworkMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Network-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Network-Mode' + OID = '1.2.840.113556.1.4.7000.102.8045' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Network-Name' + lDAPDisplayName = 'msExchChatNetworkName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Network-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Network-Name' + OID = '1.2.840.113556.1.4.7000.102.8001' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Nick-Delay' + lDAPDisplayName = 'msExchChatNickDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Nick-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Nick-Delay' + OID = '1.2.840.113556.1.4.7000.102.8036' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Output-Saturation' + lDAPDisplayName = 'msExchChatOutputSaturation' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Output-Saturation' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Output-Saturation' + OID = '1.2.840.113556.1.4.7000.102.8039' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Ping-Delay' + lDAPDisplayName = 'msExchChatPingDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Ping-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Ping-Delay' + OID = '1.2.840.113556.1.4.7000.102.8037' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Protection-Level' + lDAPDisplayName = 'msExchChatProtectionLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Protection-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Protection-Level' + OID = '1.2.840.113556.1.4.7000.102.8035' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Chat-Server-Port' + lDAPDisplayName = 'msExchChatServerPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Server-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Server-Port' + OID = '1.2.840.113556.1.4.7000.102.8008' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Chat-Start-Time' + lDAPDisplayName = 'msExchChatStartTime' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Start-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Start-Time' + OID = '1.2.840.113556.1.4.7000.102.8041' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Chat-Title' + lDAPDisplayName = 'msExchChatTitle' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Chat-Title' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Chat-Title' + OID = '1.2.840.113556.1.4.7000.102.8002' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Child-Sync-Agreements' + lDAPDisplayName = 'msExchChildSyncAgreements' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Child-Sync-Agreements' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Child-Sync-Agreements' + OID = '1.2.840.113556.1.4.7000.102.37' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-CI-Available' + lDAPDisplayName = 'msExchCIAvailable' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Available' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Available' + OID = '1.2.840.113556.1.4.7000.102.11066' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CI-Location' + lDAPDisplayName = 'msExchCILocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Location' + OID = '1.2.840.113556.1.4.7000.102.11068' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CI-MDB-Exclusion-List' + lDAPDisplayName = 'msExchCIMDBExclusionList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-MDB-Exclusion-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-CI-MDB-Exclusion-List' + OID = '1.2.840.113556.1.4.7000.102.50995' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-CI-Rebuild-Schedule' + lDAPDisplayName = 'msExchCIRebuildSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Rebuild-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Rebuild-Schedule' + OID = '1.2.840.113556.1.4.7000.102.11063' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CI-Rebuild-Style' + lDAPDisplayName = 'msExchCIRebuildStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Rebuild-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Rebuild-Style' + OID = '1.2.840.113556.1.4.7000.102.11065' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-CI-Update-Schedule' + lDAPDisplayName = 'msExchCIUpdateSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Update-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Update-Schedule' + OID = '1.2.840.113556.1.4.7000.102.11062' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CI-Update-Style' + lDAPDisplayName = 'msExchCIUpdateStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CI-Update-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CI-Update-Style' + OID = '1.2.840.113556.1.4.7000.102.11064' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Class-Factory' + lDAPDisplayName = 'msExchClassFactory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Class-Factory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Class-Factory' + OID = '1.2.840.113556.1.4.7000.102.51138' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Cluster-Replication-Ordered-Prefixes' + lDAPDisplayName = 'msExchClusterReplicationOrderedPrefixes' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Cluster-Replication-Ordered-Prefixes' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Cluster-Replication-Ordered-Prefixes' + OID = '1.2.840.113556.1.4.7000.102.50677' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Cluster-Storage-Type' + lDAPDisplayName = 'msExchClusterStorageType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Cluster-Storage-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Cluster-Storage-Type' + OID = '1.2.840.113556.1.4.7000.102.50678' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Cmdlet-Extension-Flags' + lDAPDisplayName = 'msExchCmdletExtensionFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Cmdlet-Extension-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Cmdlet-Extension-Flags' + OID = '1.2.840.113556.1.4.7000.102.51139' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Coexistence-Domains' + lDAPDisplayName = 'msExchCoexistenceDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-Domains' + OID = '1.2.840.113556.1.4.7000.102.51854' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Coexistence-Edge-Transport-Servers' + lDAPDisplayName = 'msExchCoexistenceEdgeTransportServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Edge-Transport-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-Edge-Transport-Servers' + OID = '1.2.840.113556.1.4.7000.102.52104' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Coexistence-External-IP-Addresses' + lDAPDisplayName = 'msExchCoexistenceExternalIPAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-External-IP-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-External-IP-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51856' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Coexistence-Feature-Flags' + lDAPDisplayName = 'msExchCoexistenceFeatureFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Feature-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Coexistence-Feature-Flags' + OID = '1.2.840.113556.1.4.7000.102.51855' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Coexistence-Frontend-Transport-Servers' + lDAPDisplayName = 'msExchCoexistenceFrontendTransportServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Frontend-Transport-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-Frontend-Transport-Servers' + OID = '1.2.840.113556.1.4.7000.102.52106' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Coexistence-On-Premises-Smart-Host' + lDAPDisplayName = 'msExchCoexistenceOnPremisesSmartHost' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-On-Premises-Smart-Host' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Coexistence-On-Premises-Smart-Host' + OID = '1.2.840.113556.1.4.7000.102.51992' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Coexistence-Secure-Mail-Certificate-Thumbprint' + lDAPDisplayName = 'msExchCoexistenceSecureMailCertificateThumbprint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Secure-Mail-Certificate-Thumbprint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Coexistence-Secure-Mail-Certificate-Thumbprint' + OID = '1.2.840.113556.1.4.7000.102.51991' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Coexistence-Servers' + lDAPDisplayName = 'msExchCoexistenceServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-Servers' + OID = '1.2.840.113556.1.4.7000.102.51853' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Coexistence-Transport-Servers' + lDAPDisplayName = 'msExchCoexistenceTransportServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Coexistence-Transport-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Coexistence-Transport-Servers' + OID = '1.2.840.113556.1.4.7000.102.51990' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Co-Managed-By-Link' + lDAPDisplayName = 'msExchCoManagedByLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Co-Managed-By-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Co-Managed-By-Link' + OID = '1.2.840.113556.1.4.7000.102.50953' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Co-Managed-Objects-BL' + lDAPDisplayName = 'msExchCoManagedObjectsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Co-Managed-Objects-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Co-Managed-Objects-BL' + OID = '1.2.840.113556.1.4.7000.102.50954' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Community-URL' + lDAPDisplayName = 'msExchCommunityURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Community-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Community-URL' + OID = '1.2.840.113556.1.4.7000.102.51665' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Community-URL-Enabled' + lDAPDisplayName = 'msExchCommunityURLEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Community-URL-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Community-URL-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51666' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Component-States' + lDAPDisplayName = 'msExchComponentStates' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Component-States' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Component-States' + OID = '1.2.840.113556.1.4.7000.102.52088' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Computer-Link' + lDAPDisplayName = 'msExchComputerLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Computer-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Computer-Link' + OID = '1.2.840.113556.1.4.7000.102.72' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Conference-Mailbox' + lDAPDisplayName = 'msExchConferenceMailbox' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Conference-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Conference-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.9029' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Conference-Mailbox-BL' + lDAPDisplayName = 'msExchConferenceMailboxBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Conference-Mailbox-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Conference-Mailbox-BL' + OID = '1.2.840.113556.1.4.7000.102.9030' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Conference-Zone' + lDAPDisplayName = 'msExchConferenceZone' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Conference-Zone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Conference-Zone' + OID = '1.2.840.113556.1.4.7000.102.9015' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Conference-Zone-BL' + lDAPDisplayName = 'msExchConferenceZoneBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Conference-Zone-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Conference-Zone-BL' + OID = '1.2.840.113556.1.4.7000.102.9024' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Config-Filter' + lDAPDisplayName = 'msExchConfigFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Config-Filter' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Config-Filter' + OID = '1.2.840.113556.1.4.7000.102.51432' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Config-Restriction-BL' + lDAPDisplayName = 'msExchConfigRestrictionBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Config-Restriction-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Config-Restriction-BL' + OID = '1.2.840.113556.1.4.7000.102.51054' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Config-Restriction-Link' + lDAPDisplayName = 'msExchConfigRestrictionLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Config-Restriction-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Config-Restriction-Link' + OID = '1.2.840.113556.1.4.7000.102.50949' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Configuration-Unit-BL' + lDAPDisplayName = 'msExchConfigurationUnitBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Configuration-Unit-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Configuration-Unit-BL' + OID = '1.2.840.113556.1.4.7000.102.50919' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Configuration-Unit-Link' + lDAPDisplayName = 'msExchConfigurationUnitLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Configuration-Unit-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Configuration-Unit-Link' + OID = '1.2.840.113556.1.4.7000.102.50918' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Configuration-XML' + lDAPDisplayName = 'msExchConfigurationXML' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Configuration-XML' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Configuration-XML' + OID = '1.2.840.113556.1.4.7000.102.52076' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Connector-Type' + lDAPDisplayName = 'msExchConnectorType' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Connector-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Connector-Type' + OID = '1.2.840.113556.1.4.7000.102.12508' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Flags' + lDAPDisplayName = 'msExchContentAggregationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Flags' + OID = '1.2.840.113556.1.4.7000.102.51320' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Accepted-Jobs-Per-Processor' + lDAPDisplayName = 'msExchContentAggregationMaxAcceptedJobsPerProcessor' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Accepted-Jobs-Per-Processor' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Accepted-Jobs-Per-Processor' + OID = '1.2.840.113556.1.4.7000.102.51296' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Active-Jobs-Per-Processor' + lDAPDisplayName = 'msExchContentAggregationMaxActiveJobsPerProcessor' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Active-Jobs-Per-Processor' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Active-Jobs-Per-Processor' + OID = '1.2.840.113556.1.4.7000.102.51297' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Dispatchers' + lDAPDisplayName = 'msExchContentAggregationMaxDispatchers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Dispatchers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Dispatchers' + OID = '1.2.840.113556.1.4.7000.102.51316' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Download-Items-Per-Connection' + lDAPDisplayName = 'msExchContentAggregationMaxDownloadItemsPerConnection' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Download-Items-Per-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Download-Items-Per-Connection' + OID = '1.2.840.113556.1.4.7000.102.51313' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Connection' + lDAPDisplayName = 'msExchContentAggregationMaxDownloadSizePerConnection' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Connection' + OID = '1.2.840.113556.1.4.7000.102.51312' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Item' + lDAPDisplayName = 'msExchContentAggregationMaxDownloadSizePerItem' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Item' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Download-Size-Per-Item' + OID = '1.2.840.113556.1.4.7000.102.51311' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Aggregation-Max-Number-Of-Attempts' + lDAPDisplayName = 'msExchContentAggregationMaxNumberOfAttempts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Max-Number-Of-Attempts' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Max-Number-Of-Attempts' + OID = '1.2.840.113556.1.4.7000.102.51295' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Content-Aggregation-Proxy-Server-URL' + lDAPDisplayName = 'msExchContentAggregationProxyServerURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Proxy-Server-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Proxy-Server-URL' + OID = '1.2.840.113556.1.4.7000.102.51298' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Content-Aggregation-Remote-Connection-Timeout' + lDAPDisplayName = 'msExchContentAggregationRemoteConnectionTimeout' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Aggregation-Remote-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Aggregation-Remote-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.51310' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Byte-Encoder-Type-For-7-Bit-Charsets' + lDAPDisplayName = 'msExchContentByteEncoderTypeFor7BitCharsets' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Byte-Encoder-Type-For-7-Bit-Charsets' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Byte-Encoder-Type-For-7-Bit-Charsets' + OID = '1.2.840.113556.1.4.7000.102.51954' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Conversion-Settings' + lDAPDisplayName = 'msExchContentConversionSettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Conversion-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Conversion-Settings' + OID = '1.2.840.113556.1.4.7000.102.51490' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Preferred-Internet-Code-Page-For-Shift-Jis' + lDAPDisplayName = 'msExchContentPreferredInternetCodePageForShiftJis' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Preferred-Internet-Code-Page-For-Shift-Jis' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Preferred-Internet-Code-Page-For-Shift-Jis' + OID = '1.2.840.113556.1.4.7000.102.51955' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Content-Required-Char-Set-Coverage' + lDAPDisplayName = 'msExchContentRequiredCharSetCoverage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Content-Required-Char-Set-Coverage' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Content-Required-Char-Set-Coverage' + OID = '1.2.840.113556.1.4.7000.102.51953' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Continuous-Replication-Max-Memory-Per-MDB' + lDAPDisplayName = 'msExchContinuousReplicationMaxMemoryPerMDB' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Continuous-Replication-Max-Memory-Per-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Continuous-Replication-Max-Memory-Per-MDB' + OID = '1.2.840.113556.1.4.7000.102.51281' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Controlling-Zone' + lDAPDisplayName = 'msExchControllingZone' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Controlling-Zone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Controlling-Zone' + OID = '1.2.840.113556.1.4.7000.102.9026' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Control-Panel-Feedback-Enabled' + lDAPDisplayName = 'msExchControlPanelFeedbackEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Panel-Feedback-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Panel-Feedback-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51026' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Control-Panel-Feedback-URL' + lDAPDisplayName = 'msExchControlPanelFeedbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Panel-Feedback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Panel-Feedback-URL' + OID = '1.2.840.113556.1.4.7000.102.50984' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Control-Panel-Help-URL' + lDAPDisplayName = 'msExchControlPanelHelpURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Panel-Help-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Panel-Help-URL' + OID = '1.2.840.113556.1.4.7000.102.50983' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Control-Point-Flags' + lDAPDisplayName = 'msExchControlPointFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Control-Point-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Control-Point-Flags' + OID = '1.2.840.113556.1.4.7000.102.51388' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Convert-To-Fixed-Font' + lDAPDisplayName = 'msExchConvertToFixedFont' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Convert-To-Fixed-Font' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Convert-To-Fixed-Font' + OID = '1.2.840.113556.1.4.7000.102.11021' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Copy-EDB-File' + lDAPDisplayName = 'msExchCopyEDBFile' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Copy-EDB-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Copy-EDB-File' + OID = '1.2.840.113556.1.4.7000.102.50418' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Correlation-Attribute' + lDAPDisplayName = 'msExchCorrelationAttribute' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Correlation-Attribute' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Correlation-Attribute' + OID = '1.2.840.113556.1.4.7000.102.43' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Correlation-Id' + lDAPDisplayName = 'msExchCorrelationId' + oMSyntax = 4 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Correlation-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Correlation-Id' + OID = '1.2.840.113556.1.4.7000.102.52065' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Cost' + lDAPDisplayName = 'msExchCost' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Cost' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Cost' + OID = '1.2.840.113556.1.4.7000.102.50852' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Countries' + lDAPDisplayName = 'msExchCountries' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Countries' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Countries' + OID = '1.2.840.113556.1.4.7000.102.51768' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CTP-Class-GUID' + lDAPDisplayName = 'msExchCTPClassGUID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Class-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Class-GUID' + OID = '1.2.840.113556.1.4.7000.102.9008' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-CTP-Frame-Hint' + lDAPDisplayName = 'msExchCTPFrameHint' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Frame-Hint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Frame-Hint' + OID = '1.2.840.113556.1.4.7000.102.9010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CTP-Property-Schema' + lDAPDisplayName = 'msExchCTPPropertySchema' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Property-Schema' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-CTP-Property-Schema' + OID = '1.2.840.113556.1.4.7000.102.9022' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CTP-Provider-GUID' + lDAPDisplayName = 'msExchCTPProviderGUID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Provider-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Provider-GUID' + OID = '1.2.840.113556.1.4.7000.102.9007' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CTP-Provider-Name' + lDAPDisplayName = 'msExchCTPProviderName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Provider-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Provider-Name' + OID = '1.2.840.113556.1.4.7000.102.9021' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-CTP-Require-CMS-Authentication' + lDAPDisplayName = 'msExchCTPRequireCMSAuthentication' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Require-CMS-Authentication' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Require-CMS-Authentication' + OID = '1.2.840.113556.1.4.7000.102.9023' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-CTP-Snapin-GUID' + lDAPDisplayName = 'msExchCTPSnapinGUID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-CTP-Snapin-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CTP-Snapin-GUID' + OID = '1.2.840.113556.1.4.7000.102.9009' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-CU' + lDAPDisplayName = 'msExchCU' + oMSyntax = 127 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-CU' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-CU' + OID = '1.2.840.113556.1.4.7000.102.50920' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Current-Server-Roles' + lDAPDisplayName = 'msExchCurrentServerRoles' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Current-Server-Roles' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Current-Server-Roles' + OID = '1.2.840.113556.1.4.7000.102.50469' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Customer-Expectation-Critical' + lDAPDisplayName = 'msExchCustomerExpectationCritical' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Customer-Expectation-Critical' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Customer-Expectation-Critical' + OID = '1.2.840.113556.1.4.7000.102.51838' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Customer-Expectation-Overloaded' + lDAPDisplayName = 'msExchCustomerExpectationOverloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Customer-Expectation-Overloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Customer-Expectation-Overloaded' + OID = '1.2.840.113556.1.4.7000.102.51830' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Customer-Expectation-Underloaded' + lDAPDisplayName = 'msExchCustomerExpectationUnderloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Customer-Expectation-Underloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Customer-Expectation-Underloaded' + OID = '1.2.840.113556.1.4.7000.102.51829' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Customer-Feedback-Enabled' + lDAPDisplayName = 'msExchCustomerFeedbackEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Customer-Feedback-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Customer-Feedback-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50981' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Customer-Feedback-URL' + lDAPDisplayName = 'msExchCustomerFeedbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Customer-Feedback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Customer-Feedback-URL' + OID = '1.2.840.113556.1.4.7000.102.50997' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Custom-Proxy-Addresses' + lDAPDisplayName = 'msExchCustomProxyAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Custom-Proxy-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Custom-Proxy-Addresses' + OID = '1.2.840.113556.1.4.7000.102.50049' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Database-Being-Restored' + lDAPDisplayName = 'msExchDatabaseBeingRestored' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Database-Being-Restored' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Database-Being-Restored' + OID = '1.2.840.113556.1.4.7000.102.11085' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Database-Created' + lDAPDisplayName = 'msExchDatabaseCreated' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Database-Created' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Database-Created' + OID = '1.2.840.113556.1.4.7000.102.11084' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Database-Group' + lDAPDisplayName = 'msExchDatabaseGroup' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Database-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Database-Group' + OID = '1.2.840.113556.1.4.7000.102.52102' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Database-Session-Addend' + lDAPDisplayName = 'msExchDatabaseSessionAddend' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Database-Session-Addend' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Database-Session-Addend' + OID = '1.2.840.113556.1.4.7000.102.11039' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Database-Session-Increment' + lDAPDisplayName = 'msExchDatabaseSessionIncrement' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Database-Session-Increment' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Database-Session-Increment' + OID = '1.2.840.113556.1.4.7000.102.11040' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Datacenter-Activation-Mode' + lDAPDisplayName = 'msExchDatacenterActivationMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Datacenter-Activation-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Datacenter-Activation-Mode' + OID = '1.2.840.113556.1.4.7000.102.51276' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Data-Encryption-Policy-BL' + lDAPDisplayName = 'msExchDataEncryptionPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Data-Encryption-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Data-Encryption-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.52152' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Data-Encryption-Policy-Link' + lDAPDisplayName = 'msExchDataEncryptionPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Data-Encryption-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Data-Encryption-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.52151' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Data-Loss-For-Auto-Database-Mount' + lDAPDisplayName = 'msExchDataLossForAutoDatabaseMount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Data-Loss-For-Auto-Database-Mount' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Data-Loss-For-Auto-Database-Mount' + OID = '1.2.840.113556.1.4.7000.102.50679' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Data-Move-Replication-Constraint' + lDAPDisplayName = 'msExchDataMoveReplicationConstraint' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Data-Move-Replication-Constraint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Data-Move-Replication-Constraint' + OID = '1.2.840.113556.1.4.7000.102.51553' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Data-Path' + lDAPDisplayName = 'msExchDataPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Data-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Data-Path' + OID = '1.2.840.113556.1.4.7000.102.50052' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Default-Admin-Group' + lDAPDisplayName = 'msExchDefaultAdminGroup' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Admin-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Admin-Group' + OID = '1.2.840.113556.1.4.7000.102.50015' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Default-Domain' + lDAPDisplayName = 'msExchDefaultDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Domain' + OID = '1.2.840.113556.1.4.7000.102.2012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Default-Load-File' + lDAPDisplayName = 'msExchDefaultLoadFile' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Load-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Load-File' + OID = '1.2.840.113556.1.4.7000.102.15010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Default-Logon-Domain' + lDAPDisplayName = 'msExchDefaultLogonDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Logon-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Logon-Domain' + OID = '1.2.840.113556.1.4.7000.102.15001' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Default-Public-Folder-Mailbox' + lDAPDisplayName = 'msExchDefaultPublicFolderMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 25 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Default-Public-Folder-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Public-Folder-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.51805' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Default-Public-MDB' + lDAPDisplayName = 'msExchDefaultPublicMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Public-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Default-Public-MDB' + OID = '1.2.840.113556.1.4.7000.102.51591' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Default-Public-MDB-BL' + lDAPDisplayName = 'msExchDefaultPublicMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Default-Public-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Default-Public-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51592' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Delegate-List-BL' + lDAPDisplayName = 'msExchDelegateListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Delegate-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Delegate-List-BL' + OID = '1.2.840.113556.1.4.7000.102.51538' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Delegate-List-Link' + lDAPDisplayName = 'msExchDelegateListLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Delegate-List-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Delegate-List-Link' + OID = '1.2.840.113556.1.4.7000.102.51530' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Deletion-Period' + lDAPDisplayName = 'msExchDeletionPeriod' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Deletion-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Deletion-Period' + OID = '1.2.840.113556.1.4.7000.102.51758' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Delivery-Order' + lDAPDisplayName = 'msExchDeliveryOrder' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Delivery-Order' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Delivery-Order' + OID = '1.2.840.113556.1.4.7000.102.1003' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Delta-Sync-Client-Certificate-Thumbprint' + lDAPDisplayName = 'msExchDeltaSyncClientCertificateThumbprint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Delta-Sync-Client-Certificate-Thumbprint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Delta-Sync-Client-Certificate-Thumbprint' + OID = '1.2.840.113556.1.4.7000.102.51314' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Dereference-Aliases' + lDAPDisplayName = 'msExchDereferenceAliases' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dereference-Aliases' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dereference-Aliases' + OID = '1.2.840.113556.1.4.7000.102.2' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Dest-BH-Address' + lDAPDisplayName = 'msExchDestBHAddress' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dest-BH-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dest-BH-Address' + OID = '1.2.840.113556.1.4.7000.102.12510' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Destination-RG-DN' + lDAPDisplayName = 'msExchDestinationRGDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Destination-RG-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Destination-RG-DN' + OID = '1.2.840.113556.1.4.7000.102.12507' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Device-Access-Control-Rule-BL' + lDAPDisplayName = 'msExchDeviceAccessControlRuleBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Device-Access-Control-Rule-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Device-Access-Control-Rule-BL' + OID = '1.2.840.113556.1.4.7000.102.51504' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Device-Access-Control-Rule-Link' + lDAPDisplayName = 'msExchDeviceAccessControlRuleLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Access-Control-Rule-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Access-Control-Rule-Link' + OID = '1.2.840.113556.1.4.7000.102.51502' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Device-Access-Rule-Characteristic' + lDAPDisplayName = 'msExchDeviceAccessRuleCharacteristic' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Device-Access-Rule-Characteristic' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Access-Rule-Characteristic' + OID = '1.2.840.113556.1.4.7000.102.51498' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Access-Rule-Query-String' + lDAPDisplayName = 'msExchDeviceAccessRuleQueryString' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Device-Access-Rule-Query-String' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Access-Rule-Query-String' + OID = '1.2.840.113556.1.4.7000.102.51497' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Device-Access-State' + lDAPDisplayName = 'msExchDeviceAccessState' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Access-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Access-State' + OID = '1.2.840.113556.1.4.7000.102.51499' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Device-Access-State-Reason' + lDAPDisplayName = 'msExchDeviceAccessStateReason' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Access-State-Reason' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Access-State-Reason' + OID = '1.2.840.113556.1.4.7000.102.51500' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Device-Client-Type' + lDAPDisplayName = 'msExchDeviceClientType' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Client-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Client-Type' + OID = '1.2.840.113556.1.4.7000.102.51861' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-EAS-Version' + lDAPDisplayName = 'msExchDeviceEASVersion' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-EAS-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-EAS-Version' + OID = '1.2.840.113556.1.4.7000.102.51501' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Friendly-Name' + lDAPDisplayName = 'msExchDeviceFriendlyName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Friendly-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Friendly-Name' + OID = '1.2.840.113556.1.4.7000.102.50930' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Device-Health' + lDAPDisplayName = 'msExchDeviceHealth' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Health' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Health' + OID = '1.2.840.113556.1.4.7000.102.50934' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-ID' + lDAPDisplayName = 'msExchDeviceID' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-ID' + OID = '1.2.840.113556.1.4.7000.102.50922' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-IMEI' + lDAPDisplayName = 'msExchDeviceIMEI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-IMEI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-IMEI' + OID = '1.2.840.113556.1.4.7000.102.50926' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Mobile-Operator' + lDAPDisplayName = 'msExchDeviceMobileOperator' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Mobile-Operator' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Mobile-Operator' + OID = '1.2.840.113556.1.4.7000.102.50931' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Model' + lDAPDisplayName = 'msExchDeviceModel' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Model' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Model' + OID = '1.2.840.113556.1.4.7000.102.51038' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-OS' + lDAPDisplayName = 'msExchDeviceOS' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-OS' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-OS' + OID = '1.2.840.113556.1.4.7000.102.50927' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-OS-Language' + lDAPDisplayName = 'msExchDeviceOSLanguage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-OS-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-OS-Language' + OID = '1.2.840.113556.1.4.7000.102.50928' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Telephone-Number' + lDAPDisplayName = 'msExchDeviceTelephoneNumber' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Telephone-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Telephone-Number' + OID = '1.2.840.113556.1.4.7000.102.50929' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-Type' + lDAPDisplayName = 'msExchDeviceType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-Type' + OID = '1.2.840.113556.1.4.7000.102.50923' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Device-User-Agent' + lDAPDisplayName = 'msExchDeviceUserAgent' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Device-User-Agent' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Device-User-Agent' + OID = '1.2.840.113556.1.4.7000.102.50925' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Dir-Browse-Flags' + lDAPDisplayName = 'msExchDirBrowseFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dir-Browse-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dir-Browse-Flags' + OID = '1.2.840.113556.1.4.7000.102.15005' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Authority-Metadata' + lDAPDisplayName = 'msExchDirsyncAuthorityMetadata' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Authority-Metadata' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Dirsync-Authority-Metadata' + OID = '1.2.840.113556.1.4.7000.102.51789' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Filters' + lDAPDisplayName = 'msExchDirsyncFilters' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Filters' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Dirsync-Filters' + OID = '1.2.840.113556.1.4.7000.102.1005' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-ID' + lDAPDisplayName = 'msExchDirsyncID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dirsync-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dirsync-ID' + OID = '1.2.840.113556.1.4.7000.102.51414' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Id-Source-Attribute' + lDAPDisplayName = 'msExchDirsyncIdSourceAttribute' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Id-Source-Attribute' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dirsync-Id-Source-Attribute' + OID = '1.2.840.113556.1.4.7000.102.51423' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Dirsync-Schedule' + lDAPDisplayName = 'msExchDirsyncSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dirsync-Schedule' + OID = '1.2.840.113556.1.4.7000.102.1008' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Dir-Sync-Service-Instance' + lDAPDisplayName = 'msExchDirSyncServiceInstance' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dir-Sync-Service-Instance' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dir-Sync-Service-Instance' + OID = '1.2.840.113556.1.4.7000.102.51797' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Source-Object-Class' + lDAPDisplayName = 'msExchDirsyncSourceObjectClass' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Source-Object-Class' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dirsync-Source-Object-Class' + OID = '1.2.840.113556.1.4.7000.102.51746' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Status' + lDAPDisplayName = 'msExchDirsyncStatus' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Status' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Dirsync-Status' + OID = '1.2.840.113556.1.4.7000.102.51787' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dirsync-Status-Ack' + lDAPDisplayName = 'msExchDirsyncStatusAck' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Status-Ack' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Dirsync-Status-Ack' + OID = '1.2.840.113556.1.4.7000.102.51788' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Dirsync-Style' + lDAPDisplayName = 'msExchDirsyncStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Dirsync-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dirsync-Style' + OID = '1.2.840.113556.1.4.7000.102.1009' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Disabled-Archive-Database-Link' + lDAPDisplayName = 'msExchDisabledArchiveDatabaseLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Disabled-Archive-Database-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Disabled-Archive-Database-Link' + OID = '1.2.840.113556.1.4.7000.102.51766' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Disabled-Archive-Database-Link-SL' + lDAPDisplayName = 'msExchDisabledArchiveDatabaseLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Disabled-Archive-Database-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Disabled-Archive-Database-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51932' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Disabled-Archive-GUID' + lDAPDisplayName = 'msExchDisabledArchiveGUID' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Disabled-Archive-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Disabled-Archive-GUID' + OID = '1.2.840.113556.1.4.7000.102.51765' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Disable-UDG-Conversion' + lDAPDisplayName = 'msExchDisableUDGConversion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Disable-UDG-Conversion' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Disable-UDG-Conversion' + OID = '1.2.840.113556.1.4.7000.102.11088' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Discretionary-Critical' + lDAPDisplayName = 'msExchDiscretionaryCritical' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Discretionary-Critical' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Discretionary-Critical' + OID = '1.2.840.113556.1.4.7000.102.51836' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Discretionary-Overloaded' + lDAPDisplayName = 'msExchDiscretionaryOverloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Discretionary-Overloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Discretionary-Overloaded' + OID = '1.2.840.113556.1.4.7000.102.51824' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Discretionary-Underloaded' + lDAPDisplayName = 'msExchDiscretionaryUnderloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Discretionary-Underloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Discretionary-Underloaded' + OID = '1.2.840.113556.1.4.7000.102.51823' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Discussion-Folder' + lDAPDisplayName = 'msExchDiscussionFolder' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Discussion-Folder' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Discussion-Folder' + OID = '1.2.840.113556.1.4.7000.102.14002' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Distribution-Group-Default-OU' + lDAPDisplayName = 'msExchDistributionGroupDefaultOU' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Distribution-Group-Default-OU' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Distribution-Group-Default-OU' + OID = '1.2.840.113556.1.4.7000.102.51605' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Distribution-Group-Name-Blocked-Words-List' + lDAPDisplayName = 'msExchDistributionGroupNameBlockedWordsList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Distribution-Group-Name-Blocked-Words-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Distribution-Group-Name-Blocked-Words-List' + OID = '1.2.840.113556.1.4.7000.102.51604' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Distribution-Group-Naming-Policy' + lDAPDisplayName = 'msExchDistributionGroupNamingPolicy' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Distribution-Group-Naming-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Distribution-Group-Naming-Policy' + OID = '1.2.840.113556.1.4.7000.102.51603' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Distribution-List-Count-Quota' + lDAPDisplayName = 'msExchDistributionListCountQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Distribution-List-Count-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Distribution-List-Count-Quota' + OID = '1.2.840.113556.1.4.7000.102.51008' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Distribution-List-OU' + lDAPDisplayName = 'msExchDistributionListOU' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Distribution-List-OU' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Distribution-List-OU' + OID = '1.2.840.113556.1.4.7000.102.51015' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Do-Full-Replication' + lDAPDisplayName = 'msExchDoFullReplication' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Do-Full-Replication' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Do-Full-Replication' + OID = '1.2.840.113556.1.4.7000.102.38' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Domain-Content-Config-Flags' + lDAPDisplayName = 'msExchDomainContentConfigFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Content-Config-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Content-Config-Flags' + OID = '1.2.840.113556.1.4.7000.102.50736' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Domain-Global-Group-Guid' + lDAPDisplayName = 'msExchDomainGlobalGroupGuid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Global-Group-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Global-Group-Guid' + OID = '1.2.840.113556.1.4.7000.102.50089' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Domain-Global-Group-Sid' + lDAPDisplayName = 'msExchDomainGlobalGroupSid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Global-Group-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Global-Group-Sid' + OID = '1.2.840.113556.1.4.7000.102.50091' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Domain-Link' + lDAPDisplayName = 'msExchDomainLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Link' + OID = '1.2.840.113556.1.4.7000.102.76' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Domain-Local-Group-Guid' + lDAPDisplayName = 'msExchDomainLocalGroupGuid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Local-Group-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Local-Group-Guid' + OID = '1.2.840.113556.1.4.7000.102.50088' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Domain-Local-Group-Sid' + lDAPDisplayName = 'msExchDomainLocalGroupSid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Local-Group-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Local-Group-Sid' + OID = '1.2.840.113556.1.4.7000.102.50090' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Domain-Restriction-BL' + lDAPDisplayName = 'msExchDomainRestrictionBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Restriction-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Domain-Restriction-BL' + OID = '1.2.840.113556.1.4.7000.102.51055' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Domain-Restriction-Link' + lDAPDisplayName = 'msExchDomainRestrictionLink' + oMSyntax = 127 + Optional = $True + searchFlags = 2 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Domain-Restriction-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Domain-Restriction-Link' + OID = '1.2.840.113556.1.4.7000.102.50948' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-DownGrade-Multipart-Signed' + lDAPDisplayName = 'msExchDownGradeMultipartSigned' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DownGrade-Multipart-Signed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DownGrade-Multipart-Signed' + OID = '1.2.840.113556.1.4.7000.102.11020' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DS2MB-Options' + lDAPDisplayName = 'msExchDS2MBOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DS2MB-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DS2MB-Options' + OID = '1.2.840.113556.1.4.7000.102.14001' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-DSN-Flags' + lDAPDisplayName = 'msExchDSNFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DSN-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DSN-Flags' + OID = '1.2.840.113556.1.4.7000.102.50601' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DSN-Send-Copy-To-Admin' + lDAPDisplayName = 'msExchDSNSendCopyToAdmin' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DSN-Send-Copy-To-Admin' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-DSN-Send-Copy-To-Admin' + OID = '1.2.840.113556.1.4.7000.102.50693' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-DSN-Text' + lDAPDisplayName = 'msExchDSNText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-DSN-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-DSN-Text' + OID = '1.2.840.113556.1.4.7000.102.50600' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Dumpster-Quota' + lDAPDisplayName = 'msExchDumpsterQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dumpster-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dumpster-Quota' + OID = '1.2.840.113556.1.4.7000.102.51508' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Dumpster-Warning-Quota' + lDAPDisplayName = 'msExchDumpsterWarningQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dumpster-Warning-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dumpster-Warning-Quota' + OID = '1.2.840.113556.1.4.7000.102.51509' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Dynamic-DL-BaseDN' + lDAPDisplayName = 'msExchDynamicDLBaseDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dynamic-DL-BaseDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dynamic-DL-BaseDN' + OID = '1.2.840.113556.1.4.7000.102.12543' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Dynamic-DL-Filter' + lDAPDisplayName = 'msExchDynamicDLFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Dynamic-DL-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Dynamic-DL-Filter' + OID = '1.2.840.113556.1.4.7000.102.12544' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-EAS-Throttling-Policy-State' + lDAPDisplayName = 'msExchEASThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EAS-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EAS-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51155' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-EAS-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchEASThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EAS-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EAS-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52043' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-EDB-File' + lDAPDisplayName = 'msExchEDBFile' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EDB-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EDB-File' + OID = '1.2.840.113556.1.4.7000.102.11001' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-EDB-Offline' + lDAPDisplayName = 'msExchEDBOffline' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EDB-Offline' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EDB-Offline' + OID = '1.2.840.113556.1.4.7000.102.11007' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Adam-Ldap-Port' + lDAPDisplayName = 'msExchEdgeSyncAdamLdapPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Adam-Ldap-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Adam-Ldap-Port' + OID = '1.2.840.113556.1.4.7000.102.50874' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Adam-SSL-Port' + lDAPDisplayName = 'msExchEdgeSyncAdamSSLPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Adam-SSL-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Adam-SSL-Port' + OID = '1.2.840.113556.1.4.7000.102.50873' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Advanced-Configuration' + lDAPDisplayName = 'msExchEdgeSyncAdvancedConfiguration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Advanced-Configuration' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Edge-Sync-Advanced-Configuration' + OID = '1.2.840.113556.1.4.7000.102.51507' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Config-Flags' + lDAPDisplayName = 'msExchEdgeSyncConfigFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Config-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Config-Flags' + OID = '1.2.840.113556.1.4.7000.102.51786' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Configuration-Sync-Interval' + lDAPDisplayName = 'msExchEdgeSyncConfigurationSyncInterval' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Configuration-Sync-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Configuration-Sync-Interval' + OID = '1.2.840.113556.1.4.7000.102.51171' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Edge-Sync-Connector-Version' + lDAPDisplayName = 'msExchEdgeSyncConnectorVersion' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Connector-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Connector-Version' + OID = '1.2.840.113556.1.4.7000.102.51621' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Cookies' + lDAPDisplayName = 'msExchEdgeSyncCookies' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Cookies' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Edge-Sync-Cookies' + OID = '1.2.840.113556.1.4.7000.102.50960' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Cookie-Valid-Duration' + lDAPDisplayName = 'msExchEdgeSyncCookieValidDuration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Cookie-Valid-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Cookie-Valid-Duration' + OID = '1.2.840.113556.1.4.7000.102.51176' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Edge-Sync-Credential' + lDAPDisplayName = 'msExchEdgeSyncCredential' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Credential' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Edge-Sync-Credential' + OID = '1.2.840.113556.1.4.7000.102.50732' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Backup-Lease-Location' + lDAPDisplayName = 'msExchEdgeSyncEHFBackupLeaseLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Backup-Lease-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Backup-Lease-Location' + OID = '1.2.840.113556.1.4.7000.102.51533' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Flags' + lDAPDisplayName = 'msExchEdgeSyncEHFFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Flags' + OID = '1.2.840.113556.1.4.7000.102.51745' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Password' + lDAPDisplayName = 'msExchEdgeSyncEHFPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Password' + OID = '1.2.840.113556.1.4.7000.102.51544' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Primary-Lease-Location' + lDAPDisplayName = 'msExchEdgeSyncEHFPrimaryLeaseLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Primary-Lease-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Primary-Lease-Location' + OID = '1.2.840.113556.1.4.7000.102.51532' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Provisioning-URL' + lDAPDisplayName = 'msExchEdgeSyncEHFProvisioningURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Provisioning-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Provisioning-URL' + OID = '1.2.840.113556.1.4.7000.102.51531' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-Reseller-ID' + lDAPDisplayName = 'msExchEdgeSyncEHFResellerID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-Reseller-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-Reseller-ID' + OID = '1.2.840.113556.1.4.7000.102.51545' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-EHF-User-Name' + lDAPDisplayName = 'msExchEdgeSyncEHFUserName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-EHF-User-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-EHF-User-Name' + OID = '1.2.840.113556.1.4.7000.102.51543' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Failover-DC-Interval' + lDAPDisplayName = 'msExchEdgeSyncFailoverDCInterval' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Failover-DC-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Failover-DC-Interval' + OID = '1.2.840.113556.1.4.7000.102.51177' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Edge-Sync-Lease' + lDAPDisplayName = 'msExchEdgeSyncLease' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Lease' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Lease' + OID = '1.2.840.113556.1.4.7000.102.50734' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Lock-Duration' + lDAPDisplayName = 'msExchEdgeSyncLockDuration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Lock-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Lock-Duration' + OID = '1.2.840.113556.1.4.7000.102.51173' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Lock-Renewal-Duration' + lDAPDisplayName = 'msExchEdgeSyncLockRenewalDuration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Lock-Renewal-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Lock-Renewal-Duration' + OID = '1.2.840.113556.1.4.7000.102.51174' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Enabled' + lDAPDisplayName = 'msExchEdgeSyncLogEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51178' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Level' + lDAPDisplayName = 'msExchEdgeSyncLogLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Level' + OID = '1.2.840.113556.1.4.7000.102.51182' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Max-Age' + lDAPDisplayName = 'msExchEdgeSyncLogMaxAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Max-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Max-Age' + OID = '1.2.840.113556.1.4.7000.102.51179' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Max-Directory-Size' + lDAPDisplayName = 'msExchEdgeSyncLogMaxDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Max-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Max-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.51180' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Max-File-Size' + lDAPDisplayName = 'msExchEdgeSyncLogMaxFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Max-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Max-File-Size' + OID = '1.2.840.113556.1.4.7000.102.51181' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Log-Path' + lDAPDisplayName = 'msExchEdgeSyncLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.51183' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Backup-Lease-Location' + lDAPDisplayName = 'msExchEdgeSyncMservBackupLeaseLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Backup-Lease-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Backup-Lease-Location' + OID = '1.2.840.113556.1.4.7000.102.51189' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Local-Certificate' + lDAPDisplayName = 'msExchEdgeSyncMservLocalCertificate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Local-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Local-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51187' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Primary-Lease-Location' + lDAPDisplayName = 'msExchEdgeSyncMservPrimaryLeaseLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Primary-Lease-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Primary-Lease-Location' + OID = '1.2.840.113556.1.4.7000.102.51191' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Provision-Url' + lDAPDisplayName = 'msExchEdgeSyncMservProvisionUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Provision-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Provision-Url' + OID = '1.2.840.113556.1.4.7000.102.51185' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Remote-Certificate' + lDAPDisplayName = 'msExchEdgeSyncMservRemoteCertificate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Remote-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Remote-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51188' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Mserv-Setting-Url' + lDAPDisplayName = 'msExchEdgeSyncMservSettingUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Mserv-Setting-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Mserv-Setting-Url' + OID = '1.2.840.113556.1.4.7000.102.51186' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Option-Duration' + lDAPDisplayName = 'msExchEdgeSyncOptionDuration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Option-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Option-Duration' + OID = '1.2.840.113556.1.4.7000.102.51175' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Provider-Assembly-Path' + lDAPDisplayName = 'msExchEdgeSyncProviderAssemblyPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Provider-Assembly-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Provider-Assembly-Path' + OID = '1.2.840.113556.1.4.7000.102.51190' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Recipient-Sync-Interval' + lDAPDisplayName = 'msExchEdgeSyncRecipientSyncInterval' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Recipient-Sync-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Recipient-Sync-Interval' + OID = '1.2.840.113556.1.4.7000.102.51172' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Edge-Sync-Retry-Count' + lDAPDisplayName = 'msExchEdgeSyncRetryCount' + oMSyntax = 2 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Retry-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Retry-Count' + OID = '1.2.840.113556.1.4.7000.102.51506' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Edge-Sync-Source-Guid' + lDAPDisplayName = 'msExchEdgeSyncSourceGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Source-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Source-Guid' + OID = '1.2.840.113556.1.4.7000.102.50962' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Edge-Sync-Status' + lDAPDisplayName = 'msExchEdgeSyncStatus' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Status' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Edge-Sync-Status' + OID = '1.2.840.113556.1.4.7000.102.50735' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Edge-Sync-Synchronization-Provider' + lDAPDisplayName = 'msExchEdgeSyncSynchronizationProvider' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Edge-Sync-Synchronization-Provider' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Edge-Sync-Synchronization-Provider' + OID = '1.2.840.113556.1.4.7000.102.51184' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Admin-Description-Localized' + lDAPDisplayName = 'msExchELCAdminDescriptionLocalized' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Admin-Description-Localized' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-ELC-Admin-Description-Localized' + OID = '1.2.840.113556.1.4.7000.102.50752' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-ELC-Audit-Log-Directory-Size-Limit' + lDAPDisplayName = 'msExchELCAuditLogDirectorySizeLimit' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Audit-Log-Directory-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Audit-Log-Directory-Size-Limit' + OID = '1.2.840.113556.1.4.7000.102.50813' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Audit-Log-File-Age-Limit' + lDAPDisplayName = 'msExchELCAuditLogFileAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Audit-Log-File-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Audit-Log-File-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.50815' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-ELC-Audit-Log-File-Size-Limit' + lDAPDisplayName = 'msExchELCAuditLogFileSizeLimit' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Audit-Log-File-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Audit-Log-File-Size-Limit' + OID = '1.2.840.113556.1.4.7000.102.50814' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Audit-Log-Path' + lDAPDisplayName = 'msExchELCAuditLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Audit-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Audit-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.50812' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-ELC-Auto-Copy-Address-Link' + lDAPDisplayName = 'msExchELCAutoCopyAddressLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Auto-Copy-Address-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Auto-Copy-Address-Link' + OID = '1.2.840.113556.1.4.7000.102.50515' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Expiry-Action' + lDAPDisplayName = 'msExchELCExpiryAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Expiry-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Expiry-Action' + OID = '1.2.840.113556.1.4.7000.102.50360' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Expiry-Age-Limit' + lDAPDisplayName = 'msExchELCExpiryAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Expiry-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Expiry-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.50359' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-ELC-Expiry-Destination-Link' + lDAPDisplayName = 'msExchELCExpiryDestinationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Expiry-Destination-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Expiry-Destination-Link' + OID = '1.2.840.113556.1.4.7000.102.50459' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-ELC-Expiry-Suspension-End' + lDAPDisplayName = 'msExchELCExpirySuspensionEnd' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-ELC-Expiry-Suspension-End' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Expiry-Suspension-End' + OID = '1.2.840.113556.1.4.7000.102.50763' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-ELC-Expiry-Suspension-Start' + lDAPDisplayName = 'msExchELCExpirySuspensionStart' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-ELC-Expiry-Suspension-Start' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Expiry-Suspension-Start' + OID = '1.2.840.113556.1.4.7000.102.50762' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Flags' + lDAPDisplayName = 'msExchELCFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Flags' + OID = '1.2.840.113556.1.4.7000.102.50456' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-ELC-Folder-BL' + lDAPDisplayName = 'msExchELCFolderBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-ELC-Folder-BL' + OID = '1.2.840.113556.1.4.7000.102.50350' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-ELC-Folder-Link' + lDAPDisplayName = 'msExchELCFolderLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-ELC-Folder-Link' + OID = '1.2.840.113556.1.4.7000.102.50349' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Folder-Name' + lDAPDisplayName = 'msExchELCFolderName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Folder-Name' + OID = '1.2.840.113556.1.4.7000.102.50354' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Folder-Name-Localized' + lDAPDisplayName = 'msExchELCFolderNameLocalized' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-Name-Localized' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-ELC-Folder-Name-Localized' + OID = '1.2.840.113556.1.4.7000.102.50753' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Folder-Quota' + lDAPDisplayName = 'msExchELCFolderQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Folder-Quota' + OID = '1.2.840.113556.1.4.7000.102.50357' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Folder-Type' + lDAPDisplayName = 'msExchELCFolderType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Folder-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Folder-Type' + OID = '1.2.840.113556.1.4.7000.102.50457' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Label' + lDAPDisplayName = 'msExchELCLabel' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Label' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Label' + OID = '1.2.840.113556.1.4.7000.102.50516' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ELC-Mailbox-Flags' + lDAPDisplayName = 'msExchELCMailboxFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-ELC-Mailbox-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Mailbox-Flags' + OID = '1.2.840.113556.1.4.7000.102.50761' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Message-Class' + lDAPDisplayName = 'msExchELCMessageClass' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Message-Class' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Message-Class' + OID = '1.2.840.113556.1.6.20.1.50355' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-ELC-Organizational-Root-URL' + lDAPDisplayName = 'msExchELCOrganizationalRootURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Organizational-Root-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Organizational-Root-URL' + OID = '1.2.840.113556.1.4.7000.102.50834' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-ELC-Schedule' + lDAPDisplayName = 'msExchELCSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ELC-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ELC-Schedule' + OID = '1.2.840.113556.1.4.7000.102.50458' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Enable-Internal-Evaluator' + lDAPDisplayName = 'msExchEnableInternalEvaluator' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Enable-Internal-Evaluator' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Enable-Internal-Evaluator' + OID = '1.2.840.113556.1.4.7000.102.99' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Enable-Moderation' + lDAPDisplayName = 'msExchEnableModeration' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Enable-Moderation' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Enable-Moderation' + OID = '1.2.840.113556.1.4.7000.102.50969' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Encode-SMTP-Relay' + lDAPDisplayName = 'msExchEncodeSMTPRelay' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encode-SMTP-Relay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encode-SMTP-Relay' + OID = '1.2.840.113556.1.4.7000.102.5053' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Encrypted-Anonymous-Password' + lDAPDisplayName = 'msExchEncryptedAnonymousPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypted-Anonymous-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypted-Anonymous-Password' + OID = '1.2.840.113556.1.4.7000.102.15009' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Encrypted-Password' + lDAPDisplayName = 'msExchEncryptedPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypted-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypted-Password' + OID = '1.2.840.113556.1.4.7000.102.50062' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Encrypted-Password-2' + lDAPDisplayName = 'msExchEncryptedPassword2' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypted-Password-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypted-Password-2' + OID = '1.2.840.113556.1.4.7000.102.50065' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Encrypted-TLS-P12' + lDAPDisplayName = 'msExchEncryptedTLSP12' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypted-TLS-P12' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Encrypted-TLS-P12' + OID = '1.2.840.113556.1.4.7000.102.50754' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Encrypted-Transport-Service-KPK' + lDAPDisplayName = 'msExchEncryptedTransportServiceKPK' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encrypted-Transport-Service-KPK' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encrypted-Transport-Service-KPK' + OID = '1.2.840.113556.1.4.7000.102.50788' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Encryption-Required' + lDAPDisplayName = 'msExchEncryptionRequired' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encryption-Required' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encryption-Required' + OID = '1.2.840.113556.1.4.7000.102.51048' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Encryption-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchEncryptionThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Encryption-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Encryption-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52131' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Assert-Action' + lDAPDisplayName = 'msExchESEParamAssertAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Assert-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Assert-Action' + OID = '1.2.840.113556.1.4.7000.102.11074' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ESE-Param-Background-Database-Maintenance' + lDAPDisplayName = 'msExchESEParamBackgroundDatabaseMaintenance' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Background-Database-Maintenance' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Background-Database-Maintenance' + OID = '1.2.840.113556.1.4.7000.102.51255' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Delay' + lDAPDisplayName = 'msExchESEParamBackgroundDatabaseMaintenanceDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Delay' + OID = '1.2.840.113556.1.4.7000.102.51653' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Max' + lDAPDisplayName = 'msExchESEParamBackgroundDatabaseMaintenanceIntervalMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Max' + OID = '1.2.840.113556.1.4.7000.102.51656' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Min' + lDAPDisplayName = 'msExchESEParamBackgroundDatabaseMaintenanceIntervalMin' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Min' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Interval-Min' + OID = '1.2.840.113556.1.4.7000.102.51655' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Serialization' + lDAPDisplayName = 'msExchESEParamBackgroundDatabaseMaintenanceSerialization' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Serialization' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Background-Database-Maintenance-Serialization' + OID = '1.2.840.113556.1.4.7000.102.51651' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Base-Name' + lDAPDisplayName = 'msExchESEParamBaseName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Base-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Base-Name' + OID = '1.2.840.113556.1.4.7000.102.11076' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Cached-Closed-Tables' + lDAPDisplayName = 'msExchESEParamCachedClosedTables' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Cached-Closed-Tables' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Cached-Closed-Tables' + OID = '1.2.840.113556.1.4.7000.102.11096' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Cache-Priority' + lDAPDisplayName = 'msExchESEParamCachePriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Cache-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Cache-Priority' + OID = '1.2.840.113556.1.4.7000.102.51517' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Cache-Size' + lDAPDisplayName = 'msExchESEParamCacheSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Cache-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Cache-Size' + OID = '1.2.840.113556.1.4.7000.102.11002' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Cache-Size-Max' + lDAPDisplayName = 'msExchESEParamCacheSizeMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Cache-Size-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Cache-Size-Max' + OID = '1.2.840.113556.1.4.7000.102.11003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Cache-Size-Min' + lDAPDisplayName = 'msExchESEParamCacheSizeMin' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Cache-Size-Min' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Cache-Size-Min' + OID = '1.2.840.113556.1.4.7000.102.11075' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Checkpoint-Depth-Max' + lDAPDisplayName = 'msExchESEParamCheckpointDepthMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Checkpoint-Depth-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Checkpoint-Depth-Max' + OID = '1.2.840.113556.1.4.7000.102.11081' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Circular-Log' + lDAPDisplayName = 'msExchESEParamCircularLog' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Circular-Log' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Circular-Log' + OID = '1.2.840.113556.1.4.7000.102.11005' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Commit-Default' + lDAPDisplayName = 'msExchESEParamCommitDefault' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Commit-Default' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Commit-Default' + OID = '1.2.840.113556.1.4.7000.102.11077' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Copy-Log-File-Path' + lDAPDisplayName = 'msExchESEParamCopyLogFilePath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Copy-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Copy-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.50415' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Copy-System-Path' + lDAPDisplayName = 'msExchESEParamCopySystemPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Copy-System-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Copy-System-Path' + OID = '1.2.840.113556.1.4.7000.102.50416' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Db-Extension-Size' + lDAPDisplayName = 'msExchESEParamDbExtensionSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Db-Extension-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Db-Extension-Size' + OID = '1.2.840.113556.1.4.7000.102.11078' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ESE-Param-Enable-Index-Checking' + lDAPDisplayName = 'msExchESEParamEnableIndexChecking' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Enable-Index-Checking' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Enable-Index-Checking' + OID = '1.2.840.113556.1.4.7000.102.11073' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ESE-Param-Enable-Online-Defrag' + lDAPDisplayName = 'msExchESEParamEnableOnlineDefrag' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Enable-Online-Defrag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Enable-Online-Defrag' + OID = '1.2.840.113556.1.4.7000.102.11072' +} +@{ + oMSyntax = 1 + attributeSyntax = '2.5.5.8' + Optional = $True + AdvancedView = $True + searchFlags = 0 + adminDisplayName = 'ms-Exch-ESE-Param-Enable-Sorted-Retrieve-Columns' + IsDefunct = $False + lDAPDisplayName = 'msExchESEParamEnableSortedRetrieveColumns' + Name = 'ms-Exch-ESE-Param-Enable-Sorted-Retrieve-Columns' + adminDescription = 'ms-Exch-ESE-Param-Enable-Sorted-Retrieve-Columns' + SingleValued = $True + OID = '1.2.840.113556.1.4.7000.102.11069' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Event-Source' + lDAPDisplayName = 'msExchESEParamEventSource' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Event-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Event-Source' + OID = '1.2.840.113556.1.4.7000.102.11008' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Global-Min-Ver-Pages' + lDAPDisplayName = 'msExchESEParamGlobalMinVerPages' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Global-Min-Ver-Pages' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Global-Min-Ver-Pages' + OID = '1.2.840.113556.1.4.7000.102.11082' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Hung-IO-Action' + lDAPDisplayName = 'msExchESEParamHungIOAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Hung-IO-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Hung-IO-Action' + OID = '1.2.840.113556.1.4.7000.102.51664' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Hung-IO-Threshold' + lDAPDisplayName = 'msExchESEParamHungIOThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Hung-IO-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Hung-IO-Threshold' + OID = '1.2.840.113556.1.4.7000.102.51663' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Log-Buffers' + lDAPDisplayName = 'msExchESEParamLogBuffers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Log-Buffers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Log-Buffers' + OID = '1.2.840.113556.1.4.7000.102.11009' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Log-Checkpoint-Period' + lDAPDisplayName = 'msExchESEParamLogCheckpointPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Log-Checkpoint-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Log-Checkpoint-Period' + OID = '1.2.840.113556.1.4.7000.102.11010' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Log-File-Path' + lDAPDisplayName = 'msExchESEParamLogFilePath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.11011' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Log-File-Size' + lDAPDisplayName = 'msExchESEParamLogFileSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Log-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Log-File-Size' + OID = '1.2.840.113556.1.4.7000.102.11012' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Log-Waiting-User-Max' + lDAPDisplayName = 'msExchESEParamLogWaitingUserMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Log-Waiting-User-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Log-Waiting-User-Max' + OID = '1.2.840.113556.1.4.7000.102.11013' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Max-Cursors' + lDAPDisplayName = 'msExchESEParamMaxCursors' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Max-Cursors' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Max-Cursors' + OID = '1.2.840.113556.1.4.7000.102.11071' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Max-Open-Tables' + lDAPDisplayName = 'msExchESEParamMaxOpenTables' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Max-Open-Tables' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Max-Open-Tables' + OID = '1.2.840.113556.1.4.7000.102.11014' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Max-Sessions' + lDAPDisplayName = 'msExchESEParamMaxSessions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Max-Sessions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Max-Sessions' + OID = '1.2.840.113556.1.4.7000.102.11015' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Max-Temporary-Tables' + lDAPDisplayName = 'msExchESEParamMaxTemporaryTables' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Max-Temporary-Tables' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Max-Temporary-Tables' + OID = '1.2.840.113556.1.4.7000.102.11070' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Max-Ver-Pages' + lDAPDisplayName = 'msExchESEParamMaxVerPages' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Max-Ver-Pages' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Max-Ver-Pages' + OID = '1.2.840.113556.1.4.7000.102.11017' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Page-Fragment' + lDAPDisplayName = 'msExchESEParamPageFragment' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Page-Fragment' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Page-Fragment' + OID = '1.2.840.113556.1.4.7000.102.11080' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Page-Temp-DB-Min' + lDAPDisplayName = 'msExchESEParamPageTempDBMin' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Page-Temp-DB-Min' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Page-Temp-DB-Min' + OID = '1.2.840.113556.1.4.7000.102.11079' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Preferred-Max-Open-Tables' + lDAPDisplayName = 'msExchESEParamPreferredMaxOpenTables' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Preferred-Max-Open-Tables' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Preferred-Max-Open-Tables' + OID = '1.2.840.113556.1.4.7000.102.11018' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Preferred-Ver-Pages' + lDAPDisplayName = 'msExchESEParamPreferredVerPages' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Preferred-Ver-Pages' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Preferred-Ver-Pages' + OID = '1.2.840.113556.1.4.7000.102.11019' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Pre-Read-IO-Max' + lDAPDisplayName = 'msExchESEParamPreReadIOMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Pre-Read-IO-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Pre-Read-IO-Max' + OID = '1.2.840.113556.1.4.7000.102.51649' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance' + lDAPDisplayName = 'msExchESEParamReplayBackgroundDatabaseMaintenance' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance' + OID = '1.2.840.113556.1.4.7000.102.51516' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance-Delay' + lDAPDisplayName = 'msExchESEParamReplayBackgroundDatabaseMaintenanceDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Replay-Background-Database-Maintenance-Delay' + OID = '1.2.840.113556.1.4.7000.102.51654' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Replay-Cache-Priority' + lDAPDisplayName = 'msExchESEParamReplayCachePriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Replay-Cache-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Replay-Cache-Priority' + OID = '1.2.840.113556.1.4.7000.102.51518' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Replay-Checkpoint-Depth-Max' + lDAPDisplayName = 'msExchESEParamReplayCheckpointDepthMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Replay-Checkpoint-Depth-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Replay-Checkpoint-Depth-Max' + OID = '1.2.840.113556.1.4.7000.102.51515' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Replay-Pre-Read-IO-Max' + lDAPDisplayName = 'msExchESEParamReplayPreReadIOMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Replay-Pre-Read-IO-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Replay-Pre-Read-IO-Max' + OID = '1.2.840.113556.1.4.7000.102.51650' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Start-Flush-Threshold' + lDAPDisplayName = 'msExchESEParamStartFlushThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Start-Flush-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Start-Flush-Threshold' + OID = '1.2.840.113556.1.4.7000.102.11056' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Stop-Flush-Threshold' + lDAPDisplayName = 'msExchESEParamStopFlushThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Stop-Flush-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Stop-Flush-Threshold' + OID = '1.2.840.113556.1.4.7000.102.11057' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-System-Path' + lDAPDisplayName = 'msExchESEParamSystemPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-System-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-System-Path' + OID = '1.2.840.113556.1.4.7000.102.11022' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-ESE-Param-Temp-Path' + lDAPDisplayName = 'msExchESEParamTempPath' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Temp-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Temp-Path' + OID = '1.2.840.113556.1.4.7000.102.11023' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Wait-Log-Flush' + lDAPDisplayName = 'msExchESEParamWaitLogFlush' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Wait-Log-Flush' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Wait-Log-Flush' + OID = '1.2.840.113556.1.4.7000.102.11016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-ESE-Param-Zero-Database-During-Backup' + lDAPDisplayName = 'msExchESEParamZeroDatabaseDuringBackup' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-ESE-Param-Zero-Database-During-Backup' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-ESE-Param-Zero-Database-During-Backup' + OID = '1.2.840.113556.1.4.7000.102.11026' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Event-History-Retention-Period' + lDAPDisplayName = 'msExchEventHistoryRetentionPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Event-History-Retention-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Event-History-Retention-Period' + OID = '1.2.840.113556.1.4.7000.102.50470' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-EvictedMembers-Link' + lDAPDisplayName = 'msExchEvictedMembersLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-EvictedMembers-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-EvictedMembers-Link' + OID = '1.2.840.113556.1.4.7000.102.52128' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-EvictedMemebers-BL' + lDAPDisplayName = 'msExchEvictedMemebersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-EvictedMemebers-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-EvictedMemebers-BL' + OID = '1.2.840.113556.1.4.7000.102.52129' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Ews-Application-Access-Policy' + lDAPDisplayName = 'msExchEwsApplicationAccessPolicy' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Ews-Application-Access-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Ews-Application-Access-Policy' + OID = '1.2.840.113556.1.4.7000.102.51577' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Ews-Enabled' + lDAPDisplayName = 'msExchEwsEnabled' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Ews-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Ews-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51571' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Ews-Exceptions' + lDAPDisplayName = 'msExchEwsExceptions' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Ews-Exceptions' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Ews-Exceptions' + OID = '1.2.840.113556.1.4.7000.102.51573' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-EWS-Throttling-Policy-State' + lDAPDisplayName = 'msExchEWSThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EWS-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EWS-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51156' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-EWS-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchEWSThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-EWS-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-EWS-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52044' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Ews-Well-Known-Application-Policies' + lDAPDisplayName = 'msExchEwsWellKnownApplicationPolicies' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Ews-Well-Known-Application-Policies' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Ews-Well-Known-Application-Policies' + OID = '1.2.840.113556.1.4.7000.102.51576' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Exchange-Help-App-Online' + lDAPDisplayName = 'msExchExchangeHelpAppOnline' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Exchange-Help-App-Online' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Exchange-Help-App-Online' + OID = '1.2.840.113556.1.4.7000.102.50982' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Exchange-RPC-Service-Array-BL' + lDAPDisplayName = 'msExchExchangeRPCServiceArrayBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Exchange-RPC-Service-Array-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Exchange-RPC-Service-Array-BL' + OID = '1.2.840.113556.1.4.7000.102.51062' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Exchange-RPC-Service-Array-Link' + lDAPDisplayName = 'msExchExchangeRPCServiceArrayLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Exchange-RPC-Service-Array-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Exchange-RPC-Service-Array-Link' + OID = '1.2.840.113556.1.4.7000.102.51050' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Exchange-Server-Link' + lDAPDisplayName = 'msExchExchangeServerLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Exchange-Server-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Exchange-Server-Link' + OID = '1.2.840.113556.1.4.7000.102.71' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Exchange-Site' + lDAPDisplayName = 'msExchExchangeSite' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Exchange-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Exchange-Site' + OID = '1.2.840.113556.1.4.7000.102.85' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Excluded-Mailbox-Databases' + lDAPDisplayName = 'msExchExcludedMailboxDatabases' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Excluded-Mailbox-Databases' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Excluded-Mailbox-Databases' + OID = '1.2.840.113556.1.4.7000.102.51034' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Expansion-Server-Name' + lDAPDisplayName = 'msExchExpansionServerName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Expansion-Server-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Expansion-Server-Name' + OID = '1.2.840.113556.1.4.7000.102.49' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Export-Containers-BL' + lDAPDisplayName = 'msExchExportContainersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Export-Containers-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Export-Containers-BL' + OID = '1.2.840.113556.1.4.7000.102.1027' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Export-Containers-Linked' + lDAPDisplayName = 'msExchExportContainersLinked' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Export-Containers-Linked' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Export-Containers-Linked' + OID = '1.2.840.113556.1.4.7000.102.1026' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Export-DLs' + lDAPDisplayName = 'msExchExportDLs' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Export-DLs' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Export-DLs' + OID = '1.2.840.113556.1.4.7000.102.1004' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extended-Protection-SPNList' + lDAPDisplayName = 'msExchExtendedProtectionSPNList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Extended-Protection-SPNList' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extended-Protection-SPNList' + OID = '1.2.840.113556.1.4.7000.102.51772' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-16' + lDAPDisplayName = 'msExchExtensionAttribute16' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-16' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-16' + OID = '1.2.840.113556.1.4.7000.102.51884' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-17' + lDAPDisplayName = 'msExchExtensionAttribute17' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-17' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-17' + OID = '1.2.840.113556.1.4.7000.102.51885' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-18' + lDAPDisplayName = 'msExchExtensionAttribute18' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-18' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-18' + OID = '1.2.840.113556.1.4.7000.102.51886' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-19' + lDAPDisplayName = 'msExchExtensionAttribute19' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-19' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-19' + OID = '1.2.840.113556.1.4.7000.102.51887' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-20' + lDAPDisplayName = 'msExchExtensionAttribute20' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-20' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-20' + OID = '1.2.840.113556.1.4.7000.102.51888' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-21' + lDAPDisplayName = 'msExchExtensionAttribute21' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-21' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-21' + OID = '1.2.840.113556.1.4.7000.102.51889' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-22' + lDAPDisplayName = 'msExchExtensionAttribute22' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-22' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-22' + OID = '1.2.840.113556.1.4.7000.102.51890' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-23' + lDAPDisplayName = 'msExchExtensionAttribute23' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-23' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-23' + OID = '1.2.840.113556.1.4.7000.102.51891' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-24' + lDAPDisplayName = 'msExchExtensionAttribute24' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-24' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-24' + OID = '1.2.840.113556.1.4.7000.102.51892' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-25' + lDAPDisplayName = 'msExchExtensionAttribute25' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-25' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-25' + OID = '1.2.840.113556.1.4.7000.102.51893' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-26' + lDAPDisplayName = 'msExchExtensionAttribute26' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-26' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-26' + OID = '1.2.840.113556.1.4.7000.102.51894' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-27' + lDAPDisplayName = 'msExchExtensionAttribute27' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-27' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-27' + OID = '1.2.840.113556.1.4.7000.102.51895' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-28' + lDAPDisplayName = 'msExchExtensionAttribute28' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-28' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-28' + OID = '1.2.840.113556.1.4.7000.102.51896' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-29' + lDAPDisplayName = 'msExchExtensionAttribute29' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-29' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-29' + OID = '1.2.840.113556.1.4.7000.102.51897' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-30' + lDAPDisplayName = 'msExchExtensionAttribute30' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-30' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-30' + OID = '1.2.840.113556.1.4.7000.102.51898' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-31' + lDAPDisplayName = 'msExchExtensionAttribute31' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-31' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-31' + OID = '1.2.840.113556.1.4.7000.102.51899' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-32' + lDAPDisplayName = 'msExchExtensionAttribute32' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-32' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-32' + OID = '1.2.840.113556.1.4.7000.102.51900' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-33' + lDAPDisplayName = 'msExchExtensionAttribute33' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-33' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-33' + OID = '1.2.840.113556.1.4.7000.102.51901' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-34' + lDAPDisplayName = 'msExchExtensionAttribute34' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-34' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-34' + OID = '1.2.840.113556.1.4.7000.102.51902' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-35' + lDAPDisplayName = 'msExchExtensionAttribute35' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-35' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-35' + OID = '1.2.840.113556.1.4.7000.102.51903' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-36' + lDAPDisplayName = 'msExchExtensionAttribute36' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-36' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-36' + OID = '1.2.840.113556.1.4.7000.102.51904' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-37' + lDAPDisplayName = 'msExchExtensionAttribute37' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-37' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-37' + OID = '1.2.840.113556.1.4.7000.102.51905' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-38' + lDAPDisplayName = 'msExchExtensionAttribute38' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-38' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-38' + OID = '1.2.840.113556.1.4.7000.102.51906' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-39' + lDAPDisplayName = 'msExchExtensionAttribute39' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-39' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-39' + OID = '1.2.840.113556.1.4.7000.102.51907' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-40' + lDAPDisplayName = 'msExchExtensionAttribute40' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-40' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-40' + OID = '1.2.840.113556.1.4.7000.102.51908' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-41' + lDAPDisplayName = 'msExchExtensionAttribute41' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-41' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-41' + OID = '1.2.840.113556.1.4.7000.102.51909' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-42' + lDAPDisplayName = 'msExchExtensionAttribute42' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-42' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-42' + OID = '1.2.840.113556.1.4.7000.102.51910' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-43' + lDAPDisplayName = 'msExchExtensionAttribute43' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-43' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-43' + OID = '1.2.840.113556.1.4.7000.102.51911' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-44' + lDAPDisplayName = 'msExchExtensionAttribute44' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-44' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-44' + OID = '1.2.840.113556.1.4.7000.102.51912' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Attribute-45' + lDAPDisplayName = 'msExchExtensionAttribute45' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Attribute-45' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Extension-Attribute-45' + OID = '1.2.840.113556.1.4.7000.102.51913' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Custom-Attribute-1' + lDAPDisplayName = 'msExchExtensionCustomAttribute1' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Custom-Attribute-1' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Custom-Attribute-1' + OID = '1.2.840.113556.1.4.7000.102.51876' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Custom-Attribute-2' + lDAPDisplayName = 'msExchExtensionCustomAttribute2' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Custom-Attribute-2' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Custom-Attribute-2' + OID = '1.2.840.113556.1.4.7000.102.51877' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Custom-Attribute-3' + lDAPDisplayName = 'msExchExtensionCustomAttribute3' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Custom-Attribute-3' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Custom-Attribute-3' + OID = '1.2.840.113556.1.4.7000.102.51878' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Custom-Attribute-4' + lDAPDisplayName = 'msExchExtensionCustomAttribute4' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Custom-Attribute-4' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Custom-Attribute-4' + OID = '1.2.840.113556.1.4.7000.102.51879' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Extension-Custom-Attribute-5' + lDAPDisplayName = 'msExchExtensionCustomAttribute5' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Extension-Custom-Attribute-5' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Extension-Custom-Attribute-5' + OID = '1.2.840.113556.1.4.7000.102.51880' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-External-Authentication-Methods' + lDAPDisplayName = 'msExchExternalAuthenticationMethods' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-External-Authentication-Methods' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Authentication-Methods' + OID = '1.2.840.113556.1.4.7000.102.50466' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-External-Directory-Object-Class' + lDAPDisplayName = 'msExchExternalDirectoryObjectClass' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-External-Directory-Object-Class' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Directory-Object-Class' + OID = '1.2.840.113556.1.4.7000.102.51798' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-External-Directory-Object-Id' + lDAPDisplayName = 'msExchExternalDirectoryObjectId' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-External-Directory-Object-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Directory-Object-Id' + OID = '1.2.840.113556.1.4.7000.102.51610' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-External-Directory-Organization-Id' + lDAPDisplayName = 'msExchExternalDirectoryOrganizationId' + oMSyntax = 20 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-External-Directory-Organization-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Directory-Organization-Id' + OID = '1.2.840.113556.1.4.7000.102.51609' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-External-Host-Name' + lDAPDisplayName = 'msExchExternalHostName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-External-Host-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Host-Name' + OID = '1.2.840.113556.1.4.7000.102.50464' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-External-OOF-Options' + lDAPDisplayName = 'msExchExternalOOFOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-External-OOF-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-OOF-Options' + OID = '1.2.840.113556.1.4.7000.102.50462' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-External-Sync-State' + lDAPDisplayName = 'msExchExternalSyncState' + oMSyntax = 64 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-External-Sync-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-External-Sync-State' + OID = '1.2.840.113556.1.4.7000.102.51032' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-FB-URL' + lDAPDisplayName = 'msExchFBURL' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-FB-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-FB-URL' + OID = '1.2.840.113556.1.4.7000.102.10001' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Fed-Accepted-Domain-BL' + lDAPDisplayName = 'msExchFedAcceptedDomainBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Accepted-Domain-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Fed-Accepted-Domain-BL' + OID = '1.2.840.113556.1.4.7000.102.51205' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Fed-Accepted-Domain-Link' + lDAPDisplayName = 'msExchFedAcceptedDomainLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Accepted-Domain-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Fed-Accepted-Domain-Link' + OID = '1.2.840.113556.1.4.7000.102.51204' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Account-Namespace' + lDAPDisplayName = 'msExchFedAccountNamespace' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Account-Namespace' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Account-Namespace' + OID = '1.2.840.113556.1.4.7000.102.51203' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sharing-Admin-Key' + lDAPDisplayName = 'msExchFedAdminKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Admin-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Admin-Key' + OID = '1.2.840.113556.1.4.7000.102.51263' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Application-Id' + lDAPDisplayName = 'msExchFedApplicationId' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Application-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Application-Id' + OID = '1.2.840.113556.1.4.7000.102.51214' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Application-URI' + lDAPDisplayName = 'msExchFedApplicationURI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Application-URI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Application-URI' + OID = '1.2.840.113556.1.4.7000.102.51230' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Fed-Client-Trust' + lDAPDisplayName = 'msExchFedClientTrust' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Client-Trust' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Client-Trust' + OID = '1.2.840.113556.1.4.7000.102.51211' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Fed-Delegation-Trust' + lDAPDisplayName = 'msExchFedDelegationTrust' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Delegation-Trust' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Delegation-Trust' + OID = '1.2.840.113556.1.4.7000.102.51210' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Delegation-Trust-SL' + lDAPDisplayName = 'msExchFedDelegationTrustSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Delegation-Trust-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Delegation-Trust-SL' + OID = '1.2.840.113556.1.4.7000.102.51939' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Domain-Names' + lDAPDisplayName = 'msExchFedDomainNames' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Domain-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Fed-Domain-Names' + OID = '1.2.840.113556.1.4.7000.102.51226' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Enabled-Actions' + lDAPDisplayName = 'msExchFedEnabledActions' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Enabled-Actions' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Fed-Enabled-Actions' + OID = '1.2.840.113556.1.4.7000.102.51229' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Fed-Is-Enabled' + lDAPDisplayName = 'msExchFedIsEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Is-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Is-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51231' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Local-Recipient-Address' + lDAPDisplayName = 'msExchFedLocalRecipientAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Local-Recipient-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Local-Recipient-Address' + OID = '1.2.840.113556.1.4.7000.102.51317' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Metadata-EPR' + lDAPDisplayName = 'msExchFedMetadataEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Metadata-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Metadata-EPR' + OID = '1.2.840.113556.1.4.7000.102.51200' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Fed-Metadata-Poll-Interval' + lDAPDisplayName = 'msExchFedMetadataPollInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Metadata-Poll-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Metadata-Poll-Interval' + OID = '1.2.840.113556.1.4.7000.102.51233' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Metadata-Put-EPR' + lDAPDisplayName = 'msExchFedMetadataPutEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Metadata-Put-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Metadata-Put-EPR' + OID = '1.2.840.113556.1.4.7000.102.51202' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Org-Admin-Contact' + lDAPDisplayName = 'msExchFedOrgAdminContact' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Admin-Contact' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Admin-Contact' + OID = '1.2.840.113556.1.4.7000.102.51212' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Org-Approval-Contact' + lDAPDisplayName = 'msExchFedOrgApprovalContact' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Approval-Contact' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Approval-Contact' + OID = '1.2.840.113556.1.4.7000.102.51213' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Org-Certificate' + lDAPDisplayName = 'msExchFedOrgCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51207' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Sharing-Org-Next-Certificate' + lDAPDisplayName = 'msExchFedOrgNextCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Org-Next-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Org-Next-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51267' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Sharing-Org-Next-Priv-Certificate' + lDAPDisplayName = 'msExchFedOrgNextPrivCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Org-Next-Priv-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Org-Next-Priv-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51268' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Org-Prev-Certificate' + lDAPDisplayName = 'msExchFedOrgPrevCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Prev-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Prev-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51209' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Org-Prev-Priv-Certificate' + lDAPDisplayName = 'msExchFedOrgPrevPrivCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Prev-Priv-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Prev-Priv-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51208' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Org-Priv-Certificate' + lDAPDisplayName = 'msExchFedOrgPrivCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Org-Priv-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Org-Priv-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51206' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Policy-Reference-URI' + lDAPDisplayName = 'msExchFedPolicyReferenceURI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Policy-Reference-URI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Policy-Reference-URI' + OID = '1.2.840.113556.1.4.7000.102.51223' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sharing-Provisioning-Provider' + lDAPDisplayName = 'msExchFedProvisioningProvider' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Provisioning-Provider' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Provisioning-Provider' + OID = '1.2.840.113556.1.4.7000.102.51262' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Remote-Target-Address' + lDAPDisplayName = 'msExchFedRemoteTargetAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Remote-Target-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Remote-Target-Address' + OID = '1.2.840.113556.1.4.7000.102.51318' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Target-Application-URI' + lDAPDisplayName = 'msExchFedTargetApplicationURI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Target-Application-URI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Target-Application-URI' + OID = '1.2.840.113556.1.4.7000.102.51227' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Target-Autodiscover-EPR' + lDAPDisplayName = 'msExchFedTargetAutodiscoverEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Target-Autodiscover-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Target-Autodiscover-EPR' + OID = '1.2.840.113556.1.4.7000.102.51201' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Target-OWA-URL' + lDAPDisplayName = 'msExchFedTargetOWAURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Target-OWA-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Target-OWA-URL' + OID = '1.2.840.113556.1.4.7000.102.51723' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Target-Sharing-EPR' + lDAPDisplayName = 'msExchFedTargetSharingEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Target-Sharing-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Target-Sharing-EPR' + OID = '1.2.840.113556.1.4.7000.102.51228' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Certificate' + lDAPDisplayName = 'msExchFedTokenIssuerCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51220' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Cert-Reference' + lDAPDisplayName = 'msExchFedTokenIssuerCertReference' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Cert-Reference' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Cert-Reference' + OID = '1.2.840.113556.1.4.7000.102.51219' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-EPR' + lDAPDisplayName = 'msExchFedTokenIssuerEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-EPR' + OID = '1.2.840.113556.1.4.7000.102.51218' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Metadata-EPR' + lDAPDisplayName = 'msExchFedTokenIssuerMetadataEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Metadata-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Metadata-EPR' + OID = '1.2.840.113556.1.4.7000.102.51232' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Prev-Certificate' + lDAPDisplayName = 'msExchFedTokenIssuerPrevCertificate' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Prev-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Prev-Certificate' + OID = '1.2.840.113556.1.4.7000.102.51222' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Prev-Cert-Reference' + lDAPDisplayName = 'msExchFedTokenIssuerPrevCertReference' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Prev-Cert-Reference' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Prev-Cert-Reference' + OID = '1.2.840.113556.1.4.7000.102.51221' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-Type' + lDAPDisplayName = 'msExchFedTokenIssuerType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-Type' + OID = '1.2.840.113556.1.4.7000.102.51216' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Token-Issuer-URI' + lDAPDisplayName = 'msExchFedTokenIssuerURI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Token-Issuer-URI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Token-Issuer-URI' + OID = '1.2.840.113556.1.4.7000.102.51217' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Fed-Web-Requestor-Redirect-EPR' + lDAPDisplayName = 'msExchFedWebRequestorRedirectEPR' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Fed-Web-Requestor-Redirect-EPR' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Fed-Web-Requestor-Redirect-EPR' + OID = '1.2.840.113556.1.4.7000.102.51224' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-File-Share-Witness' + lDAPDisplayName = 'msExchFileShareWitness' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-File-Share-Witness' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-File-Share-Witness' + OID = '1.2.840.113556.1.4.7000.102.50978' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-File-Share-Witness-Directory' + lDAPDisplayName = 'msExchFileShareWitnessDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-File-Share-Witness-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-File-Share-Witness-Directory' + OID = '1.2.840.113556.1.4.7000.102.50979' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-First-Instance' + lDAPDisplayName = 'msExchFirstInstance' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-First-Instance' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-First-Instance' + OID = '1.2.840.113556.1.4.7000.102.11053' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-First-Sync-Time' + lDAPDisplayName = 'msExchFirstSyncTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-First-Sync-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-First-Sync-Time' + OID = '1.2.840.113556.1.4.7000.102.50932' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Folder-Affinity-Custom' + lDAPDisplayName = 'msExchFolderAffinityCustom' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Folder-Affinity-Custom' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Folder-Affinity-Custom' + OID = '1.2.840.113556.1.4.7000.102.11090' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Folder-Affinity-List' + lDAPDisplayName = 'msExchFolderAffinityList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Folder-Affinity-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Folder-Affinity-List' + OID = '1.2.840.113556.1.4.7000.102.11089' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Foreign-Forest-FQDN' + lDAPDisplayName = 'msExchForeignForestFQDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-FQDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-FQDN' + OID = '1.2.840.113556.1.4.7000.102.50844' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Forest-Org-Admin-USG-Sid' + lDAPDisplayName = 'msExchForeignForestOrgAdminUSGSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-Org-Admin-USG-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-Org-Admin-USG-Sid' + OID = '1.2.840.113556.1.4.7000.102.50845' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Forest-Public-Folder-Admin-USG-Sid' + lDAPDisplayName = 'msExchForeignForestPublicFolderAdminUSGSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-Public-Folder-Admin-USG-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-Public-Folder-Admin-USG-Sid' + OID = '1.2.840.113556.1.4.7000.102.50897' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Forest-Read-Only-Admin-USG-Sid' + lDAPDisplayName = 'msExchForeignForestReadOnlyAdminUSGSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-Read-Only-Admin-USG-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-Read-Only-Admin-USG-Sid' + OID = '1.2.840.113556.1.4.7000.102.50847' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Forest-Recipient-Admin-USG-Sid' + lDAPDisplayName = 'msExchForeignForestRecipientAdminUSGSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-Recipient-Admin-USG-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-Recipient-Admin-USG-Sid' + OID = '1.2.840.113556.1.4.7000.102.50846' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Forest-Server-Admin-USG-Sid' + lDAPDisplayName = 'msExchForeignForestServerAdminUSGSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Foreign-Forest-Server-Admin-USG-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Forest-Server-Admin-USG-Sid' + OID = '1.2.840.113556.1.4.7000.102.50848' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Foreign-Group-SID' + lDAPDisplayName = 'msExchForeignGroupSID' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Foreign-Group-SID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Foreign-Group-SID' + OID = '1.2.840.113556.1.4.7000.102.51561' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Forest-Mode-Flag' + lDAPDisplayName = 'msExchForestModeFlag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Forest-Mode-Flag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Forest-Mode-Flag' + OID = '1.2.840.113556.1.4.7000.102.51796' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Galsync-Disable-Live-Id-On-Remove' + lDAPDisplayName = 'msExchGalsyncDisableLiveIdOnRemove' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Disable-Live-Id-On-Remove' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Disable-Live-Id-On-Remove' + OID = '1.2.840.113556.1.4.7000.102.51418' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Galsync-Federated-Tenant-Source-Attribute' + lDAPDisplayName = 'msExchGalsyncFederatedTenantSourceAttribute' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Federated-Tenant-Source-Attribute' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Federated-Tenant-Source-Attribute' + OID = '1.2.840.113556.1.4.7000.102.51419' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Galsync-Last-Sync-Run' + lDAPDisplayName = 'msExchGalsyncLastSyncRun' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Last-Sync-Run' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Last-Sync-Run' + OID = '1.2.840.113556.1.4.7000.102.51428' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Galsync-Password-File-Path' + lDAPDisplayName = 'msExchGalsyncPasswordFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Password-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Password-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51421' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Galsync-Provisioning-Domain' + lDAPDisplayName = 'msExchGalsyncProvisioningDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Provisioning-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Provisioning-Domain' + OID = '1.2.840.113556.1.4.7000.102.51425' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Galsync-Reset-Password-On-Next-Logon' + lDAPDisplayName = 'msExchGalsyncResetPasswordOnNextLogon' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Reset-Password-On-Next-Logon' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Reset-Password-On-Next-Logon' + OID = '1.2.840.113556.1.4.7000.102.51422' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Galsync-Schedule' + lDAPDisplayName = 'msExchGalsyncSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Schedule' + OID = '1.2.840.113556.1.4.7000.102.51431' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Galsync-Source-Active-Directory-Schema-Version' + lDAPDisplayName = 'msExchGalsyncSourceActiveDirectorySchemaVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Source-Active-Directory-Schema-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Source-Active-Directory-Schema-Version' + OID = '1.2.840.113556.1.4.7000.102.51424' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Galsync-Wlid-Use-Smtp-Primary' + lDAPDisplayName = 'msExchGalsyncWlidUseSmtpPrimary' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Galsync-Wlid-Use-Smtp-Primary' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Galsync-Wlid-Use-Smtp-Primary' + OID = '1.2.840.113556.1.4.7000.102.51420' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-General-Throttling-Policy-State' + lDAPDisplayName = 'msExchGeneralThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-General-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-General-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51162' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-General-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchGeneralThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-General-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-General-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52045' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Generic-Forwarding-Address' + lDAPDisplayName = 'msExchGenericForwardingAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Generic-Forwarding-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Generic-Forwarding-Address' + OID = '1.2.840.113556.1.4.7000.102.51620' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Global-Address-List-BL' + lDAPDisplayName = 'msExchGlobalAddressListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Global-Address-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Global-Address-List-BL' + OID = '1.2.840.113556.1.4.7000.102.51846' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Global-Address-List-Link' + lDAPDisplayName = 'msExchGlobalAddressListLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Global-Address-List-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Global-Address-List-Link' + OID = '1.2.840.113556.1.4.7000.102.51845' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Grace-Period-After' + lDAPDisplayName = 'msExchGracePeriodAfter' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Grace-Period-After' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Grace-Period-After' + OID = '1.2.840.113556.1.4.7000.102.9003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Grace-Period-Prior' + lDAPDisplayName = 'msExchGracePeriodPrior' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Grace-Period-Prior' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Grace-Period-Prior' + OID = '1.2.840.113556.1.4.7000.102.9002' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Group-Depart-Restriction' + lDAPDisplayName = 'msExchGroupDepartRestriction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Group-Depart-Restriction' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Group-Depart-Restriction' + OID = '1.2.840.113556.1.4.7000.102.50964' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Group-External-Member-Count' + lDAPDisplayName = 'msExchGroupExternalMemberCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Group-External-Member-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Group-External-Member-Count' + OID = '1.2.840.113556.1.4.7000.102.51994' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Group-Join-Restriction' + lDAPDisplayName = 'msExchGroupJoinRestriction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Group-Join-Restriction' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Group-Join-Restriction' + OID = '1.2.840.113556.1.4.7000.102.50963' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Group-Member-Count' + lDAPDisplayName = 'msExchGroupMemberCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Group-Member-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Group-Member-Count' + OID = '1.2.840.113556.1.4.7000.102.51993' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Group-Security-Flags' + lDAPDisplayName = 'msExchGroupSecurityFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Group-Security-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Group-Security-Flags' + OID = '1.2.840.113556.1.4.7000.102.52147' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-GWise-API-Gateway' + lDAPDisplayName = 'msExchGWiseAPIGateway' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-API-Gateway' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-API-Gateway' + OID = '1.2.840.113556.1.4.7000.102.1045' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-GWise-API-Gateway-Path' + lDAPDisplayName = 'msExchGWiseAPIGatewayPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-API-Gateway-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-API-Gateway-Path' + OID = '1.2.840.113556.1.4.7000.102.1201' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-GWise-Filter-Type' + lDAPDisplayName = 'msExchGWiseFilterType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-Filter-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-Filter-Type' + OID = '1.2.840.113556.1.4.7000.102.1205' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-GWise-Foreign-Domain' + lDAPDisplayName = 'msExchGWiseForeignDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-Foreign-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-Foreign-Domain' + OID = '1.2.840.113556.1.4.7000.102.1204' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-GWise-Password' + lDAPDisplayName = 'msExchGWisePassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-Password' + OID = '1.2.840.113556.1.4.7000.102.1203' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-GWise-User-Id' + lDAPDisplayName = 'msExchGWiseUserId' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-GWise-User-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-GWise-User-Id' + OID = '1.2.840.113556.1.4.7000.102.1202' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Child-Departments-BL' + lDAPDisplayName = 'msExchHABChildDepartmentsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HAB-Child-Departments-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HAB-Child-Departments-BL' + OID = '1.2.840.113556.1.4.7000.102.50828' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Child-Departments-Link' + lDAPDisplayName = 'msExchHABChildDepartmentsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HAB-Child-Departments-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HAB-Child-Departments-Link' + OID = '1.2.840.113556.1.4.7000.102.50827' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Root-Department-BL' + lDAPDisplayName = 'msExchHABRootDepartmentBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HAB-Root-Department-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HAB-Root-Department-BL' + OID = '1.2.840.113556.1.4.7000.102.50826' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Root-Department-Link' + lDAPDisplayName = 'msExchHABRootDepartmentLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-HAB-Root-Department-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HAB-Root-Department-Link' + OID = '1.2.840.113556.1.4.7000.102.50824' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Show-In-Departments' + lDAPDisplayName = 'msExchHABShowInDepartments' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-HAB-Show-In-Departments' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HAB-Show-In-Departments' + OID = '1.2.840.113556.1.4.7000.102.50823' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-HAB-Show-In-Departments-BL' + lDAPDisplayName = 'msExchHABShowInDepartmentsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HAB-Show-In-Departments-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-HAB-Show-In-Departments-BL' + OID = '1.2.840.113556.1.4.7000.102.50825' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Has-Local-Copy' + lDAPDisplayName = 'msExchHasLocalCopy' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Has-Local-Copy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Has-Local-Copy' + OID = '1.2.840.113556.1.4.7000.102.50417' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Hide-From-Address-Lists' + lDAPDisplayName = 'msExchHideFromAddressLists' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Hide-From-Address-Lists' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Hide-From-Address-Lists' + OID = '1.2.840.113556.1.4.7000.102.73' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Home-MDB-SL' + lDAPDisplayName = 'msExchHomeMDBSL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-MDB-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-MDB-SL' + OID = '1.2.840.113556.1.4.7000.102.51930' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Home-MTA-SL' + lDAPDisplayName = 'msExchHomeMTASL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-MTA-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-MTA-SL' + OID = '1.2.840.113556.1.4.7000.102.51940' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-Public-MDB' + lDAPDisplayName = 'msExchHomePublicMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Home-Public-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-Public-MDB' + OID = '1.2.840.113556.1.4.7000.102.11044' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-Routing-Group' + lDAPDisplayName = 'msExchHomeRoutingGroup' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Home-Routing-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-Routing-Group' + OID = '1.2.840.113556.1.4.7000.102.12539' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-Routing-Group-DN-BL' + lDAPDisplayName = 'msExchHomeRoutingGroupDNBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Home-Routing-Group-DN-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-Routing-Group-DN-BL' + OID = '1.2.840.113556.1.4.7000.102.12513' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Home-Server-Name' + lDAPDisplayName = 'msExchHomeServerName' + oMSyntax = 64 + Optional = $True + searchFlags = 25 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Home-Server-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-Server-Name' + OID = '1.2.840.113556.1.4.7000.102.47' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Home-Sync-Service' + lDAPDisplayName = 'msExchHomeSyncService' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Home-Sync-Service' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Home-Sync-Service' + OID = '1.2.840.113556.1.4.7000.102.36' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Hosted-Content-Filter-Config-Link' + lDAPDisplayName = 'msExchHostedContentFilterConfigLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Hosted-Content-Filter-Config-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Hosted-Content-Filter-Config-Link' + OID = '1.2.840.113556.1.4.7000.102.51950' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Host-Server-BL' + lDAPDisplayName = 'msExchHostServerBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Host-Server-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Host-Server-BL' + OID = '1.2.840.113556.1.4.7000.102.50912' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Host-Server-Link' + lDAPDisplayName = 'msExchHostServerLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Host-Server-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Host-Server-Link' + OID = '1.2.840.113556.1.4.7000.102.50913' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Host-Server-Name' + lDAPDisplayName = 'msExchHostServerName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Host-Server-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Host-Server-Name' + OID = '1.2.840.113556.1.4.7000.102.51528' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Http-Protocol-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchHttpProtocolLogAgeQuotaInHours' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Http-Protocol-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Http-Protocol-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51301' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-HTTP-Protocol-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchHTTPProtocolLogDirectorySizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Protocol-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Protocol-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51302' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-HTTP-Protocol-Log-File-Path' + lDAPDisplayName = 'msExchHTTPProtocolLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Protocol-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Protocol-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51300' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-HTTP-Protocol-Log-Logging-Level' + lDAPDisplayName = 'msExchHTTPProtocolLogLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Protocol-Log-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Protocol-Log-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.51304' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-HTTP-Protocol-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchHTTPProtocolLogPerFileSizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-HTTP-Protocol-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-HTTP-Protocol-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51303' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Hygiene-Configuration-Link' + lDAPDisplayName = 'msExchHygieneConfigurationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Hygiene-Configuration-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Hygiene-Configuration-Link' + OID = '1.2.840.113556.1.4.7000.102.51946' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Hygiene-Configuration-Malware-BL' + lDAPDisplayName = 'msExchHygieneConfigurationMalwareBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Hygiene-Configuration-Malware-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Hygiene-Configuration-Malware-BL' + OID = '1.2.840.113556.1.4.7000.102.51947' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Hygiene-Configuration-Spam-BL' + lDAPDisplayName = 'msExchHygieneConfigurationSpamBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Hygiene-Configuration-Spam-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Hygiene-Configuration-Spam-BL' + OID = '1.2.840.113556.1.4.7000.102.51951' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-IFS-Private-Enabled' + lDAPDisplayName = 'msExchIFSPrivateEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IFS-Private-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IFS-Private-Enabled' + OID = '1.2.840.113556.1.4.7000.102.11029' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-IFS-Private-Name' + lDAPDisplayName = 'msExchIFSPrivateName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IFS-Private-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IFS-Private-Name' + OID = '1.2.840.113556.1.4.7000.102.11033' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-IFS-Public-Enabled' + lDAPDisplayName = 'msExchIFSPublicEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IFS-Public-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IFS-Public-Enabled' + OID = '1.2.840.113556.1.4.7000.102.11050' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-IFS-Public-Name' + lDAPDisplayName = 'msExchIFSPublicName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IFS-Public-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IFS-Public-Name' + OID = '1.2.840.113556.1.4.7000.102.11051' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-IM-ACL' + lDAPDisplayName = 'msExchIMACL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IM-ACL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-IM-ACL' + OID = '1.2.840.113556.1.4.7000.102.7031' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-IM-Address' + lDAPDisplayName = 'msExchIMAddress' + oMSyntax = 19 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IM-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Address' + OID = '1.2.840.113556.1.4.7000.102.7038' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-IMAP4-Settings' + lDAPDisplayName = 'msExchIMAP4Settings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IMAP4-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IMAP4-Settings' + OID = '1.2.840.113556.1.4.7000.102.51485' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IMAP-OWA-URL-Prefix-Override' + lDAPDisplayName = 'msExchIMAPOWAURLPrefixOverride' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IMAP-OWA-URL-Prefix-Override' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IMAP-OWA-URL-Prefix-Override' + OID = '1.2.840.113556.1.4.7000.102.50213' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IMAP-Throttling-Policy-State' + lDAPDisplayName = 'msExchIMAPThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IMAP-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IMAP-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51157' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IMAP-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchIMAPThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IMAP-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IMAP-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52046' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IM-DB-Log-Path' + lDAPDisplayName = 'msExchIMDBLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-DB-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-DB-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.7016' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IM-DB-Path' + lDAPDisplayName = 'msExchIMDBPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-DB-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-DB-Path' + OID = '1.2.840.113556.1.4.7000.102.7015' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-IM-Firewall-Type' + lDAPDisplayName = 'msExchIMFirewallType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Firewall-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Firewall-Type' + OID = '1.2.840.113556.1.4.7000.102.7028' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-IM-Host-Name' + lDAPDisplayName = 'msExchIMHostName' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Host-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Host-Name' + OID = '1.2.840.113556.1.4.7000.102.7034' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-IM-IP-Range' + lDAPDisplayName = 'msExchIMIPRange' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-IP-Range' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-IM-IP-Range' + OID = '1.2.840.113556.1.4.7000.102.7030' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-IM-Meta-Physical-URL' + lDAPDisplayName = 'msExchIMMetaPhysicalURL' + oMSyntax = 19 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IM-Meta-Physical-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Meta-Physical-URL' + OID = '1.2.840.113556.1.4.7000.102.7035' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Immutable-Id' + lDAPDisplayName = 'msExchImmutableId' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Immutable-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Immutable-Id' + OID = '1.2.840.113556.1.4.7000.102.51022' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Immutable-Sid' + lDAPDisplayName = 'msExchImmutableSid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Immutable-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Immutable-Sid' + OID = '1.2.840.113556.1.4.7000.102.52161' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-IM-Physical-URL' + lDAPDisplayName = 'msExchIMPhysicalURL' + oMSyntax = 19 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IM-Physical-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Physical-URL' + OID = '1.2.840.113556.1.4.7000.102.7036' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Import-Container-Linked' + lDAPDisplayName = 'msExchImportContainerLinked' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Import-Container-Linked' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Import-Container-Linked' + OID = '1.2.840.113556.1.4.7000.102.1028' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-IM-Proxy' + lDAPDisplayName = 'msExchIMProxy' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Proxy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Proxy' + OID = '1.2.840.113556.1.4.7000.102.7029' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-IM-Server-Hosts-Users' + lDAPDisplayName = 'msExchIMServerHostsUsers' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Server-Hosts-Users' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Server-Hosts-Users' + OID = '1.2.840.113556.1.4.7000.102.7025' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-IM-Server-IIS-Id' + lDAPDisplayName = 'msExchIMServerIISId' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Server-IIS-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Server-IIS-Id' + OID = '1.2.840.113556.1.4.7000.102.7023' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IM-Server-Name' + lDAPDisplayName = 'msExchIMServerName' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IM-Server-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Server-Name' + OID = '1.2.840.113556.1.4.7000.102.7024' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-IM-Virtual-Server' + lDAPDisplayName = 'msExchIMVirtualServer' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-IM-Virtual-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IM-Virtual-Server' + OID = '1.2.840.113556.1.4.7000.102.7037' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Included-Mailbox-Databases' + lDAPDisplayName = 'msExchIncludedMailboxDatabases' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Included-Mailbox-Databases' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Included-Mailbox-Databases' + OID = '1.2.840.113556.1.4.7000.102.51035' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Incoming-Connection-Timeout' + lDAPDisplayName = 'msExchIncomingConnectionTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Incoming-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Incoming-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.2015' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Inconsistent-State' + lDAPDisplayName = 'msExchInconsistentState' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Inconsistent-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Inconsistent-State' + OID = '1.2.840.113556.1.4.7000.102.96' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Industry' + lDAPDisplayName = 'msExchIndustry' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Industry' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Industry' + OID = '1.2.840.113556.1.4.7000.102.50996' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Installed-Components' + lDAPDisplayName = 'msExchInstalledComponents' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Installed-Components' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Installed-Components' + OID = '1.2.840.113556.1.4.7000.102.50024' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Install-Path' + lDAPDisplayName = 'msExchInstallPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Install-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Install-Path' + OID = '1.2.840.113556.1.4.7000.102.50019' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Intended-Mailbox-Plan-BL' + lDAPDisplayName = 'msExchIntendedMailboxPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Intended-Mailbox-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Intended-Mailbox-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.51564' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Intended-Mailbox-Plan-Link' + lDAPDisplayName = 'msExchIntendedMailboxPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Intended-Mailbox-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Intended-Mailbox-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.51563' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Intended-Service-Plan' + lDAPDisplayName = 'msExchIntendedServicePlan' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Intended-Service-Plan' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Intended-Service-Plan' + OID = '1.2.840.113556.1.4.7000.102.51658' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Internal-Authentication-Methods' + lDAPDisplayName = 'msExchInternalAuthenticationMethods' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-Authentication-Methods' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-Authentication-Methods' + OID = '1.2.840.113556.1.4.7000.102.50465' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Internal-Host-Name' + lDAPDisplayName = 'msExchInternalHostName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-Host-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-Host-Name' + OID = '1.2.840.113556.1.4.7000.102.50463' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Internal-Maintenance-Critical' + lDAPDisplayName = 'msExchInternalMaintenanceCritical' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-Maintenance-Critical' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-Maintenance-Critical' + OID = '1.2.840.113556.1.4.7000.102.51837' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Internal-Maintenance-Overloaded' + lDAPDisplayName = 'msExchInternalMaintenanceOverloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-Maintenance-Overloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-Maintenance-Overloaded' + OID = '1.2.840.113556.1.4.7000.102.51827' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Internal-Maintenance-Underloaded' + lDAPDisplayName = 'msExchInternalMaintenanceUnderloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-Maintenance-Underloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-Maintenance-Underloaded' + OID = '1.2.840.113556.1.4.7000.102.51826' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Internal-NLB-Bypass-Host-Name' + lDAPDisplayName = 'msExchInternalNLBBypassHostName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-NLB-Bypass-Host-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internal-NLB-Bypass-Host-Name' + OID = '1.2.840.113556.1.4.7000.102.50882' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Internal-SMTP-Servers' + lDAPDisplayName = 'msExchInternalSMTPServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internal-SMTP-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Internal-SMTP-Servers' + OID = '1.2.840.113556.1.4.7000.102.50789' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Internet-Name' + lDAPDisplayName = 'msExchInternetName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internet-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internet-Name' + OID = '1.2.840.113556.1.4.7000.102.9019' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Internet-Web-Proxy' + lDAPDisplayName = 'msExchInternetWebProxy' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Internet-Web-Proxy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Internet-Web-Proxy' + OID = '1.2.840.113556.1.4.7000.102.51396' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Inter-Org-Address-Type' + lDAPDisplayName = 'msExchInterOrgAddressType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Inter-Org-Address-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Inter-Org-Address-Type' + OID = '1.2.840.113556.1.4.7000.102.94' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Interrupt-User-On-Audit-Failure' + lDAPDisplayName = 'msExchInterruptUserOnAuditFailure' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Interrupt-User-On-Audit-Failure' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Interrupt-User-On-Audit-Failure' + OID = '1.2.840.113556.1.4.7000.102.51677' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-IP-Address' + lDAPDisplayName = 'msExchIPAddress' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IP-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IP-Address' + OID = '1.2.840.113556.1.4.7000.102.5050' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-IP-Security' + lDAPDisplayName = 'msExchIPSecurity' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IP-Security' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IP-Security' + OID = '1.2.840.113556.1.4.7000.102.2013' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-IRM-Log-Max-Age' + lDAPDisplayName = 'msExchIRMLogMaxAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IRM-Log-Max-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IRM-Log-Max-Age' + OID = '1.2.840.113556.1.4.7000.102.51680' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-IRM-Log-Max-Directory-Size' + lDAPDisplayName = 'msExchIRMLogMaxDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IRM-Log-Max-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IRM-Log-Max-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.51681' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-IRM-Log-Max-File-Size' + lDAPDisplayName = 'msExchIRMLogMaxFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IRM-Log-Max-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IRM-Log-Max-File-Size' + OID = '1.2.840.113556.1.4.7000.102.51682' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-IRM-Log-Path' + lDAPDisplayName = 'msExchIRMLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-IRM-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-IRM-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.51683' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Is-Bridgehead-Site' + lDAPDisplayName = 'msExchIsBridgeheadSite' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Is-Bridgehead-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Is-Bridgehead-Site' + OID = '1.2.840.113556.1.4.7000.102.35' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Is-Config-CA' + lDAPDisplayName = 'msExchIsConfigCA' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Is-Config-CA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Is-Config-CA' + OID = '1.2.840.113556.1.4.7000.102.79' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Is-Dirsync-Status-Pending' + lDAPDisplayName = 'msExchIsDirsyncStatusPending' + oMSyntax = 1 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Is-Dirsync-Status-Pending' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Is-Dirsync-Status-Pending' + OID = '1.2.840.113556.1.4.7000.102.51790' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Is-MSO-Dirsynced' + lDAPDisplayName = 'msExchIsMSODirsynced' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Is-MSO-Dirsynced' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Is-MSO-Dirsynced' + OID = '1.2.840.113556.1.4.7000.102.51718' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Is-MSO-Dirsync-Enabled' + lDAPDisplayName = 'msExchIsMSODirsyncEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Is-MSO-Dirsync-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Is-MSO-Dirsync-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51719' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Journaling-Reconciliation-Mailboxes' + lDAPDisplayName = 'msExchJournalingReconciliationMailboxes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Reconciliation-Mailboxes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Journaling-Reconciliation-Mailboxes' + OID = '1.2.840.113556.1.4.7000.102.51239' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Journaling-Reconciliation-Password' + lDAPDisplayName = 'msExchJournalingReconciliationPassword' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Reconciliation-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Journaling-Reconciliation-Password' + OID = '1.2.840.113556.1.4.7000.102.51238' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Journaling-Reconciliation-Url' + lDAPDisplayName = 'msExchJournalingReconciliationUrl' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Reconciliation-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Journaling-Reconciliation-Url' + OID = '1.2.840.113556.1.4.7000.102.51236' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Journaling-Reconciliation-Username' + lDAPDisplayName = 'msExchJournalingReconciliationUsername' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Reconciliation-Username' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Journaling-Reconciliation-Username' + OID = '1.2.840.113556.1.4.7000.102.51237' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Journaling-Report-NDR-To' + lDAPDisplayName = 'msExchJournalingReportNDRTo' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Report-NDR-To' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Journaling-Report-NDR-To' + OID = '1.2.840.113556.1.4.7000.102.50481' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Journaling-Rules-Link' + lDAPDisplayName = 'msExchJournalingRulesLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Journaling-Rules-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Journaling-Rules-Link' + OID = '1.2.840.113556.1.4.7000.102.50483' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Last-Applied-Recipient-Filter' + lDAPDisplayName = 'msExchLastAppliedRecipientFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Last-Applied-Recipient-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Last-Applied-Recipient-Filter' + OID = '1.2.840.113556.1.4.7000.102.50829' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Last-Exchange-Changed-Time' + lDAPDisplayName = 'msExchLastExchangeChangedTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Last-Exchange-Changed-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Last-Exchange-Changed-Time' + OID = '1.2.840.113556.1.4.7000.102.51608' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Last-Update-Time' + lDAPDisplayName = 'msExchLastUpdateTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Last-Update-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Last-Update-Time' + OID = '1.2.840.113556.1.4.7000.102.50933' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Legacy-Account' + lDAPDisplayName = 'msExchLegacyAccount' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Legacy-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Legacy-Account' + OID = '1.2.840.113556.1.4.7000.102.50040' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Legacy-Domain' + lDAPDisplayName = 'msExchLegacyDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Legacy-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Legacy-Domain' + OID = '1.2.840.113556.1.4.7000.102.50041' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Legacy-PW' + lDAPDisplayName = 'msExchLegacyPW' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Legacy-PW' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Legacy-PW' + OID = '1.2.840.113556.1.4.7000.102.50042' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Legacy-Redirect-Type' + lDAPDisplayName = 'msExchLegacyRedirectType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Legacy-Redirect-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Legacy-Redirect-Type' + OID = '1.2.840.113556.1.4.7000.102.51567' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-License-Token' + lDAPDisplayName = 'msExchLicenseToken' + oMSyntax = 64 + Optional = $True + searchFlags = 11 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-License-Token' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-License-Token' + OID = '1.2.840.113556.1.4.7000.102.51570' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-List-Public' + lDAPDisplayName = 'msExchListPublic' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-List-Public' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-List-Public' + OID = '1.2.840.113556.1.4.7000.102.9011' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Litigation-Hold-Date' + lDAPDisplayName = 'msExchLitigationHoldDate' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Litigation-Hold-Date' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Litigation-Hold-Date' + OID = '1.2.840.113556.1.4.7000.102.51734' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Litigation-Hold-Owner' + lDAPDisplayName = 'msExchLitigationHoldOwner' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Litigation-Hold-Owner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Litigation-Hold-Owner' + OID = '1.2.840.113556.1.4.7000.102.51735' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Local-Domains' + lDAPDisplayName = 'msExchLocalDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Local-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Local-Domains' + OID = '1.2.840.113556.1.4.7000.102.50032' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Locales' + lDAPDisplayName = 'msExchLocales' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Locales' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Locales' + OID = '1.2.840.113556.1.4.7000.102.50017' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Localization-Flags' + lDAPDisplayName = 'msExchLocalizationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Localization-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Localization-Flags' + OID = '1.2.840.113556.1.4.7000.102.51774' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Local-Name' + lDAPDisplayName = 'msExchLocalName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Local-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Local-Name' + OID = '1.2.840.113556.1.4.7000.102.9017' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-Logon-ACL' + lDAPDisplayName = 'msExchLogonACL' + oMSyntax = 66 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Logon-ACL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Logon-ACL' + OID = '1.2.840.113556.1.4.7000.102.5057' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Logon-Method' + lDAPDisplayName = 'msExchLogonMethod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Logon-Method' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Logon-Method' + OID = '1.2.840.113556.1.4.7000.102.15002' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Log-Type' + lDAPDisplayName = 'msExchLogType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Log-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Log-Type' + OID = '1.2.840.113556.1.4.7000.102.2005' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Mailbox-Audit-Enable' + lDAPDisplayName = 'msExchMailboxAuditEnable' + oMSyntax = 1 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Audit-Enable' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Audit-Enable' + OID = '1.2.840.113556.1.4.7000.102.51671' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Mailbox-Audit-Last-Admin-Access' + lDAPDisplayName = 'msExchMailboxAuditLastAdminAccess' + oMSyntax = 24 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Audit-Last-Admin-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Audit-Last-Admin-Access' + OID = '1.2.840.113556.1.4.7000.102.51738' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Mailbox-Audit-Last-Delegate-Access' + lDAPDisplayName = 'msExchMailboxAuditLastDelegateAccess' + oMSyntax = 24 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Audit-Last-Delegate-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Audit-Last-Delegate-Access' + OID = '1.2.840.113556.1.4.7000.102.51739' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Mailbox-Audit-Last-External-Access' + lDAPDisplayName = 'msExchMailboxAuditLastExternalAccess' + oMSyntax = 24 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Audit-Last-External-Access' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Audit-Last-External-Access' + OID = '1.2.840.113556.1.4.7000.102.51737' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Audit-Log-Age-Limit' + lDAPDisplayName = 'msExchMailboxAuditLogAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Audit-Log-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Audit-Log-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.51672' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Container-Guid' + lDAPDisplayName = 'msExchMailboxContainerGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Container-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Container-Guid' + OID = '1.2.840.113556.1.4.7000.102.52134' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Database-Transport-Flags' + lDAPDisplayName = 'msExchMailboxDatabaseTransportFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Database-Transport-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Database-Transport-Flags' + OID = '1.2.840.113556.1.4.7000.102.51840' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Folder-Set' + lDAPDisplayName = 'msExchMailboxFolderSet' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Folder-Set' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Folder-Set' + OID = '1.2.840.113556.1.4.7000.102.11091' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Folder-Set-2' + lDAPDisplayName = 'msExchMailboxFolderSet2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Folder-Set-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Folder-Set-2' + OID = '1.2.840.113556.1.4.7000.102.51568' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Guid' + lDAPDisplayName = 'msExchMailboxGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Guid' + OID = '1.2.840.113556.1.4.7000.102.11058' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Activation-Schedule' + lDAPDisplayName = 'msExchMailboxManagerActivationSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Activation-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Activation-Schedule' + OID = '1.2.840.113556.1.4.7000.102.50067' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Activation-Style' + lDAPDisplayName = 'msExchMailboxManagerActivationStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Activation-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Activation-Style' + OID = '1.2.840.113556.1.4.7000.102.50068' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Admin-Mode' + lDAPDisplayName = 'msExchMailboxManagerAdminMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Admin-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Admin-Mode' + OID = '1.2.840.113556.1.4.7000.102.50077' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Age-Limit' + lDAPDisplayName = 'msExchMailboxManagerAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.50081' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Custom-Message' + lDAPDisplayName = 'msExchMailboxManagerCustomMessage' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Custom-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Custom-Message' + OID = '1.2.840.113556.1.4.7000.102.50070' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Folder-Settings' + lDAPDisplayName = 'msExchMailboxManagerFolderSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Folder-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Manager-Folder-Settings' + OID = '1.2.840.113556.1.4.7000.102.50078' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Keep-Message-Classes' + lDAPDisplayName = 'msExchMailboxManagerKeepMessageClasses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Keep-Message-Classes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Manager-Keep-Message-Classes' + OID = '1.2.840.113556.1.4.7000.102.50074' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Mode' + lDAPDisplayName = 'msExchMailboxManagerMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Mode' + OID = '1.2.840.113556.1.4.7000.102.50075' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Report-Recipient' + lDAPDisplayName = 'msExchMailboxManagerReportRecipient' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Report-Recipient' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Report-Recipient' + OID = '1.2.840.113556.1.4.7000.102.50076' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Send-User-Notification-Mail' + lDAPDisplayName = 'msExchMailboxManagerSendUserNotificationMail' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Send-User-Notification-Mail' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Send-User-Notification-Mail' + OID = '1.2.840.113556.1.4.7000.102.50069' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Size-Limit' + lDAPDisplayName = 'msExchMailboxManagerSizeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Size-Limit' + OID = '1.2.840.113556.1.4.7000.102.50080' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Mailbox-Manager-Size-Limit-Enabled' + lDAPDisplayName = 'msExchMailboxManagerSizeLimitEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-Size-Limit-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-Size-Limit-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50079' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Manager-User-Message-Body' + lDAPDisplayName = 'msExchMailboxManagerUserMessageBody' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-User-Message-Body' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-User-Message-Body' + OID = '1.2.840.113556.1.4.7000.102.50072' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Manager-User-Message-Footer' + lDAPDisplayName = 'msExchMailboxManagerUserMessageFooter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-User-Message-Footer' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-User-Message-Footer' + OID = '1.2.840.113556.1.4.7000.102.50073' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Manager-User-Message-Header' + lDAPDisplayName = 'msExchMailboxManagerUserMessageHeader' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Manager-User-Message-Header' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Manager-User-Message-Header' + OID = '1.2.840.113556.1.4.7000.102.50071' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Move-Batch-Name' + lDAPDisplayName = 'msExchMailboxMoveBatchName' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Batch-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Batch-Name' + OID = '1.2.840.113556.1.4.7000.102.51438' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Move-File-Path' + lDAPDisplayName = 'msExchMailboxMoveFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51594' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Move-Flags' + lDAPDisplayName = 'msExchMailboxMoveFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Flags' + OID = '1.2.840.113556.1.4.7000.102.51400' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Move-Remote-Host-Name' + lDAPDisplayName = 'msExchMailboxMoveRemoteHostName' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Remote-Host-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Remote-Host-Name' + OID = '1.2.840.113556.1.4.7000.102.51402' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Request-Guid' + lDAPDisplayName = 'msExchMailboxMoveRequestGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Request-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Request-Guid' + OID = '1.2.840.113556.1.4.7000.102.51593' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-BL' + lDAPDisplayName = 'msExchMailboxMoveSourceArchiveMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51686' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link' + lDAPDisplayName = 'msExchMailboxMoveSourceArchiveMDBLink' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link' + OID = '1.2.840.113556.1.4.7000.102.51684' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link-SL' + lDAPDisplayName = 'msExchMailboxMoveSourceArchiveMDBLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Source-Archive-MDB-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51933' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-MDB-BL' + lDAPDisplayName = 'msExchMailboxMoveSourceMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Source-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51440' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-MDB-Link' + lDAPDisplayName = 'msExchMailboxMoveSourceMDBLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-MDB-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Source-MDB-Link' + OID = '1.2.840.113556.1.4.7000.102.51439' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-MDB-Link-SL' + lDAPDisplayName = 'msExchMailboxMoveSourceMDBLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-MDB-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Source-MDB-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51934' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-User-BL' + lDAPDisplayName = 'msExchMailboxMoveSourceUserBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-User-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Source-User-BL' + OID = '1.2.840.113556.1.4.7000.102.51599' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Source-User-Link' + lDAPDisplayName = 'msExchMailboxMoveSourceUserLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Source-User-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Source-User-Link' + OID = '1.2.840.113556.1.4.7000.102.51598' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Move-Status' + lDAPDisplayName = 'msExchMailboxMoveStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Status' + OID = '1.2.840.113556.1.4.7000.102.51401' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Storage-MDB-BL' + lDAPDisplayName = 'msExchMailboxMoveStorageMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Storage-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Storage-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51601' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Storage-MDB-Link' + lDAPDisplayName = 'msExchMailboxMoveStorageMDBLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Storage-MDB-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Storage-MDB-Link' + OID = '1.2.840.113556.1.4.7000.102.51600' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Storage-MDB-Link-SL' + lDAPDisplayName = 'msExchMailboxMoveStorageMDBLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Storage-MDB-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Storage-MDB-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51935' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-BL' + lDAPDisplayName = 'msExchMailboxMoveTargetArchiveMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51687' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link' + lDAPDisplayName = 'msExchMailboxMoveTargetArchiveMDBLink' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link' + OID = '1.2.840.113556.1.4.7000.102.51685' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link-SL' + lDAPDisplayName = 'msExchMailboxMoveTargetArchiveMDBLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Target-Archive-MDB-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51936' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-MDB-BL' + lDAPDisplayName = 'msExchMailboxMoveTargetMDBBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-MDB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Target-MDB-BL' + OID = '1.2.840.113556.1.4.7000.102.51399' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-MDB-Link' + lDAPDisplayName = 'msExchMailboxMoveTargetMDBLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-MDB-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Target-MDB-Link' + OID = '1.2.840.113556.1.4.7000.102.51398' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-MDB-Link-SL' + lDAPDisplayName = 'msExchMailboxMoveTargetMDBLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-MDB-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Target-MDB-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51952' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-User-BL' + lDAPDisplayName = 'msExchMailboxMoveTargetUserBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-User-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Move-Target-User-BL' + OID = '1.2.840.113556.1.4.7000.102.51597' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Move-Target-User-Link' + lDAPDisplayName = 'msExchMailboxMoveTargetUserLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Move-Target-User-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Move-Target-User-Link' + OID = '1.2.840.113556.1.4.7000.102.51596' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-OAB-Virtual-Directories-BL' + lDAPDisplayName = 'msExchMailboxOABVirtualDirectoriesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-OAB-Virtual-Directories-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-OAB-Virtual-Directories-BL' + OID = '1.2.840.113556.1.4.7000.102.50512' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-OAB-Virtual-Directories-Link' + lDAPDisplayName = 'msExchMailboxOABVirtualDirectoriesLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-OAB-Virtual-Directories-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-OAB-Virtual-Directories-Link' + OID = '1.2.840.113556.1.4.7000.102.50511' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Plan-Type' + lDAPDisplayName = 'msExchMailboxPlanType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Plan-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Plan-Type' + OID = '1.2.840.113556.1.4.7000.102.51405' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Release' + lDAPDisplayName = 'msExchMailboxRelease' + oMSyntax = 64 + Optional = $True + searchFlags = 11 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Release' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Release' + OID = '1.2.840.113556.1.4.7000.102.52073' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Retention-Period' + lDAPDisplayName = 'msExchMailboxRetentionPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Retention-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Retention-Period' + OID = '1.2.840.113556.1.4.7000.102.11060' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mailbox-Role-Flags' + lDAPDisplayName = 'msExchMailboxRoleFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Role-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Role-Flags' + OID = '1.2.840.113556.1.4.7000.102.50777' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-Mailbox-Security-Descriptor' + lDAPDisplayName = 'msExchMailboxSecurityDescriptor' + oMSyntax = 66 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Security-Descriptor' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Security-Descriptor' + OID = '1.2.840.113556.1.4.7000.102.80' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Template-BL' + lDAPDisplayName = 'msExchMailboxTemplateBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Template-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailbox-Template-BL' + OID = '1.2.840.113556.1.4.7000.102.50352' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mailbox-Template-Link' + lDAPDisplayName = 'msExchMailboxTemplateLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Template-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Template-Link' + OID = '1.2.840.113556.1.4.7000.102.50351' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailbox-Url' + lDAPDisplayName = 'msExchMailboxUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mailbox-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailbox-Url' + OID = '1.2.840.113556.1.4.7000.102.50085' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailflow-Policy-Countries' + lDAPDisplayName = 'msExchMailflowPolicyCountries' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailflow-Policy-Countries' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailflow-Policy-Countries' + OID = '1.2.840.113556.1.4.7000.102.52029' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailflow-Policy-Keywords' + lDAPDisplayName = 'msExchMailflowPolicyKeywords' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailflow-Policy-Keywords' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mailflow-Policy-Keywords' + OID = '1.2.840.113556.1.4.7000.102.52030' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailflow-Policy-Publisher-Name' + lDAPDisplayName = 'msExchMailflowPolicyPublisherName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailflow-Policy-Publisher-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailflow-Policy-Publisher-Name' + OID = '1.2.840.113556.1.4.7000.102.52039' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailflow-Policy-Transport-Rules-Template-Xml' + lDAPDisplayName = 'msExchMailflowPolicyTransportRulesTemplateXml' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailflow-Policy-Transport-Rules-Template-Xml' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailflow-Policy-Transport-Rules-Template-Xml' + OID = '1.2.840.113556.1.4.7000.102.52041' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mailflow-Policy-Version' + lDAPDisplayName = 'msExchMailflowPolicyVersion' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mailflow-Policy-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mailflow-Policy-Version' + OID = '1.2.840.113556.1.4.7000.102.52037' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mail-Gateway-Flags' + lDAPDisplayName = 'msExchMailGatewayFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mail-Gateway-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mail-Gateway-Flags' + OID = '1.2.840.113556.1.4.7000.102.50787' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mail-Tips-Large-Audience-Threshold' + lDAPDisplayName = 'msExchMailTipsLargeAudienceThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mail-Tips-Large-Audience-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mail-Tips-Large-Audience-Threshold' + OID = '1.2.840.113556.1.4.7000.102.51192' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-MailTips-Settings' + lDAPDisplayName = 'msExchMailTipsSettings' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MailTips-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MailTips-Settings' + OID = '1.2.840.113556.1.4.7000.102.51051' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Maintenance-Schedule' + lDAPDisplayName = 'msExchMaintenanceSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Maintenance-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Maintenance-Schedule' + OID = '1.2.840.113556.1.4.7000.102.1029' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Maintenance-Style' + lDAPDisplayName = 'msExchMaintenanceStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Maintenance-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Maintenance-Style' + OID = '1.2.840.113556.1.4.7000.102.1030' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Alert-Text' + lDAPDisplayName = 'msExchMalwareFilterConfigAlertText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Alert-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Alert-Text' + OID = '1.2.840.113556.1.4.7000.102.51923' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-External-Body' + lDAPDisplayName = 'msExchMalwareFilterConfigExternalBody' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-External-Body' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-External-Body' + OID = '1.2.840.113556.1.4.7000.102.51927' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-External-Sender-Admin-Address' + lDAPDisplayName = 'msExchMalwareFilterConfigExternalSenderAdminAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-External-Sender-Admin-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-External-Sender-Admin-Address' + OID = '1.2.840.113556.1.4.7000.102.51998' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-External-Subject' + lDAPDisplayName = 'msExchMalwareFilterConfigExternalSubject' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-External-Subject' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-External-Subject' + OID = '1.2.840.113556.1.4.7000.102.51926' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Flags' + lDAPDisplayName = 'msExchMalwareFilterConfigFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Flags' + OID = '1.2.840.113556.1.4.7000.102.51922' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-From-Address' + lDAPDisplayName = 'msExchMalwareFilterConfigFromAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-From-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-From-Address' + OID = '1.2.840.113556.1.4.7000.102.51929' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-From-Name' + lDAPDisplayName = 'msExchMalwareFilterConfigFromName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-From-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-From-Name' + OID = '1.2.840.113556.1.4.7000.102.51928' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Internal-Body' + lDAPDisplayName = 'msExchMalwareFilterConfigInternalBody' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Internal-Body' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Internal-Body' + OID = '1.2.840.113556.1.4.7000.102.51925' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Internal-Sender-Admin-Address' + lDAPDisplayName = 'msExchMalwareFilterConfigInternalSenderAdminAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Internal-Sender-Admin-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Internal-Sender-Admin-Address' + OID = '1.2.840.113556.1.4.7000.102.51997' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Internal-Subject' + lDAPDisplayName = 'msExchMalwareFilterConfigInternalSubject' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Internal-Subject' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Internal-Subject' + OID = '1.2.840.113556.1.4.7000.102.51924' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Malware-Filter-Config-Link' + lDAPDisplayName = 'msExchMalwareFilterConfigLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filter-Config-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filter-Config-Link' + OID = '1.2.840.113556.1.4.7000.102.51949' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Defer-Attempts' + lDAPDisplayName = 'msExchMalwareFilteringDeferAttempts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Defer-Attempts' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Defer-Attempts' + OID = '1.2.840.113556.1.4.7000.102.51864' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Defer-Wait-Time' + lDAPDisplayName = 'msExchMalwareFilteringDeferWaitTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Defer-Wait-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Defer-Wait-Time' + OID = '1.2.840.113556.1.4.7000.102.51863' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Flags' + lDAPDisplayName = 'msExchMalwareFilteringFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Flags' + OID = '1.2.840.113556.1.4.7000.102.51862' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filtering-Primary-Update-Path' + lDAPDisplayName = 'msExchMalwareFilteringPrimaryUpdatePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Primary-Update-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Primary-Update-Path' + OID = '1.2.840.113556.1.4.7000.102.51865' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Scan-Timeout' + lDAPDisplayName = 'msExchMalwareFilteringScanTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Scan-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Scan-Timeout' + OID = '1.2.840.113556.1.4.7000.102.52004' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Malware-Filtering-Secondary-Update-Path' + lDAPDisplayName = 'msExchMalwareFilteringSecondaryUpdatePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Secondary-Update-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Secondary-Update-Path' + OID = '1.2.840.113556.1.4.7000.102.51866' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Update-Frequency' + lDAPDisplayName = 'msExchMalwareFilteringUpdateFrequency' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Update-Frequency' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Update-Frequency' + OID = '1.2.840.113556.1.4.7000.102.51867' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Malware-Filtering-Update-Timeout' + lDAPDisplayName = 'msExchMalwareFilteringUpdateTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Malware-Filtering-Update-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Malware-Filtering-Update-Timeout' + OID = '1.2.840.113556.1.4.7000.102.51868' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Management-Console-Feedback-Enabled' + lDAPDisplayName = 'msExchManagementConsoleFeedbackEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Console-Feedback-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Console-Feedback-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51027' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Management-Console-Feedback-URL' + lDAPDisplayName = 'msExchManagementConsoleFeedbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Console-Feedback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Console-Feedback-URL' + OID = '1.2.840.113556.1.4.7000.102.50986' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Management-Console-Help-URL' + lDAPDisplayName = 'msExchManagementConsoleHelpURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Console-Help-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Console-Help-URL' + OID = '1.2.840.113556.1.4.7000.102.50985' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Management-Settings' + lDAPDisplayName = 'msExchManagementSettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Settings' + OID = '1.2.840.113556.1.4.7000.102.51491' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Management-Site-Link' + lDAPDisplayName = 'msExchManagementSiteLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Site-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Site-Link' + OID = '1.2.840.113556.1.4.7000.102.51410' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Management-Site-Link-SL' + lDAPDisplayName = 'msExchManagementSiteLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Management-Site-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Management-Site-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51941' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mandatory-Attributes' + lDAPDisplayName = 'msExchMandatoryAttributes' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mandatory-Attributes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mandatory-Attributes' + OID = '1.2.840.113556.1.4.7000.102.50029' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Master-Account-History' + lDAPDisplayName = 'msExchMasterAccountHistory' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Master-Account-History' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Master-Account-History' + OID = '1.2.840.113556.1.4.7000.102.50835' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Master-Account-Sid' + lDAPDisplayName = 'msExchMasterAccountSid' + oMSyntax = 4 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Master-Account-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Master-Account-Sid' + OID = '1.2.840.113556.1.4.7000.102.81' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Master-Server-Or-Availability-Group' + lDAPDisplayName = 'msExchMasterServerOrAvailabilityGroup' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Master-Server-Or-Availability-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Master-Server-Or-Availability-Group' + OID = '1.2.840.113556.1.4.7000.102.50917' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Master-Service' + lDAPDisplayName = 'msExchMasterService' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Master-Service' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Master-Service' + OID = '1.2.840.113556.1.4.7000.102.82' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Master-Service-BL' + lDAPDisplayName = 'msExchMasterServiceBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Master-Service-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Master-Service-BL' + OID = '1.2.840.113556.1.4.7000.102.83' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-ABP' + lDAPDisplayName = 'msExchMaxABP' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-ABP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-ABP' + OID = '1.2.840.113556.1.4.7000.102.52109' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Active-Mailbox-Databases' + lDAPDisplayName = 'msExchMaxActiveMailboxDatabases' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Active-Mailbox-Databases' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Active-Mailbox-Databases' + OID = '1.2.840.113556.1.4.7000.102.51560' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Blocked-Senders' + lDAPDisplayName = 'msExchMaxBlockedSenders' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Max-Blocked-Senders' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Blocked-Senders' + OID = '1.2.840.113556.1.4.7000.102.50878' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Cached-Views' + lDAPDisplayName = 'msExchMaxCachedViews' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Cached-Views' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Cached-Views' + OID = '1.2.840.113556.1.4.7000.102.11083' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Concurrent-Migrations' + lDAPDisplayName = 'msExchMaxConcurrentMigrations' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Max-Concurrent-Migrations' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Concurrent-Migrations' + OID = '1.2.840.113556.1.4.7000.102.51984' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Connections' + lDAPDisplayName = 'msExchMaxConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Connections' + OID = '1.2.840.113556.1.4.7000.102.9013' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Dumpster-Size-Per-Storage-Group' + lDAPDisplayName = 'msExchMaxDumpsterSizePerStorageGroup' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Dumpster-Size-Per-Storage-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Dumpster-Size-Per-Storage-Group' + OID = '1.2.840.113556.1.4.7000.102.50728' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Dumpster-Time' + lDAPDisplayName = 'msExchMaxDumpsterTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Dumpster-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Dumpster-Time' + OID = '1.2.840.113556.1.4.7000.102.50729' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Extension-Time' + lDAPDisplayName = 'msExchMaxExtensionTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Extension-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Extension-Time' + OID = '1.2.840.113556.1.4.7000.102.9028' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Maximum-Recurring-Instances' + lDAPDisplayName = 'msExchMaximumRecurringInstances' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Maximum-Recurring-Instances' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Maximum-Recurring-Instances' + OID = '1.2.840.113556.1.4.7000.102.10014' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Maximum-Recurring-Instances-Months' + lDAPDisplayName = 'msExchMaximumRecurringInstancesMonths' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Maximum-Recurring-Instances-Months' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Maximum-Recurring-Instances-Months' + OID = '1.2.840.113556.1.4.7000.102.10015' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Incoming-Connections' + lDAPDisplayName = 'msExchMaxIncomingConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Incoming-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Incoming-Connections' + OID = '1.2.840.113556.1.4.7000.102.2004' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-OAB' + lDAPDisplayName = 'msExchMaxOAB' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-OAB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-OAB' + OID = '1.2.840.113556.1.4.7000.102.52110' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Participants' + lDAPDisplayName = 'msExchMaxParticipants' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Participants' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Participants' + OID = '1.2.840.113556.1.4.7000.102.9027' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Pool-Threads' + lDAPDisplayName = 'msExchMaxPoolThreads' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Pool-Threads' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Pool-Threads' + OID = '1.2.840.113556.1.4.7000.102.11041' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Restore-Storage-Groups' + lDAPDisplayName = 'msExchMaxRestoreStorageGroups' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Restore-Storage-Groups' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Restore-Storage-Groups' + OID = '1.2.840.113556.1.4.7000.102.11095' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Safe-Senders' + lDAPDisplayName = 'msExchMaxSafeSenders' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Max-Safe-Senders' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Safe-Senders' + OID = '1.2.840.113556.1.4.7000.102.50877' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Signup-Addresses-Per-User' + lDAPDisplayName = 'msExchMaxSignupAddressesPerUser' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Signup-Addresses-Per-User' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Signup-Addresses-Per-User' + OID = '1.2.840.113556.1.4.7000.102.50992' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Storage-Groups' + lDAPDisplayName = 'msExchMaxStorageGroups' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Storage-Groups' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Storage-Groups' + OID = '1.2.840.113556.1.4.7000.102.11027' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Stores-Per-Group' + lDAPDisplayName = 'msExchMaxStoresPerGroup' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Stores-Per-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Stores-Per-Group' + OID = '1.2.840.113556.1.4.7000.102.11028' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Stores-Total' + lDAPDisplayName = 'msExchMaxStoresTotal' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Stores-Total' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Stores-Total' + OID = '1.2.840.113556.1.4.7000.102.50412' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Max-Threads' + lDAPDisplayName = 'msExchMaxThreads' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Max-Threads' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Max-Threads' + OID = '1.2.840.113556.1.4.7000.102.11042' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MCU-Hosts-Sites' + lDAPDisplayName = 'msExchMCUHostsSites' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MCU-Hosts-Sites' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MCU-Hosts-Sites' + OID = '1.2.840.113556.1.4.7000.102.9031' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MCU-Hosts-Sites-BL' + lDAPDisplayName = 'msExchMCUHostsSitesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MCU-Hosts-Sites-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MCU-Hosts-Sites-BL' + OID = '1.2.840.113556.1.4.7000.102.9032' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-BL' + lDAPDisplayName = 'msExchMDBAvailabilityGroupBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MDB-Availability-Group-BL' + OID = '1.2.840.113556.1.4.7000.102.50916' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Configuration-BL' + lDAPDisplayName = 'msExchMDBAvailabilityGroupConfigurationBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Configuration-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MDB-Availability-Group-Configuration-BL' + OID = '1.2.840.113556.1.4.7000.102.52101' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Configuration-Link' + lDAPDisplayName = 'msExchMDBAvailabilityGroupConfigurationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Configuration-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Availability-Group-Configuration-Link' + OID = '1.2.840.113556.1.4.7000.102.52100' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-IPv4-Addresses' + lDAPDisplayName = 'msExchMDBAvailabilityGroupIPv4Addresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-IPv4-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MDB-Availability-Group-IPv4-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51275' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Link' + lDAPDisplayName = 'msExchMDBAvailabilityGroupLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Availability-Group-Link' + OID = '1.2.840.113556.1.4.7000.102.50915' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Name' + lDAPDisplayName = 'msExchMDBAvailabilityGroupName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Availability-Group-Name' + OID = '1.2.840.113556.1.4.7000.102.50980' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Network-Settings' + lDAPDisplayName = 'msExchMDBAvailabilityGroupNetworkSettings' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Network-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Availability-Group-Network-Settings' + OID = '1.2.840.113556.1.4.7000.102.51259' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Availability-Group-Replication-Port' + lDAPDisplayName = 'msExchMDBAvailabilityGroupReplicationPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Availability-Group-Replication-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Availability-Group-Replication-Port' + OID = '1.2.840.113556.1.4.7000.102.51974' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MDB-Copy-Parent-Class' + lDAPDisplayName = 'msExchMDBCopyParentClass' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Copy-Parent-Class' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Copy-Parent-Class' + OID = '1.2.840.113556.1.4.7000.102.51426' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MDB-Name' + lDAPDisplayName = 'msExchMDBName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MDB-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Name' + OID = '1.2.840.113556.1.4.7000.102.51529' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MDB-Rules-Quota' + lDAPDisplayName = 'msExchMDBRulesQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MDB-Rules-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MDB-Rules-Quota' + OID = '1.2.840.113556.1.4.7000.102.50413' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Member-Base-DN' + lDAPDisplayName = 'msExchMemberBaseDN' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Member-Base-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Member-Base-DN' + OID = '1.2.840.113556.1.4.7000.102.12524' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Member-Filter' + lDAPDisplayName = 'msExchMemberFilter' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Member-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Member-Filter' + OID = '1.2.840.113556.1.4.7000.102.12522' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Classification-Banner' + lDAPDisplayName = 'msExchMessageClassificationBanner' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Banner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Banner' + OID = '1.2.840.113556.1.4.7000.102.50648' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Classification-Confidentiality-Action' + lDAPDisplayName = 'msExchMessageClassificationConfidentialityAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Confidentiality-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Confidentiality-Action' + OID = '1.2.840.113556.1.4.7000.102.50644' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Classification-Display-Precedence' + lDAPDisplayName = 'msExchMessageClassificationDisplayPrecedence' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Display-Precedence' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Display-Precedence' + OID = '1.2.840.113556.1.4.7000.102.50643' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Classification-Flags' + lDAPDisplayName = 'msExchMessageClassificationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Flags' + OID = '1.2.840.113556.1.4.7000.102.50646' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Message-Classification-ID' + lDAPDisplayName = 'msExchMessageClassificationID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-ID' + OID = '1.2.840.113556.1.4.7000.102.50641' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Classification-Integrity-Action' + lDAPDisplayName = 'msExchMessageClassificationIntegrityAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Integrity-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Integrity-Action' + OID = '1.2.840.113556.1.4.7000.102.50645' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Classification-Locale' + lDAPDisplayName = 'msExchMessageClassificationLocale' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Locale' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Locale' + OID = '1.2.840.113556.1.4.7000.102.50647' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Classification-URL' + lDAPDisplayName = 'msExchMessageClassificationURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-URL' + OID = '1.2.840.113556.1.4.7000.102.50649' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Classification-Version' + lDAPDisplayName = 'msExchMessageClassificationVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Classification-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Classification-Version' + OID = '1.2.840.113556.1.4.7000.102.50642' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Bitmask' + lDAPDisplayName = 'msExchMessageHygieneBitmask' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Bitmask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Bitmask' + OID = '1.2.840.113556.1.4.7000.102.50617' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Blocked-Domain' + lDAPDisplayName = 'msExchMessageHygieneBlockedDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Blocked-Domain' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Blocked-Domain' + OID = '1.2.840.113556.1.4.7000.102.50621' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Blocked-Domain-And-Subdomains' + lDAPDisplayName = 'msExchMessageHygieneBlockedDomainAndSubdomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Blocked-Domain-And-Subdomains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Blocked-Domain-And-Subdomains' + OID = '1.2.840.113556.1.4.7000.102.50623' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Blocked-Recipient' + lDAPDisplayName = 'msExchMessageHygieneBlockedRecipient' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Blocked-Recipient' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Blocked-Recipient' + OID = '1.2.840.113556.1.4.7000.102.50627' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Blocked-Sender' + lDAPDisplayName = 'msExchMessageHygieneBlockedSender' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Blocked-Sender' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Blocked-Sender' + OID = '1.2.840.113556.1.4.7000.102.50620' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Blocked-Sender-Action' + lDAPDisplayName = 'msExchMessageHygieneBlockedSenderAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Blocked-Sender-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Blocked-Sender-Action' + OID = '1.2.840.113556.1.4.7000.102.50619' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Bypassed-Recipient' + lDAPDisplayName = 'msExchMessageHygieneBypassedRecipient' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Bypassed-Recipient' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Bypassed-Recipient' + OID = '1.2.840.113556.1.4.7000.102.50608' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domain' + lDAPDisplayName = 'msExchMessageHygieneBypassedSenderDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domain' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domain' + OID = '1.2.840.113556.1.4.7000.102.50609' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domains' + lDAPDisplayName = 'msExchMessageHygieneBypassedSenderDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Bypassed-Sender-Domains' + OID = '1.2.840.113556.1.4.7000.102.50836' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Bypassed-Senders' + lDAPDisplayName = 'msExchMessageHygieneBypassedSenders' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Bypassed-Senders' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Bypassed-Senders' + OID = '1.2.840.113556.1.4.7000.102.50782' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Content-Filter-Location' + lDAPDisplayName = 'msExchMessageHygieneContentFilterLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Content-Filter-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Content-Filter-Location' + OID = '1.2.840.113556.1.4.7000.102.50628' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Custom-Weight-Entry' + lDAPDisplayName = 'msExchMessageHygieneCustomWeightEntry' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Custom-Weight-Entry' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-Custom-Weight-Entry' + OID = '1.2.840.113556.1.4.7000.102.50613' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Delay-Hours' + lDAPDisplayName = 'msExchMessageHygieneDelayHours' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Delay-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Delay-Hours' + OID = '1.2.840.113556.1.4.7000.102.50618' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Flags' + lDAPDisplayName = 'msExchMessageHygieneFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Flags' + OID = '1.2.840.113556.1.4.7000.102.50687' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-IP-Address' + lDAPDisplayName = 'msExchMessageHygieneIPAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-IP-Address' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Message-Hygiene-IP-Address' + OID = '1.2.840.113556.1.4.7000.102.50624' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Lookup-Domain' + lDAPDisplayName = 'msExchMessageHygieneLookupDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Lookup-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Lookup-Domain' + OID = '1.2.840.113556.1.4.7000.102.50614' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Machine-Generated-Rejection-Response' + lDAPDisplayName = 'msExchMessageHygieneMachineGeneratedRejectionResponse' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Machine-Generated-Rejection-Response' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Machine-Generated-Rejection-Response' + OID = '1.2.840.113556.1.4.7000.102.50865' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Priority' + lDAPDisplayName = 'msExchMessageHygienePriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Priority' + OID = '1.2.840.113556.1.4.7000.102.50616' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Provider-Flags' + lDAPDisplayName = 'msExchMessageHygieneProviderFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Provider-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Provider-Flags' + OID = '1.2.840.113556.1.4.7000.102.50626' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Provider-Name' + lDAPDisplayName = 'msExchMessageHygieneProviderName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Provider-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Provider-Name' + OID = '1.2.840.113556.1.4.7000.102.50625' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Quarantine-Mailbox' + lDAPDisplayName = 'msExchMessageHygieneQuarantineMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Quarantine-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Quarantine-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.50760' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Recipient-Blocked-Sender-Action' + lDAPDisplayName = 'msExchMessageHygieneRecipientBlockedSenderAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Recipient-Blocked-Sender-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Recipient-Blocked-Sender-Action' + OID = '1.2.840.113556.1.4.7000.102.50975' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Rejection-Message' + lDAPDisplayName = 'msExchMessageHygieneRejectionMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Rejection-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Rejection-Message' + OID = '1.2.840.113556.1.4.7000.102.50612' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Result-Type' + lDAPDisplayName = 'msExchMessageHygieneResultType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Result-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Result-Type' + OID = '1.2.840.113556.1.4.7000.102.50615' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-SCL-Delete-Threshold' + lDAPDisplayName = 'msExchMessageHygieneSCLDeleteThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-SCL-Delete-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-SCL-Delete-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50779' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-SCL-Junk-Threshold' + lDAPDisplayName = 'msExchMessageHygieneSCLJunkThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-SCL-Junk-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-SCL-Junk-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50783' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-SCL-Quarantine-Threshold' + lDAPDisplayName = 'msExchMessageHygieneSCLQuarantineThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-SCL-Quarantine-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-SCL-Quarantine-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50781' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-SCL-Reject-Threshold' + lDAPDisplayName = 'msExchMessageHygieneSCLRejectThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-SCL-Reject-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-SCL-Reject-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50780' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Spoofed-Domain-Action' + lDAPDisplayName = 'msExchMessageHygieneSpoofedDomainAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Spoofed-Domain-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Spoofed-Domain-Action' + OID = '1.2.840.113556.1.4.7000.102.50606' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Message-Hygiene-Static-Entry-Rejection-Response' + lDAPDisplayName = 'msExchMessageHygieneStaticEntryRejectionResponse' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Static-Entry-Rejection-Response' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Static-Entry-Rejection-Response' + OID = '1.2.840.113556.1.4.7000.102.50866' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Hygiene-Temp-Error-Action' + lDAPDisplayName = 'msExchMessageHygieneTempErrorAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Hygiene-Temp-Error-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Hygiene-Temp-Error-Action' + OID = '1.2.840.113556.1.4.7000.102.50607' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Message-Journal-Recipient' + lDAPDisplayName = 'msExchMessageJournalRecipient' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Journal-Recipient' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Journal-Recipient' + OID = '1.2.840.113556.1.4.7000.102.5055' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Message-Track-Log-Filter' + lDAPDisplayName = 'msExchMessageTrackLogFilter' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Message-Track-Log-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Message-Track-Log-Filter' + OID = '1.2.840.113556.1.4.7000.102.50001' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Metabase-Path' + lDAPDisplayName = 'msExchMetabasePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Metabase-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Metabase-Path' + OID = '1.2.840.113556.1.4.7000.102.50467' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Migration-Flags' + lDAPDisplayName = 'msExchMigrationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Migration-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Flags' + OID = '1.2.840.113556.1.4.7000.102.51983' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Migration-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchMigrationLogAgeQuotaInHours' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51727' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Migration-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchMigrationLogDirectorySizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51728' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Migration-Log-Directory-Size-Quota-Large' + lDAPDisplayName = 'msExchMigrationLogDirectorySizeQuotaLarge' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Directory-Size-Quota-Large' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Directory-Size-Quota-Large' + OID = '1.2.840.113556.1.4.7000.102.51770' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Migration-Log-Extension-Data' + lDAPDisplayName = 'msExchMigrationLogExtensionData' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Extension-Data' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Extension-Data' + OID = '1.2.840.113556.1.4.7000.102.51732' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Migration-Log-Log-File-Path' + lDAPDisplayName = 'msExchMigrationLogLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51729' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Migration-Log-Logging-Level' + lDAPDisplayName = 'msExchMigrationLogLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.51730' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Migration-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchMigrationLogPerFileSizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Migration-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Migration-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51731' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mime-Types' + lDAPDisplayName = 'msExchMimeTypes' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mime-Types' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mime-Types' + OID = '1.2.840.113556.1.4.7000.102.550' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Min-Admin-Version' + lDAPDisplayName = 'msExchMinAdminVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Min-Admin-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Min-Admin-Version' + OID = '1.2.840.113556.1.4.7000.102.50093' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Minimum-Threads' + lDAPDisplayName = 'msExchMinimumThreads' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Minimum-Threads' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Minimum-Threads' + OID = '1.2.840.113556.1.4.7000.102.11043' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Minor-Partner-Id' + lDAPDisplayName = 'msExchMinorPartnerId' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Minor-Partner-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Minor-Partner-Id' + OID = '1.2.840.113556.1.4.7000.102.51749' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Mixed-Mode' + lDAPDisplayName = 'msExchMixedMode' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mixed-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mixed-Mode' + OID = '1.2.840.113556.1.4.7000.102.50022' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MLS-Domain-Gateway-SMTP-Address' + lDAPDisplayName = 'msExchMLSDomainGatewaySMTPAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Domain-Gateway-SMTP-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MLS-Domain-Gateway-SMTP-Address' + OID = '1.2.840.113556.1.4.7000.102.50737' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Decryption-P12-Current' + lDAPDisplayName = 'msExchMLSEncryptedDecryptionP12Current' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Decryption-P12-Current' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MLS-Encrypted-Decryption-P12-Current' + OID = '1.2.840.113556.1.4.7000.102.50767' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Decryption-P12-Previous' + lDAPDisplayName = 'msExchMLSEncryptedDecryptionP12Previous' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Decryption-P12-Previous' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MLS-Encrypted-Decryption-P12-Previous' + OID = '1.2.840.113556.1.4.7000.102.50748' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Recovery-P12-Current' + lDAPDisplayName = 'msExchMLSEncryptedRecoveryP12Current' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Recovery-P12-Current' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MLS-Encrypted-Recovery-P12-Current' + OID = '1.2.840.113556.1.4.7000.102.50769' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Recovery-P12-Previous' + lDAPDisplayName = 'msExchMLSEncryptedRecoveryP12Previous' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Recovery-P12-Previous' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MLS-Encrypted-Recovery-P12-Previous' + OID = '1.2.840.113556.1.4.7000.102.50750' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Signing-P12-Current' + lDAPDisplayName = 'msExchMLSEncryptedSigningP12Current' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Signing-P12-Current' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MLS-Encrypted-Signing-P12-Current' + OID = '1.2.840.113556.1.4.7000.102.50768' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MLS-Encrypted-Signing-P12-Previous' + lDAPDisplayName = 'msExchMLSEncryptedSigningP12Previous' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MLS-Encrypted-Signing-P12-Previous' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MLS-Encrypted-Signing-P12-Previous' + OID = '1.2.840.113556.1.4.7000.102.50749' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Access-Control' + lDAPDisplayName = 'msExchMobileAccessControl' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Access-Control' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Access-Control' + OID = '1.2.840.113556.1.4.7000.102.51494' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Additional-Flags' + lDAPDisplayName = 'msExchMobileAdditionalFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Additional-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Additional-Flags' + OID = '1.2.840.113556.1.4.7000.102.50883' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Admin-Recipients' + lDAPDisplayName = 'msExchMobileAdminRecipients' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Admin-Recipients' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Admin-Recipients' + OID = '1.2.840.113556.1.4.7000.102.51496' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Allow-Bluetooth' + lDAPDisplayName = 'msExchMobileAllowBluetooth' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Allow-Bluetooth' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Allow-Bluetooth' + OID = '1.2.840.113556.1.4.7000.102.50886' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Allowed-Device-IDs' + lDAPDisplayName = 'msExchMobileAllowedDeviceIDs' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mobile-Allowed-Device-IDs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Allowed-Device-IDs' + OID = '1.2.840.113556.1.4.7000.102.50666' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Allow-SMIME-Encryption-Algorithm-Negotiation' + lDAPDisplayName = 'msExchMobileAllowSMIMEEncryptionAlgorithmNegotiation' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Allow-SMIME-Encryption-Algorithm-Negotiation' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Allow-SMIME-Encryption-Algorithm-Negotiation' + OID = '1.2.840.113556.1.4.7000.102.50891' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Approved-Application-List' + lDAPDisplayName = 'msExchMobileApprovedApplicationList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Approved-Application-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Approved-Application-List' + OID = '1.2.840.113556.1.4.7000.102.50893' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Blocked-Device-IDs' + lDAPDisplayName = 'msExchMobileBlockedDeviceIDs' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mobile-Blocked-Device-IDs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Blocked-Device-IDs' + OID = '1.2.840.113556.1.4.7000.102.51519' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Client-Certificate-Authority-URL' + lDAPDisplayName = 'msExchMobileClientCertificateAuthorityURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Client-Certificate-Authority-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Client-Certificate-Authority-URL' + OID = '1.2.840.113556.1.4.7000.102.50651' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Client-Cert-Template-Name' + lDAPDisplayName = 'msExchMobileClientCertTemplateName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Client-Cert-Template-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Client-Cert-Template-Name' + OID = '1.2.840.113556.1.4.7000.102.50652' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Client-Flags' + lDAPDisplayName = 'msExchMobileClientFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Client-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Client-Flags' + OID = '1.2.840.113556.1.4.7000.102.50650' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Debug-Logging' + lDAPDisplayName = 'msExchMobileDebugLogging' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mobile-Debug-Logging' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Debug-Logging' + OID = '1.2.840.113556.1.4.7000.102.50667' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Default-Email-Truncation-Size' + lDAPDisplayName = 'msExchMobileDefaultEmailTruncationSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Default-Email-Truncation-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Default-Email-Truncation-Size' + OID = '1.2.840.113556.1.4.7000.102.50660' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Device-Number-Of-Previous-Passwords-Disallowed' + lDAPDisplayName = 'msExchMobileDeviceNumberOfPreviousPasswordsDisallowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Device-Number-Of-Previous-Passwords-Disallowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Device-Number-Of-Previous-Passwords-Disallowed' + OID = '1.2.840.113556.1.4.7000.102.50794' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Device-Password-Expiration' + lDAPDisplayName = 'msExchMobileDevicePasswordExpiration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Device-Password-Expiration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Device-Password-Expiration' + OID = '1.2.840.113556.1.4.7000.102.50795' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Device-Policy-Refresh-Interval' + lDAPDisplayName = 'msExchMobileDevicePolicyRefreshInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Device-Policy-Refresh-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Device-Policy-Refresh-Interval' + OID = '1.2.840.113556.1.4.7000.102.50653' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Flags' + lDAPDisplayName = 'msExchMobileFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Flags' + OID = '1.2.840.113556.1.4.7000.102.50654' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Initial-Max-Attachment-Size' + lDAPDisplayName = 'msExchMobileInitialMaxAttachmentSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Initial-Max-Attachment-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Initial-Max-Attachment-Size' + OID = '1.2.840.113556.1.4.7000.102.50661' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Mailbox-Flags' + lDAPDisplayName = 'msExchMobileMailboxFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mobile-Mailbox-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Mailbox-Flags' + OID = '1.2.840.113556.1.4.7000.102.50858' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mobile-Mailbox-Policy-BL' + lDAPDisplayName = 'msExchMobileMailboxPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Mailbox-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Mailbox-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.50726' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mobile-Mailbox-Policy-Link' + lDAPDisplayName = 'msExchMobileMailboxPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Mobile-Mailbox-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Mailbox-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.50668' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Calendar-Age-Filter' + lDAPDisplayName = 'msExchMobileMaxCalendarAgeFilter' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Calendar-Age-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Calendar-Age-Filter' + OID = '1.2.840.113556.1.4.7000.102.50887' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Calendar-Days' + lDAPDisplayName = 'msExchMobileMaxCalendarDays' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Calendar-Days' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Calendar-Days' + OID = '1.2.840.113556.1.4.7000.102.50662' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Device-Password-Failed-Attempts' + lDAPDisplayName = 'msExchMobileMaxDevicePasswordFailedAttempts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Device-Password-Failed-Attempts' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Device-Password-Failed-Attempts' + OID = '1.2.840.113556.1.4.7000.102.50657' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Email-Age-Filter' + lDAPDisplayName = 'msExchMobileMaxEmailAgeFilter' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Email-Age-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Email-Age-Filter' + OID = '1.2.840.113556.1.4.7000.102.50888' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Email-Body-Truncation-Size' + lDAPDisplayName = 'msExchMobileMaxEmailBodyTruncationSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Email-Body-Truncation-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Email-Body-Truncation-Size' + OID = '1.2.840.113556.1.4.7000.102.50884' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Email-Days' + lDAPDisplayName = 'msExchMobileMaxEmailDays' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Email-Days' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Email-Days' + OID = '1.2.840.113556.1.4.7000.102.50659' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Email-HTML-Body-Truncation-Size' + lDAPDisplayName = 'msExchMobileMaxEmailHTMLBodyTruncationSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Email-HTML-Body-Truncation-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Email-HTML-Body-Truncation-Size' + OID = '1.2.840.113556.1.4.7000.102.50885' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Max-Inactivity-Time-Device-Lock' + lDAPDisplayName = 'msExchMobileMaxInactivityTimeDeviceLock' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Max-Inactivity-Time-Device-Lock' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Max-Inactivity-Time-Device-Lock' + OID = '1.2.840.113556.1.4.7000.102.50656' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Min-Device-Password-Complex-Characters' + lDAPDisplayName = 'msExchMobileMinDevicePasswordComplexCharacters' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Min-Device-Password-Complex-Characters' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Min-Device-Password-Complex-Characters' + OID = '1.2.840.113556.1.4.7000.102.50895' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Min-Device-Password-Length' + lDAPDisplayName = 'msExchMobileMinDevicePasswordLength' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Min-Device-Password-Length' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Min-Device-Password-Length' + OID = '1.2.840.113556.1.4.7000.102.50655' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert' + lDAPDisplayName = 'msExchMobileOTANotificationMailInsert' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert' + OID = '1.2.840.113556.1.4.7000.102.51720' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert-2' + lDAPDisplayName = 'msExchMobileOTANotificationMailInsert2' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-OTA-Notification-Mail-Insert-2' + OID = '1.2.840.113556.1.4.7000.102.51748' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-OTA-Update-Mode' + lDAPDisplayName = 'msExchMobileOTAUpdateMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-OTA-Update-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-OTA-Update-Mode' + OID = '1.2.840.113556.1.4.7000.102.51332' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Outbound-Charset' + lDAPDisplayName = 'msExchMobileOutboundCharset' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Outbound-Charset' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Outbound-Charset' + OID = '1.2.840.113556.1.4.7000.102.50793' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Mobile-Policy-Salt' + lDAPDisplayName = 'msExchMobilePolicySalt' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Policy-Salt' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Policy-Salt' + OID = '1.2.840.113556.1.4.7000.102.50867' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers' + lDAPDisplayName = 'msExchMobileRemoteDocumentsAllowedServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers' + OID = '1.2.840.113556.1.4.7000.102.50790' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers-BL' + lDAPDisplayName = 'msExchMobileRemoteDocumentsAllowedServersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Allowed-Servers-BL' + OID = '1.2.840.113556.1.4.7000.102.51483' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers' + lDAPDisplayName = 'msExchMobileRemoteDocumentsBlockedServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers' + OID = '1.2.840.113556.1.4.7000.102.50791' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers-BL' + lDAPDisplayName = 'msExchMobileRemoteDocumentsBlockedServersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Blocked-Servers-BL' + OID = '1.2.840.113556.1.4.7000.102.51466' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List' + lDAPDisplayName = 'msExchMobileRemoteDocumentsInternalDomainSuffixList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List' + OID = '1.2.840.113556.1.4.7000.102.50792' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List-BL' + lDAPDisplayName = 'msExchMobileRemoteDocumentsInternalDomainSuffixListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Remote-Documents-Internal-Domain-Suffix-List-BL' + OID = '1.2.840.113556.1.4.7000.102.51475' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Require-Encryption-SMIME-Algorithm' + lDAPDisplayName = 'msExchMobileRequireEncryptionSMIMEAlgorithm' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Require-Encryption-SMIME-Algorithm' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Require-Encryption-SMIME-Algorithm' + OID = '1.2.840.113556.1.4.7000.102.50890' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Require-Signed-SMIME-Algorithm' + lDAPDisplayName = 'msExchMobileRequireSignedSMIMEAlgorithm' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Require-Signed-SMIME-Algorithm' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Require-Signed-SMIME-Algorithm' + OID = '1.2.840.113556.1.4.7000.102.50889' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Mobile-Settings' + lDAPDisplayName = 'msExchMobileSettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-Settings' + OID = '1.2.840.113556.1.4.7000.102.51489' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-Unapproved-In-ROM-Application-List' + lDAPDisplayName = 'msExchMobileUnapprovedInROMApplicationList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-Unapproved-In-ROM-Application-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Mobile-Unapproved-In-ROM-Application-List' + OID = '1.2.840.113556.1.4.7000.102.50892' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Mobile-User-Mail-Insert' + lDAPDisplayName = 'msExchMobileUserMailInsert' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Mobile-User-Mail-Insert' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Mobile-User-Mail-Insert' + OID = '1.2.840.113556.1.4.7000.102.51495' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Moderated-By-Link' + lDAPDisplayName = 'msExchModeratedByLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Moderated-By-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Moderated-By-Link' + OID = '1.2.840.113556.1.4.7000.102.50952' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Moderated-Objects-BL' + lDAPDisplayName = 'msExchModeratedObjectsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Moderated-Objects-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Moderated-Objects-BL' + OID = '1.2.840.113556.1.4.7000.102.50955' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Moderation-Flags' + lDAPDisplayName = 'msExchModerationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Moderation-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Moderation-Flags' + OID = '1.2.840.113556.1.4.7000.102.50972' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitoring-Disk-Space' + lDAPDisplayName = 'msExchMonitoringDiskSpace' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Disk-Space' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Disk-Space' + OID = '1.2.840.113556.1.4.7000.102.50046' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Mode' + lDAPDisplayName = 'msExchMonitoringMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Mode' + OID = '1.2.840.113556.1.4.7000.102.50060' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitoring-Monitored-Services' + lDAPDisplayName = 'msExchMonitoringMonitoredServices' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Monitored-Services' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Monitored-Services' + OID = '1.2.840.113556.1.4.7000.102.50045' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Notification-Rate' + lDAPDisplayName = 'msExchMonitoringNotificationRate' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Notification-Rate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Notification-Rate' + OID = '1.2.840.113556.1.4.7000.102.50057' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Monitoring-Override-Apply-Version' + lDAPDisplayName = 'msExchMonitoringOverrideApplyVersion' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Override-Apply-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Override-Apply-Version' + OID = '1.2.840.113556.1.4.7000.102.52108' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitoring-Polling-Rate' + lDAPDisplayName = 'msExchMonitoringPollingRate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Polling-Rate' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Polling-Rate' + OID = '1.2.840.113556.1.4.7000.102.50058' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Queue-Polling-Frequency' + lDAPDisplayName = 'msExchMonitoringQueuePollingFrequency' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Queue-Polling-Frequency' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Queue-Polling-Frequency' + OID = '1.2.840.113556.1.4.7000.102.50038' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Monitoring-Queue-Polling-Interval' + lDAPDisplayName = 'msExchMonitoringQueuePollingInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Queue-Polling-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Monitoring-Queue-Polling-Interval' + OID = '1.2.840.113556.1.4.7000.102.50037' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitoring-Resources' + lDAPDisplayName = 'msExchMonitoringResources' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Resources' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Resources' + OID = '1.2.840.113556.1.4.7000.102.50059' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Monitoring-Responses' + lDAPDisplayName = 'msExchMonitoringResponses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Monitoring-Responses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Monitoring-Responses' + OID = '1.2.840.113556.1.4.7000.102.50047' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Move-To-LSA' + lDAPDisplayName = 'msExchMoveToLSA' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Move-To-LSA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Move-To-LSA' + OID = '1.2.840.113556.1.4.7000.102.88' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MRS-Proxy-Flags' + lDAPDisplayName = 'msExchMRSProxyFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MRS-Proxy-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MRS-Proxy-Flags' + OID = '1.2.840.113556.1.4.7000.102.51851' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MRS-Proxy-Max-Connections' + lDAPDisplayName = 'msExchMRSProxyMaxConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MRS-Proxy-Max-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MRS-Proxy-Max-Connections' + OID = '1.2.840.113556.1.4.7000.102.51852' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MRS-Request-Type' + lDAPDisplayName = 'msExchMRSRequestType' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-MRS-Request-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MRS-Request-Type' + OID = '1.2.840.113556.1.4.7000.102.51648' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MSM-Cert-Policy-Oid' + lDAPDisplayName = 'msExchMSMCertPolicyOid' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSM-Cert-Policy-Oid' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MSM-Cert-Policy-Oid' + OID = '1.2.840.113556.1.4.7000.102.50770' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Async-Operation-Ids' + lDAPDisplayName = 'msExchMSOForwardSyncAsyncOperationIds' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Async-Operation-Ids' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MSO-Forward-Sync-Async-Operation-Ids' + OID = '1.2.840.113556.1.4.7000.102.51736' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Cookie-Property-Set-Version' + lDAPDisplayName = 'msExchMSOForwardSyncCookiePropertySetVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Cookie-Property-Set-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MSO-Forward-Sync-Cookie-Property-Set-Version' + OID = '1.2.840.113556.1.4.7000.102.52115' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Cookie-Timestamp' + lDAPDisplayName = 'msExchMSOForwardSyncCookieTimestamp' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Cookie-Timestamp' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MSO-Forward-Sync-Cookie-Timestamp' + OID = '1.2.840.113556.1.4.7000.102.52114' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Divergence-Count' + lDAPDisplayName = 'msExchMSOForwardSyncDivergenceCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Divergence-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MSO-Forward-Sync-Divergence-Count' + OID = '1.2.840.113556.1.4.7000.102.51801' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Divergence-Related-Object-Link' + lDAPDisplayName = 'msExchMSOForwardSyncDivergenceRelatedObjectLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Divergence-Related-Object-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MSO-Forward-Sync-Divergence-Related-Object-Link' + OID = '1.2.840.113556.1.4.7000.102.51799' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Divergence-Timestamp' + lDAPDisplayName = 'msExchMSOForwardSyncDivergenceTimestamp' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Divergence-Timestamp' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MSO-Forward-Sync-Divergence-Timestamp' + OID = '1.2.840.113556.1.4.7000.102.51800' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Non-Recipient-Cookie' + lDAPDisplayName = 'msExchMSOForwardSyncNonRecipientCookie' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Non-Recipient-Cookie' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MSO-Forward-Sync-Non-Recipient-Cookie' + OID = '1.2.840.113556.1.4.7000.102.51607' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Recipient-Cookie' + lDAPDisplayName = 'msExchMSOForwardSyncRecipientCookie' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Recipient-Cookie' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MSO-Forward-Sync-Recipient-Cookie' + OID = '1.2.840.113556.1.4.7000.102.51606' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MSO-Forward-Sync-Replay-List' + lDAPDisplayName = 'msExchMSOForwardSyncReplayList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MSO-Forward-Sync-Replay-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-MSO-Forward-Sync-Replay-List' + OID = '1.2.840.113556.1.4.7000.102.51764' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-MTA-Database-Path' + lDAPDisplayName = 'msExchMTADatabasePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MTA-Database-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MTA-Database-Path' + OID = '1.2.840.113556.1.4.7000.102.18001' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Multi-Mailbox-Databases-BL' + lDAPDisplayName = 'msExchMultiMailboxDatabasesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Multi-Mailbox-Databases-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Multi-Mailbox-Databases-BL' + OID = '1.2.840.113556.1.4.7000.102.52149' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Multi-Mailbox-Databases-Link' + lDAPDisplayName = 'msExchMultiMailboxDatabasesLink' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Multi-Mailbox-Databases-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Multi-Mailbox-Databases-Link' + OID = '1.2.840.113556.1.4.7000.102.52148' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Multi-Mailbox-GUIDs' + lDAPDisplayName = 'msExchMultiMailboxGUIDs' + oMSyntax = 64 + Optional = $True + searchFlags = 25 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Multi-Mailbox-GUIDs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Multi-Mailbox-GUIDs' + OID = '1.2.840.113556.1.4.7000.102.52145' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Multi-Mailbox-Locations-BL' + lDAPDisplayName = 'msExchMultiMailboxLocationsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Multi-Mailbox-Locations-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Multi-Mailbox-Locations-BL' + OID = '1.2.840.113556.1.4.7000.102.52150' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Multi-Mailbox-Locations-Link' + lDAPDisplayName = 'msExchMultiMailboxLocationsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 25 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Multi-Mailbox-Locations-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Multi-Mailbox-Locations-Link' + OID = '1.2.840.113556.1.4.7000.102.52144' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Non-Authoritative-Domains' + lDAPDisplayName = 'msExchNonAuthoritativeDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Non-Authoritative-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Non-Authoritative-Domains' + OID = '1.2.840.113556.1.4.7000.102.50084' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Non-MIME-Character-Set' + lDAPDisplayName = 'msExchNonMIMECharacterSet' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Non-MIME-Character-Set' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Non-MIME-Character-Set' + OID = '1.2.840.113556.1.4.7000.102.50043' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-No-PF-Connection' + lDAPDisplayName = 'msExchNoPFConnection' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-No-PF-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-No-PF-Connection' + OID = '1.2.840.113556.1.4.7000.102.11067' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Connector-Mailbox' + lDAPDisplayName = 'msExchNotesConnectorMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Connector-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Connector-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.1014' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Exclude-Groups' + lDAPDisplayName = 'msExchNotesExcludeGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Exclude-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Notes-Exclude-Groups' + OID = '1.2.840.113556.1.4.7000.102.1022' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Notes-Export-Groups' + lDAPDisplayName = 'msExchNotesExportGroups' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Export-Groups' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Export-Groups' + OID = '1.2.840.113556.1.4.7000.102.1021' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Foreign-Domain' + lDAPDisplayName = 'msExchNotesForeignDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Foreign-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Foreign-Domain' + OID = '1.2.840.113556.1.4.7000.102.1012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Letterhead' + lDAPDisplayName = 'msExchNotesLetterhead' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Letterhead' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Letterhead' + OID = '1.2.840.113556.1.4.7000.102.1015' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Notes-INI' + lDAPDisplayName = 'msExchNotesNotesINI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Notes-INI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Notes-INI' + OID = '1.2.840.113556.1.4.7000.102.1017' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Notes-Links' + lDAPDisplayName = 'msExchNotesNotesLinks' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Notes-Links' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Notes-Links' + OID = '1.2.840.113556.1.4.7000.102.1016' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Notes-Server' + lDAPDisplayName = 'msExchNotesNotesServer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Notes-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Notes-Server' + OID = '1.2.840.113556.1.4.7000.102.1011' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Notes-Password' + lDAPDisplayName = 'msExchNotesPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Password' + OID = '1.2.840.113556.1.4.7000.102.1010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Routable-Domains' + lDAPDisplayName = 'msExchNotesRoutableDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Routable-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Notes-Routable-Domains' + OID = '1.2.840.113556.1.4.7000.102.1023' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Rtr-Mailbox' + lDAPDisplayName = 'msExchNotesRtrMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Rtr-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Rtr-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.1013' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Source-Books' + lDAPDisplayName = 'msExchNotesSourceBooks' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Source-Books' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Notes-Source-Books' + OID = '1.2.840.113556.1.4.7000.102.1020' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Target-Book' + lDAPDisplayName = 'msExchNotesTargetBook' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Target-Book' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notes-Target-Book' + OID = '1.2.840.113556.1.4.7000.102.1018' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notes-Target-Books' + lDAPDisplayName = 'msExchNotesTargetBooks' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notes-Target-Books' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Notes-Target-Books' + OID = '1.2.840.113556.1.4.7000.102.1019' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Notification-Address' + lDAPDisplayName = 'msExchNotificationAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notification-Address' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Notification-Address' + OID = '1.2.840.113556.1.4.7000.102.51647' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Notification-Enabled' + lDAPDisplayName = 'msExchNotificationEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Notification-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Notification-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51646' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-NT-Account-Options' + lDAPDisplayName = 'msExchNTAccountOptions' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-NT-Account-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-NT-Account-Options' + OID = '1.2.840.113556.1.4.7000.102.44' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-NT-Authentication-Providers' + lDAPDisplayName = 'msExchNTAuthenticationProviders' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-NT-Authentication-Providers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-NT-Authentication-Providers' + OID = '1.2.840.113556.1.4.7000.102.2009' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Ntds-Export-Containers' + lDAPDisplayName = 'msExchNtdsExportContainers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Ntds-Export-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Ntds-Export-Containers' + OID = '1.2.840.113556.1.4.7000.102.33' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Ntds-Import-Container' + lDAPDisplayName = 'msExchNtdsImportContainer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Ntds-Import-Container' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Ntds-Import-Container' + OID = '1.2.840.113556.1.4.7000.102.34' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-ANR-Properties' + lDAPDisplayName = 'msExchOABANRProperties' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-ANR-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-ANR-Properties' + OID = '1.2.840.113556.1.4.7000.102.51002' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-OAB-Default' + lDAPDisplayName = 'msExchOABDefault' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Default' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Default' + OID = '1.2.840.113556.1.4.7000.102.67' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Details-Properties' + lDAPDisplayName = 'msExchOABDetailsProperties' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Details-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-Details-Properties' + OID = '1.2.840.113556.1.4.7000.102.51003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Flags' + lDAPDisplayName = 'msExchOABFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Flags' + OID = '1.2.840.113556.1.4.7000.102.50510' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-OAB-Folder' + lDAPDisplayName = 'msExchOABFolder' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Folder' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Folder' + OID = '1.2.840.113556.1.4.7000.102.68' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OAB-Generating-Mailbox-BL' + lDAPDisplayName = 'msExchOABGeneratingMailboxBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Generating-Mailbox-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-Generating-Mailbox-BL' + OID = '1.2.840.113556.1.4.7000.102.52133' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OAB-Generating-Mailbox-Link' + lDAPDisplayName = 'msExchOABGeneratingMailboxLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Generating-Mailbox-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Generating-Mailbox-Link' + OID = '1.2.840.113556.1.4.7000.102.52132' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Last-Number-Of-Records' + lDAPDisplayName = 'msExchOABLastNumberOfRecords' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Last-Number-Of-Records' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Last-Number-Of-Records' + OID = '1.2.840.113556.1.4.7000.102.51257' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-OAB-Last-Touched-Time' + lDAPDisplayName = 'msExchOABLastTouchedTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Last-Touched-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Last-Touched-Time' + OID = '1.2.840.113556.1.4.7000.102.51256' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Max-Binary-Size' + lDAPDisplayName = 'msExchOABMaxBinarySize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Max-Binary-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Max-Binary-Size' + OID = '1.2.840.113556.1.4.7000.102.50998' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Max-MV-Binary-Size' + lDAPDisplayName = 'msExchOABMaxMVBinarySize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Max-MV-Binary-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Max-MV-Binary-Size' + OID = '1.2.840.113556.1.4.7000.102.50999' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Max-MV-String-Size' + lDAPDisplayName = 'msExchOABMaxMVStringSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Max-MV-String-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Max-MV-String-Size' + OID = '1.2.840.113556.1.4.7000.102.51001' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Max-String-Size' + lDAPDisplayName = 'msExchOABMaxStringSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Max-String-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Max-String-Size' + OID = '1.2.840.113556.1.4.7000.102.51000' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OAB-Preferred-Site' + lDAPDisplayName = 'msExchOABPreferredSite' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Preferred-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-Preferred-Site' + OID = '1.2.840.113556.1.4.7000.102.51258' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-Truncated-Properties' + lDAPDisplayName = 'msExchOABTruncatedProperties' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Truncated-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-Truncated-Properties' + OID = '1.2.840.113556.1.4.7000.102.51004' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OAB-TTL' + lDAPDisplayName = 'msExchOABTTL' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-TTL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OAB-TTL' + OID = '1.2.840.113556.1.4.7000.102.50872' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OAB-Virtual-Directories-BL' + lDAPDisplayName = 'msExchOABVirtualDirectoriesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Virtual-Directories-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-Virtual-Directories-BL' + OID = '1.2.840.113556.1.4.7000.102.50514' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OAB-Virtual-Directories-Link' + lDAPDisplayName = 'msExchOABVirtualDirectoriesLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OAB-Virtual-Directories-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OAB-Virtual-Directories-Link' + OID = '1.2.840.113556.1.4.7000.102.50513' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Object-Count-Quota' + lDAPDisplayName = 'msExchObjectCountQuota' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Object-Count-Quota' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Object-Count-Quota' + OID = '1.2.840.113556.1.4.7000.102.51559' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Object-ID' + lDAPDisplayName = 'msExchObjectID' + oMSyntax = 4 + Optional = $True + searchFlags = 11 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Object-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Object-ID' + OID = '1.2.840.113556.1.4.7000.102.51569' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Objects-Deleted-This-Period' + lDAPDisplayName = 'msExchObjectsDeletedThisPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Objects-Deleted-This-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Objects-Deleted-This-Period' + OID = '1.2.840.113556.1.4.7000.102.51757' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Off-Line-AB-Server-SL' + lDAPDisplayName = 'msExchOffLineABServerSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Off-Line-AB-Server-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Off-Line-AB-Server-SL' + OID = '1.2.840.113556.1.4.7000.102.51942' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Offline-Address-Book-BL' + lDAPDisplayName = 'msExchOfflineAddressBookBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Offline-Address-Book-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Offline-Address-Book-BL' + OID = '1.2.840.113556.1.4.7000.102.51848' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Offline-Address-Book-Link' + lDAPDisplayName = 'msExchOfflineAddressBookLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Offline-Address-Book-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Offline-Address-Book-Link' + OID = '1.2.840.113556.1.4.7000.102.51847' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Offline-OrgId-Home-Realm-Record' + lDAPDisplayName = 'msExchOfflineOrgIdHomeRealmRecord' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Offline-OrgId-Home-Realm-Record' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Offline-OrgId-Home-Realm-Record' + OID = '1.2.840.113556.1.4.7000.102.52127' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Admin-Extended-Settings' + lDAPDisplayName = 'msExchOmaAdminExtendedSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Oma-Admin-Extended-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Admin-Extended-Settings' + OID = '1.2.840.113556.1.6.20.1.126' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Oma-Admin-Wireless-Enable' + lDAPDisplayName = 'msExchOmaAdminWirelessEnable' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Oma-Admin-Wireless-Enable' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Admin-Wireless-Enable' + OID = '1.2.840.113556.1.6.20.1.124' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Carrier-Address' + lDAPDisplayName = 'msExchOmaCarrierAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Carrier-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Carrier-Address' + OID = '1.2.840.113556.1.6.20.1.139' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Carrier-Type' + lDAPDisplayName = 'msExchOmaCarrierType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Carrier-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Carrier-Type' + OID = '1.2.840.113556.1.6.20.1.145' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Carrier-Url' + lDAPDisplayName = 'msExchOmaCarrierUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Carrier-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Carrier-Url' + OID = '1.2.840.113556.1.6.20.1.146' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Configuration' + lDAPDisplayName = 'msExchOmaConfiguration' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Configuration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Configuration' + OID = '1.2.840.113556.1.6.20.1.137' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Deliverer' + lDAPDisplayName = 'msExchOmaDeliverer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Deliverer' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Deliverer' + OID = '1.2.840.113556.1.6.20.1.144' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Oma-Delivery-Provider-DN' + lDAPDisplayName = 'msExchOmaDeliveryProviderDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Delivery-Provider-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Oma-Delivery-Provider-DN' + OID = '1.2.840.113556.1.6.20.1.138' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Oma-Device-Capability-DN' + lDAPDisplayName = 'msExchOmaDeviceCapabilityDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Device-Capability-DN' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Device-Capability-DN' + OID = '1.2.840.113556.1.6.20.1.133' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Extended-Properties' + lDAPDisplayName = 'msExchOmaExtendedProperties' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Extended-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Extended-Properties' + OID = '1.2.840.113556.1.6.20.1.143' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Formatter' + lDAPDisplayName = 'msExchOmaFormatter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Formatter' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Formatter' + OID = '1.2.840.113556.1.6.20.1.135' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Translator' + lDAPDisplayName = 'msExchOmaTranslator' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Translator' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Translator' + OID = '1.2.840.113556.1.6.20.1.136' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Oma-Validater' + lDAPDisplayName = 'msExchOmaValidater' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Oma-Validater' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Oma-Validater' + OID = '1.2.840.113556.1.6.20.1.134' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-On-Premise-Object-Guid' + lDAPDisplayName = 'msExchOnPremiseObjectGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-On-Premise-Object-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-On-Premise-Object-Guid' + OID = '1.2.840.113556.1.4.7000.102.51717' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-On-Premises-Inbound-Connector-BL' + lDAPDisplayName = 'msExchOnPremisesInboundConnectorBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-On-Premises-Inbound-Connector-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-On-Premises-Inbound-Connector-BL' + OID = '1.2.840.113556.1.4.7000.102.52080' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-On-Premises-Inbound-Connector-Link' + lDAPDisplayName = 'msExchOnPremisesInboundConnectorLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-On-Premises-Inbound-Connector-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-On-Premises-Inbound-Connector-Link' + OID = '1.2.840.113556.1.4.7000.102.52079' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-On-Premises-Organization-Guid' + lDAPDisplayName = 'msExchOnPremisesOrganizationGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-On-Premises-Organization-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-On-Premises-Organization-Guid' + OID = '1.2.840.113556.1.4.7000.102.52077' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-On-Premises-Outbound-Connector-BL' + lDAPDisplayName = 'msExchOnPremisesOutboundConnectorBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-On-Premises-Outbound-Connector-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-On-Premises-Outbound-Connector-BL' + OID = '1.2.840.113556.1.4.7000.102.52082' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-On-Premises-Outbound-Connector-Link' + lDAPDisplayName = 'msExchOnPremisesOutboundConnectorLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-On-Premises-Outbound-Connector-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-On-Premises-Outbound-Connector-Link' + OID = '1.2.840.113556.1.4.7000.102.52081' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Flags' + lDAPDisplayName = 'msExchOrganizationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Flags' + OID = '1.2.840.113556.1.4.7000.102.51374' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Flags-2' + lDAPDisplayName = 'msExchOrganizationFlags2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Flags-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Flags-2' + OID = '1.2.840.113556.1.4.7000.102.51995' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Address-Book-Roots-BL' + lDAPDisplayName = 'msExchOrganizationsAddressBookRootsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Address-Book-Roots-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Address-Book-Roots-BL' + OID = '1.2.840.113556.1.4.7000.102.51472' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Address-Book-Roots-Link' + lDAPDisplayName = 'msExchOrganizationsAddressBookRootsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Address-Book-Roots-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Address-Book-Roots-Link' + OID = '1.2.840.113556.1.4.7000.102.51006' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Global-Address-Lists-BL' + lDAPDisplayName = 'msExchOrganizationsGlobalAddressListsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Global-Address-Lists-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Global-Address-Lists-BL' + OID = '1.2.840.113556.1.4.7000.102.51478' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Global-Address-Lists-Link' + lDAPDisplayName = 'msExchOrganizationsGlobalAddressListsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Global-Address-Lists-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Global-Address-Lists-Link' + OID = '1.2.840.113556.1.4.7000.102.51005' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Template-Roots-BL' + lDAPDisplayName = 'msExchOrganizationsTemplateRootsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Template-Roots-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Template-Roots-BL' + OID = '1.2.840.113556.1.4.7000.102.51467' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organizations-Template-Roots-Link' + lDAPDisplayName = 'msExchOrganizationsTemplateRootsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organizations-Template-Roots-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organizations-Template-Roots-Link' + OID = '1.2.840.113556.1.4.7000.102.51007' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Organization-Summary' + lDAPDisplayName = 'msExchOrganizationSummary' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Summary' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organization-Summary' + OID = '1.2.840.113556.1.4.7000.102.51023' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-BL' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.51821' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Date' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyDate' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Date' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Date' + OID = '1.2.840.113556.1.4.7000.102.51814' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Enabled' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51813' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Link' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51820' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Link-SL' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51937' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-MaxMailboxes' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyMaxMailboxes' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-MaxMailboxes' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-MaxMailboxes' + OID = '1.2.840.113556.1.4.7000.102.51815' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Priority' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyPriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Priority' + OID = '1.2.840.113556.1.4.7000.102.51816' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Source-Version' + lDAPDisplayName = 'msExchOrganizationUpgradePolicySourceVersion' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Source-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Source-Version' + OID = '1.2.840.113556.1.4.7000.102.51818' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Status' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Status' + OID = '1.2.840.113556.1.4.7000.102.51812' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Policy-Target-Version' + lDAPDisplayName = 'msExchOrganizationUpgradePolicyTargetVersion' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Policy-Target-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Policy-Target-Version' + OID = '1.2.840.113556.1.4.7000.102.51819' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Request' + lDAPDisplayName = 'msExchOrganizationUpgradeRequest' + oMSyntax = 2 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Request' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Request' + OID = '1.2.840.113556.1.4.7000.102.52096' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Organization-Upgrade-Status' + lDAPDisplayName = 'msExchOrganizationUpgradeStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Organization-Upgrade-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Organization-Upgrade-Status' + OID = '1.2.840.113556.1.4.7000.102.52097' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Org-Federated-Mailbox' + lDAPDisplayName = 'msExchOrgFederatedMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Org-Federated-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Org-Federated-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.51445' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Originating-Forest' + lDAPDisplayName = 'msExchOriginatingForest' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Originating-Forest' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Originating-Forest' + OID = '1.2.840.113556.1.4.7000.102.50300' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Orig-MDB' + lDAPDisplayName = 'msExchOrigMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Orig-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Orig-MDB' + OID = '1.2.840.113556.1.4.7000.102.11093' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Other-Authentication-Flags' + lDAPDisplayName = 'msExchOtherAuthenticationFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Other-Authentication-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Other-Authentication-Flags' + OID = '1.2.840.113556.1.4.7000.102.2017' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OU-Root' + lDAPDisplayName = 'msExchOURoot' + oMSyntax = 127 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-OU-Root' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OU-Root' + OID = '1.2.840.113556.1.4.7000.102.50921' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Overall-Age-Limit' + lDAPDisplayName = 'msExchOverallAgeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Overall-Age-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Overall-Age-Limit' + OID = '1.2.840.113556.1.4.7000.102.11055' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Action-For-Unknown-File-And-MIME-Types' + lDAPDisplayName = 'msExchOWAActionForUnknownFileAndMIMETypes' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Action-For-Unknown-File-And-MIME-Types' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Action-For-Unknown-File-And-MIME-Types' + OID = '1.2.840.113556.1.4.7000.102.50700' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Allowed-File-Types' + lDAPDisplayName = 'msExchOWAAllowedFileTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Allowed-File-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Allowed-File-Types' + OID = '1.2.840.113556.1.4.7000.102.50713' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Allowed-File-Types-BL' + lDAPDisplayName = 'msExchOWAAllowedFileTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Allowed-File-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Allowed-File-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51468' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Allowed-Mime-Types' + lDAPDisplayName = 'msExchOWAAllowedMimeTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Allowed-Mime-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Allowed-Mime-Types' + OID = '1.2.840.113556.1.4.7000.102.50714' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Allowed-Mime-Types-BL' + lDAPDisplayName = 'msExchOWAAllowedMimeTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Allowed-Mime-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Allowed-Mime-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51473' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Blocked-File-Types' + lDAPDisplayName = 'msExchOWABlockedFileTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Blocked-File-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Blocked-File-Types' + OID = '1.2.840.113556.1.4.7000.102.50717' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Blocked-File-Types-BL' + lDAPDisplayName = 'msExchOWABlockedFileTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Blocked-File-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Blocked-File-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51470' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Blocked-MIME-Types' + lDAPDisplayName = 'msExchOWABlockedMIMETypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Blocked-MIME-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Blocked-MIME-Types' + OID = '1.2.840.113556.1.4.7000.102.50718' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Blocked-MIME-Types-BL' + lDAPDisplayName = 'msExchOWABlockedMIMETypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Blocked-MIME-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Blocked-MIME-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51474' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Client-Auth-Cleanup-Level' + lDAPDisplayName = 'msExchOWAClientAuthCleanupLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Client-Auth-Cleanup-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Client-Auth-Cleanup-Level' + OID = '1.2.840.113556.1.4.7000.102.50702' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Default-Client-Language' + lDAPDisplayName = 'msExchOWADefaultClientLanguage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Default-Client-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Default-Client-Language' + OID = '1.2.840.113556.1.4.7000.102.50708' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Default-Theme' + lDAPDisplayName = 'msExchOWADefaultTheme' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Default-Theme' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Default-Theme' + OID = '1.2.840.113556.1.4.7000.102.50710' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Exchweb-Proxy-Destination' + lDAPDisplayName = 'msExchOWAExchwebProxyDestination' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Exchweb-Proxy-Destination' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Exchweb-Proxy-Destination' + OID = '1.2.840.113556.1.4.7000.102.50695' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Failback-URL' + lDAPDisplayName = 'msExchOWAFailbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Failback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Failback-URL' + OID = '1.2.840.113556.1.4.7000.102.51759' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-OWA-Feedback-Enabled' + lDAPDisplayName = 'msExchOWAFeedbackEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Feedback-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Feedback-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51028' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Feedback-URL' + lDAPDisplayName = 'msExchOWAFeedbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Feedback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Feedback-URL' + OID = '1.2.840.113556.1.4.7000.102.50988' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-File-Access-Control-On-Private-Computers' + lDAPDisplayName = 'msExchOWAFileAccessControlOnPrivateComputers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-File-Access-Control-On-Private-Computers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-File-Access-Control-On-Private-Computers' + OID = '1.2.840.113556.1.4.7000.102.50698' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-File-Access-Control-On-Public-Computers' + lDAPDisplayName = 'msExchOWAFileAccessControlOnPublicComputers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-File-Access-Control-On-Public-Computers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-File-Access-Control-On-Public-Computers' + OID = '1.2.840.113556.1.4.7000.102.50697' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Filter-Web-Beacons' + lDAPDisplayName = 'msExchOWAFilterWebBeacons' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Filter-Web-Beacons' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Filter-Web-Beacons' + OID = '1.2.840.113556.1.4.7000.102.50704' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Force-Save-File-Types' + lDAPDisplayName = 'msExchOWAForceSaveFileTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Force-Save-File-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Force-Save-File-Types' + OID = '1.2.840.113556.1.4.7000.102.50715' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Force-Save-File-Types-BL' + lDAPDisplayName = 'msExchOWAForceSaveFileTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Force-Save-File-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Force-Save-File-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51479' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Force-Save-MIME-Types' + lDAPDisplayName = 'msExchOWAForceSaveMIMETypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Force-Save-MIME-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Force-Save-MIME-Types' + OID = '1.2.840.113556.1.4.7000.102.50716' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Force-Save-MIME-Types-BL' + lDAPDisplayName = 'msExchOWAForceSaveMIMETypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Force-Save-MIME-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Force-Save-MIME-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51463' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Gzip-Level' + lDAPDisplayName = 'msExchOWAGzipLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Gzip-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Gzip-Level' + OID = '1.2.840.113556.1.4.7000.102.50703' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Help-URL' + lDAPDisplayName = 'msExchOWAHelpURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Help-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Help-URL' + OID = '1.2.840.113556.1.4.7000.102.50987' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-IM-Certificate-Thumbprint' + lDAPDisplayName = 'msExchOWAIMCertificateThumbprint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-IM-Certificate-Thumbprint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-IM-Certificate-Thumbprint' + OID = '1.2.840.113556.1.4.7000.102.51578' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-IM-Provider-Type' + lDAPDisplayName = 'msExchOWAIMProviderType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-IM-Provider-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-IM-Provider-Type' + OID = '1.2.840.113556.1.4.7000.102.51252' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-IM-Server-Name' + lDAPDisplayName = 'msExchOWAIMServerName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-IM-Server-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-IM-Server-Name' + OID = '1.2.840.113556.1.4.7000.102.51579' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-OWA-Light-Feedback-Enabled' + lDAPDisplayName = 'msExchOWALightFeedbackEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Light-Feedback-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Light-Feedback-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51057' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Light-Feedback-URL' + lDAPDisplayName = 'msExchOWALightFeedbackURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Light-Feedback-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Light-Feedback-URL' + OID = '1.2.840.113556.1.4.7000.102.51058' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Light-Help-URL' + lDAPDisplayName = 'msExchOWALightHelpURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Light-Help-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Light-Help-URL' + OID = '1.2.840.113556.1.4.7000.102.51056' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Logon-And-Error-Language' + lDAPDisplayName = 'msExchOWALogonAndErrorLanguage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Logon-And-Error-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Logon-And-Error-Language' + OID = '1.2.840.113556.1.4.7000.102.50709' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Logon-Format' + lDAPDisplayName = 'msExchOWALogonFormat' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Logon-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Logon-Format' + OID = '1.2.840.113556.1.4.7000.102.50701' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Max-Transcodable-Doc-Size' + lDAPDisplayName = 'msExchOWAMaxTranscodableDocSize' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Max-Transcodable-Doc-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Max-Transcodable-Doc-Size' + OID = '1.2.840.113556.1.4.7000.102.50711' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Notification-Interval' + lDAPDisplayName = 'msExchOWANotificationInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Notification-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Notification-Interval' + OID = '1.2.840.113556.1.4.7000.102.50705' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Outbound-Charset' + lDAPDisplayName = 'msExchOWAOutboundCharset' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Outbound-Charset' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Outbound-Charset' + OID = '1.2.840.113556.1.4.7000.102.50723' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Policy' + lDAPDisplayName = 'msExchOWAPolicy' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-OWA-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Policy' + OID = '1.2.840.113556.1.4.7000.102.50993' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Redirect-To-Optimal-OWA-Server' + lDAPDisplayName = 'msExchOWARedirectToOptimalOWAServer' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Redirect-To-Optimal-OWA-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Redirect-To-Optimal-OWA-Server' + OID = '1.2.840.113556.1.4.7000.102.50706' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Action-For-Unknown-Servers' + lDAPDisplayName = 'msExchOWARemoteDocumentsActionForUnknownServers' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Action-For-Unknown-Servers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Remote-Documents-Action-For-Unknown-Servers' + OID = '1.2.840.113556.1.4.7000.102.50699' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers' + lDAPDisplayName = 'msExchOWARemoteDocumentsAllowedServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers' + OID = '1.2.840.113556.1.4.7000.102.50719' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers-BL' + lDAPDisplayName = 'msExchOWARemoteDocumentsAllowedServersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Allowed-Servers-BL' + OID = '1.2.840.113556.1.4.7000.102.51481' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers' + lDAPDisplayName = 'msExchOWARemoteDocumentsBlockedServers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers' + OID = '1.2.840.113556.1.4.7000.102.50720' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers-BL' + lDAPDisplayName = 'msExchOWARemoteDocumentsBlockedServersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Blocked-Servers-BL' + OID = '1.2.840.113556.1.4.7000.102.51464' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List' + lDAPDisplayName = 'msExchOWARemoteDocumentsInternalDomainSuffixList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List' + OID = '1.2.840.113556.1.4.7000.102.50721' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List-BL' + lDAPDisplayName = 'msExchOWARemoteDocumentsInternalDomainSuffixListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Remote-Documents-Internal-Domain-Suffix-List-BL' + OID = '1.2.840.113556.1.4.7000.102.51471' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Set-Photo-URL' + lDAPDisplayName = 'msExchOWASetPhotoURL' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Set-Photo-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Set-Photo-URL' + OID = '1.2.840.113556.1.4.7000.102.51806' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Settings' + lDAPDisplayName = 'msExchOWASettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Settings' + OID = '1.2.840.113556.1.4.7000.102.51488' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Throttling-Policy-State' + lDAPDisplayName = 'msExchOWAThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51158' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchOWAThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52047' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Transcoding-File-Types' + lDAPDisplayName = 'msExchOWATranscodingFileTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Transcoding-File-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Transcoding-File-Types' + OID = '1.2.840.113556.1.4.7000.102.50712' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Transcoding-File-Types-BL' + lDAPDisplayName = 'msExchOWATranscodingFileTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Transcoding-File-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Transcoding-File-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51447' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Transcoding-Flags' + lDAPDisplayName = 'msExchOWATranscodingFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Transcoding-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Transcoding-Flags' + OID = '1.2.840.113556.1.4.7000.102.50772' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-OWA-Transcoding-Mime-Types' + lDAPDisplayName = 'msExchOWATranscodingMimeTypes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Transcoding-Mime-Types' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Transcoding-Mime-Types' + OID = '1.2.840.113556.1.4.7000.102.50771' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-OWA-Transcoding-Mime-Types-BL' + lDAPDisplayName = 'msExchOWATranscodingMimeTypesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Transcoding-Mime-Types-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-OWA-Transcoding-Mime-Types-BL' + OID = '1.2.840.113556.1.4.7000.102.51477' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Use-GB18030' + lDAPDisplayName = 'msExchOWAUseGB18030' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Use-GB18030' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Use-GB18030' + OID = '1.2.840.113556.1.4.7000.102.50724' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Use-ISO8859-15' + lDAPDisplayName = 'msExchOWAUseISO885915' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Use-ISO8859-15' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Use-ISO8859-15' + OID = '1.2.840.113556.1.4.7000.102.50725' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-User-Context-Timeout' + lDAPDisplayName = 'msExchOWAUserContextTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-User-Context-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-User-Context-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50707' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Version' + lDAPDisplayName = 'msExchOWAVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Version' + OID = '1.2.840.113556.1.4.7000.102.50694' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-OWA-Virtual-Directory-Type' + lDAPDisplayName = 'msExchOWAVirtualDirectoryType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Virtual-Directory-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Virtual-Directory-Type' + OID = '1.2.840.113556.1.4.7000.102.50696' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Owning-Org' + lDAPDisplayName = 'msExchOwningOrg' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Owning-Org' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Owning-Org' + OID = '1.2.840.113556.1.4.7000.102.11030' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Owning-PF-Tree' + lDAPDisplayName = 'msExchOwningPFTree' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Owning-PF-Tree' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Owning-PF-Tree' + OID = '1.2.840.113556.1.4.7000.102.11031' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Owning-PF-Tree-BL' + lDAPDisplayName = 'msExchOwningPFTreeBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Owning-PF-Tree-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Owning-PF-Tree-BL' + OID = '1.2.840.113556.1.4.7000.102.11032' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Owning-Server' + lDAPDisplayName = 'msExchOwningServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Owning-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Owning-Server' + OID = '1.2.840.113556.1.4.7000.102.11004' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Parent-Plan-BL' + lDAPDisplayName = 'msExchParentPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Parent-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Parent-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.51446' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Parent-Plan-Link' + lDAPDisplayName = 'msExchParentPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Parent-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Parent-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.51142' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Partner-CP' + lDAPDisplayName = 'msExchPartnerCP' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Partner-CP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Partner-CP' + OID = '1.2.840.113556.1.4.7000.102.1007' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Partner-Group-ID' + lDAPDisplayName = 'msExchPartnerGroupID' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Partner-Group-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Partner-Group-ID' + OID = '1.2.840.113556.1.4.7000.102.51644' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Partner-Id' + lDAPDisplayName = 'msExchPartnerId' + oMSyntax = 2 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Partner-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Partner-Id' + OID = '1.2.840.113556.1.4.7000.102.51033' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Partner-Language' + lDAPDisplayName = 'msExchPartnerLanguage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Partner-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Partner-Language' + OID = '1.2.840.113556.1.4.7000.102.1006' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Passive-Instance-Sleep-Interval' + lDAPDisplayName = 'msExchPassiveInstanceSleepInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Passive-Instance-Sleep-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Passive-Instance-Sleep-Interval' + OID = '1.2.840.113556.1.4.7000.102.51661' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Patch-MDB' + lDAPDisplayName = 'msExchPatchMDB' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Patch-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Patch-MDB' + OID = '1.2.840.113556.1.4.7000.102.11086' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Permitted-AuthN' + lDAPDisplayName = 'msExchPermittedAuthN' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Permitted-AuthN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Permitted-AuthN' + OID = '1.2.840.113556.1.4.7000.102.50740' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Pf-Creation' + lDAPDisplayName = 'msExchPfCreation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pf-Creation' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Pf-Creation' + OID = '1.2.840.113556.1.4.7000.102.100' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-PF-Default-Admin-ACL' + lDAPDisplayName = 'msExchPFDefaultAdminACL' + oMSyntax = 66 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PF-Default-Admin-ACL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PF-Default-Admin-ACL' + OID = '1.2.840.113556.1.4.7000.102.50035' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-PF-DS-Container' + lDAPDisplayName = 'msExchPFDSContainer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PF-DS-Container' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PF-DS-Container' + OID = '1.2.840.113556.1.4.7000.102.11034' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Pf-Root-Url' + lDAPDisplayName = 'msExchPfRootUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Pf-Root-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pf-Root-Url' + OID = '1.2.840.113556.1.4.7000.102.50086' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-PF-Tree-Type' + lDAPDisplayName = 'msExchPFTreeType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-PF-Tree-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PF-Tree-Type' + OID = '1.2.840.113556.1.4.7000.102.11035' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Phonetic-Support' + lDAPDisplayName = 'msExchPhoneticSupport' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Phonetic-Support' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Phonetic-Support' + OID = '1.2.840.113556.1.4.7000.102.50857' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Policies-Excluded' + lDAPDisplayName = 'msExchPoliciesExcluded' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Policies-Excluded' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policies-Excluded' + OID = '1.2.840.113556.1.4.7000.102.50051' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Policies-Included' + lDAPDisplayName = 'msExchPoliciesIncluded' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Policies-Included' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policies-Included' + OID = '1.2.840.113556.1.4.7000.102.50050' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Policy-Default' + lDAPDisplayName = 'msExchPolicyDefault' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Default' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-Default' + OID = '1.2.840.113556.1.4.7000.102.50007' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Policy-Enabled' + lDAPDisplayName = 'msExchPolicyEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50030' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Policy-Last-Applied-Time' + lDAPDisplayName = 'msExchPolicyLastAppliedTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Last-Applied-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-Last-Applied-Time' + OID = '1.2.840.113556.1.4.7000.102.50023' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Policy-List' + lDAPDisplayName = 'msExchPolicyList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policy-List' + OID = '1.2.840.113556.1.4.7000.102.50004' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Policy-List-BL' + lDAPDisplayName = 'msExchPolicyListBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-List-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policy-List-BL' + OID = '1.2.840.113556.1.4.7000.102.50005' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Policy-LockDown' + lDAPDisplayName = 'msExchPolicyLockDown' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-LockDown' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-LockDown' + OID = '1.2.840.113556.1.4.7000.102.50008' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Policy-Option-List' + lDAPDisplayName = 'msExchPolicyOptionList' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Option-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policy-Option-List' + OID = '1.2.840.113556.1.4.7000.102.50006' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Policy-Order' + lDAPDisplayName = 'msExchPolicyOrder' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Order' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-Order' + OID = '1.2.840.113556.1.4.7000.102.50027' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Policy-Roots' + lDAPDisplayName = 'msExchPolicyRoots' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Policy-Roots' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policy-Roots' + OID = '1.2.840.113556.1.4.7000.102.50028' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Policy-Tag-Link' + lDAPDisplayName = 'msExchPolicyTagLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Policy-Tag-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Policy-Tag-Link' + OID = '1.2.840.113556.1.4.7000.102.50936' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Policy-Tag-Link-BL' + lDAPDisplayName = 'msExchPolicyTagLinkBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Policy-Tag-Link-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Policy-Tag-Link-BL' + OID = '1.2.840.113556.1.4.7000.102.50937' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-PolicyTip-Message-Config-Action' + lDAPDisplayName = 'msExchPolicyTipMessageConfigAction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PolicyTip-Message-Config-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PolicyTip-Message-Config-Action' + OID = '1.2.840.113556.1.4.7000.102.52090' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-PolicyTip-Message-Config-Locale' + lDAPDisplayName = 'msExchPolicyTipMessageConfigLocale' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PolicyTip-Message-Config-Locale' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PolicyTip-Message-Config-Locale' + OID = '1.2.840.113556.1.4.7000.102.52089' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-PolicyTip-Message-Config-Message' + lDAPDisplayName = 'msExchPolicyTipMessageConfigMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PolicyTip-Message-Config-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PolicyTip-Message-Config-Message' + OID = '1.2.840.113556.1.4.7000.102.52091' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Poll-Interval' + lDAPDisplayName = 'msExchPollInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Poll-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Poll-Interval' + OID = '1.2.840.113556.1.4.7000.102.58' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-POP3-Settings' + lDAPDisplayName = 'msExchPOP3Settings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP3-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-POP3-Settings' + OID = '1.2.840.113556.1.4.7000.102.51484' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Pop-Imap-Banner' + lDAPDisplayName = 'msExchPopImapBanner' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Banner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Banner' + OID = '1.2.840.113556.1.4.7000.102.50822' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Calendar-Item-Retrieval-Option' + lDAPDisplayName = 'msExchPopImapCalendarItemRetrievalOption' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Calendar-Item-Retrieval-Option' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Calendar-Item-Retrieval-Option' + OID = '1.2.840.113556.1.4.7000.102.50821' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Command-Size' + lDAPDisplayName = 'msExchPopImapCommandSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Command-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Command-Size' + OID = '1.2.840.113556.1.4.7000.102.50817' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-PopImap-Extended-Protection-Policy' + lDAPDisplayName = 'msExchPopImapExtendedProtectionPolicy' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PopImap-Extended-Protection-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PopImap-Extended-Protection-Policy' + OID = '1.2.840.113556.1.4.7000.102.51771' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-IMAP-External-Connection-Settings' + lDAPDisplayName = 'msExchPOPIMAPExternalConnectionSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-IMAP-External-Connection-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-POP-IMAP-External-Connection-Settings' + OID = '1.2.840.113556.1.4.7000.102.51503' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Flags' + lDAPDisplayName = 'msExchPopImapFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Flags' + OID = '1.2.840.113556.1.4.7000.102.50820' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Incoming-Preauth-Connection-Timeout' + lDAPDisplayName = 'msExchPopImapIncomingPreauthConnectionTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Incoming-Preauth-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Incoming-Preauth-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50816' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-IMAP-Internal-Connection-Settings' + lDAPDisplayName = 'msExchPOPIMAPInternalConnectionSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-IMAP-Internal-Connection-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-POP-IMAP-Internal-Connection-Settings' + OID = '1.2.840.113556.1.4.7000.102.51505' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Pop-Imap-Log-File-Path' + lDAPDisplayName = 'msExchPopImapLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51588' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Log-File-Rollover-Frequency' + lDAPDisplayName = 'msExchPopImapLogFileRolloverFrequency' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Log-File-Rollover-Frequency' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Log-File-Rollover-Frequency' + OID = '1.2.840.113556.1.4.7000.102.51589' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-From-Single-Source' + lDAPDisplayName = 'msExchPopImapMaxIncomingConnectionFromSingleSource' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-From-Single-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-From-Single-Source' + OID = '1.2.840.113556.1.4.7000.102.50818' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-Per-User' + lDAPDisplayName = 'msExchPopImapMaxIncomingConnectionPerUser' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-Per-User' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Max-Incoming-Connection-Per-User' + OID = '1.2.840.113556.1.4.7000.102.50819' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Pop-Imap-Per-Log-File-Size-Quota' + lDAPDisplayName = 'msExchPopImapPerLogFileSizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Per-Log-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Per-Log-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51590' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Pop-Imap-Protocol-Flags' + lDAPDisplayName = 'msExchPopImapProtocolFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-Protocol-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-Protocol-Flags' + OID = '1.2.840.113556.1.4.7000.102.50994' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Pop-Imap-X509-Certificate-Name' + lDAPDisplayName = 'msExchPopImapX509CertificateName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Pop-Imap-X509-Certificate-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Pop-Imap-X509-Certificate-Name' + OID = '1.2.840.113556.1.4.7000.102.50811' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-Throttling-Policy-State' + lDAPDisplayName = 'msExchPOPThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-POP-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51159' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchPOPThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-POP-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52048' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Powershell-Throttling-Policy-State' + lDAPDisplayName = 'msExchPowershellThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Powershell-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Powershell-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51160' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Powershell-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchPowershellThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Powershell-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Powershell-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52049' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Preferred-Backfill-Source' + lDAPDisplayName = 'msExchPreferredBackfillSource' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Preferred-Backfill-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Preferred-Backfill-Source' + OID = '1.2.840.113556.1.4.7000.102.11094' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Prev-Export-DLs' + lDAPDisplayName = 'msExchPrevExportDLs' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Prev-Export-DLs' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Prev-Export-DLs' + OID = '1.2.840.113556.1.4.7000.102.1002' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Previous-Account-Sid' + lDAPDisplayName = 'msExchPreviousAccountSid' + oMSyntax = 4 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Account-Sid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Account-Sid' + OID = '1.2.840.113556.1.4.7000.102.93' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Previous-Archive-Database' + lDAPDisplayName = 'msExchPreviousArchiveDatabase' + oMSyntax = 127 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Archive-Database' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Archive-Database' + OID = '1.2.840.113556.1.4.7000.102.51773' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Previous-Archive-Database-SL' + lDAPDisplayName = 'msExchPreviousArchiveDatabaseSL' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Archive-Database-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Archive-Database-SL' + OID = '1.2.840.113556.1.4.7000.102.51943' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Previous-Home-MDB' + lDAPDisplayName = 'msExchPreviousHomeMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Home-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Home-MDB' + OID = '1.2.840.113556.1.4.7000.102.51450' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Previous-Home-MDB-SL' + lDAPDisplayName = 'msExchPreviousHomeMDBSL' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Home-MDB-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Home-MDB-SL' + OID = '1.2.840.113556.1.4.7000.102.51944' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Previous-Mailbox-Guid' + lDAPDisplayName = 'msExchPreviousMailboxGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Previous-Mailbox-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Mailbox-Guid' + OID = '1.2.840.113556.1.4.7000.102.51740' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Previous-Recipient-Type-Details' + lDAPDisplayName = 'msExchPreviousRecipientTypeDetails' + oMSyntax = 65 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Previous-Recipient-Type-Details' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Previous-Recipient-Type-Details' + OID = '1.2.840.113556.1.4.7000.102.52107' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Privacy-Statement-URL' + lDAPDisplayName = 'msExchPrivacyStatementURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Privacy-Statement-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Privacy-Statement-URL' + OID = '1.2.840.113556.1.4.7000.102.51020' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Privacy-Statement-URL-Enabled' + lDAPDisplayName = 'msExchPrivacyStatementURLEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Privacy-Statement-URL-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Privacy-Statement-URL-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51030' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Processed-Sids' + lDAPDisplayName = 'msExchProcessedSids' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Processed-Sids' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Processed-Sids' + OID = '1.2.840.113556.1.4.7000.102.89' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Product-ID' + lDAPDisplayName = 'msExchProductID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Product-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Product-ID' + OID = '1.2.840.113556.1.4.7000.102.50864' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Prompt-Publishing-Point' + lDAPDisplayName = 'msExchPromptPublishingPoint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Prompt-Publishing-Point' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Prompt-Publishing-Point' + OID = '1.2.840.113556.1.4.7000.102.50842' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Provisioning-Flags' + lDAPDisplayName = 'msExchProvisioningFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Provisioning-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Provisioning-Flags' + OID = '1.2.840.113556.1.4.7000.102.51143' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Provisioning-Policy-Scope-Links' + lDAPDisplayName = 'msExchProvisioningPolicyScopeLinks' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Provisioning-Policy-Scope-Links' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Provisioning-Policy-Scope-Links' + OID = '1.2.840.113556.1.4.7000.102.51018' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Provisioning-Policy-Target-Objects' + lDAPDisplayName = 'msExchProvisioningPolicyTargetObjects' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Provisioning-Policy-Target-Objects' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Provisioning-Policy-Target-Objects' + OID = '1.2.840.113556.1.4.7000.102.51017' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Provisioning-Policy-Type' + lDAPDisplayName = 'msExchProvisioningPolicyType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Provisioning-Policy-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Provisioning-Policy-Type' + OID = '1.2.840.113556.1.4.7000.102.51019' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Provisioning-Tags' + lDAPDisplayName = 'msExchProvisioningTags' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Provisioning-Tags' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Provisioning-Tags' + OID = '1.2.840.113556.1.4.7000.102.52126' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Proxy-Custom-Proxy' + lDAPDisplayName = 'msExchProxyCustomProxy' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Proxy-Custom-Proxy' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Proxy-Custom-Proxy' + OID = '1.2.840.113556.1.4.7000.102.50048' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'msExch-Proxy-Gen-Options' + lDAPDisplayName = 'msExchProxyGenOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'msExch-Proxy-Gen-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'msExch-Proxy-Gen-Options' + OID = '1.2.840.113556.1.4.7000.102.50044' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Proxy-Gen-Server' + lDAPDisplayName = 'msExchProxyGenServer' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Proxy-Gen-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Proxy-Gen-Server' + OID = '1.2.840.113556.1.4.7000.102.50013' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Proxy-Name' + lDAPDisplayName = 'msExchProxyName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Proxy-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Proxy-Name' + OID = '1.2.840.113556.1.4.7000.102.9018' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Public-Folder-Deleted-Item-Retention' + lDAPDisplayName = 'msExchPublicFolderDeletedItemRetention' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Public-Folder-Deleted-Item-Retention' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Public-Folder-Deleted-Item-Retention' + OID = '1.2.840.113556.1.4.7000.102.52093' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Public-Folder-EntryId' + lDAPDisplayName = 'msExchPublicFolderEntryId' + oMSyntax = 64 + Optional = $True + searchFlags = 24 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Public-Folder-EntryId' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Public-Folder-EntryId' + OID = '1.2.840.113556.1.4.7000.102.52035' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Public-Folder-Mailbox' + lDAPDisplayName = 'msExchPublicFolderMailbox' + oMSyntax = 127 + Optional = $True + searchFlags = 24 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Public-Folder-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Public-Folder-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.52034' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Public-Folder-Moved-Item-Retention' + lDAPDisplayName = 'msExchPublicFolderMovedItemRetention' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Public-Folder-Moved-Item-Retention' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Public-Folder-Moved-Item-Retention' + OID = '1.2.840.113556.1.4.7000.102.52122' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Public-Folder-Smtp-Address' + lDAPDisplayName = 'msExchPublicFolderSmtpAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 24 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Public-Folder-Smtp-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Public-Folder-Smtp-Address' + OID = '1.2.840.113556.1.4.7000.102.52036' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Purported-Search-UI' + lDAPDisplayName = 'msExchPurportedSearchUI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Purported-Search-UI' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Purported-Search-UI' + OID = '1.2.840.113556.1.4.7000.102.66' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Push-Notifications-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchPushNotificationsThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Push-Notifications-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Push-Notifications-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52121' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Query-Base-DN' + lDAPDisplayName = 'msExchQueryBaseDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Query-Base-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Query-Base-DN' + OID = '1.2.840.113556.1.4.7000.102.15008' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Query-Filter' + lDAPDisplayName = 'msExchQueryFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Query-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Query-Filter' + OID = '1.2.840.113556.1.4.7000.102.50529' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Query-Filter-Metadata' + lDAPDisplayName = 'msExchQueryFilterMetadata' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Query-Filter-Metadata' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Query-Filter-Metadata' + OID = '1.2.840.113556.1.4.7000.102.50875' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Queuing-MDB' + lDAPDisplayName = 'msExchQueuingMDB' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Queuing-MDB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Queuing-MDB' + OID = '1.2.840.113556.1.4.7000.102.11054' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-RBAC-Policy-BL' + lDAPDisplayName = 'msExchRBACPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RBAC-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-RBAC-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.51448' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-RBAC-Policy-Flags' + lDAPDisplayName = 'msExchRBACPolicyFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RBAC-Policy-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RBAC-Policy-Flags' + OID = '1.2.840.113556.1.4.7000.102.51430' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-RBAC-Policy-Link' + lDAPDisplayName = 'msExchRBACPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-RBAC-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RBAC-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51429' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RCA-Throttling-Policy-State' + lDAPDisplayName = 'msExchRCAThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RCA-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RCA-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51562' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RCA-Throttling-Policy-State-Ex' + lDAPDisplayName = 'msExchRCAThrottlingPolicyStateEx' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RCA-Throttling-Policy-State-Ex' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RCA-Throttling-Policy-State-Ex' + OID = '1.2.840.113556.1.4.7000.102.52050' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Receive-Hashed-Password' + lDAPDisplayName = 'msExchReceiveHashedPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Receive-Hashed-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Receive-Hashed-Password' + OID = '1.2.840.113556.1.4.7000.102.50742' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Receive-User-Name' + lDAPDisplayName = 'msExchReceiveUserName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Receive-User-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Receive-User-Name' + OID = '1.2.840.113556.1.4.7000.102.50741' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Display-Type' + lDAPDisplayName = 'msExchRecipientDisplayType' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Recipient-Display-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Display-Type' + OID = '1.2.840.113556.1.4.7000.102.50730' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Filter-Flags' + lDAPDisplayName = 'msExchRecipientFilterFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Filter-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Filter-Flags' + OID = '1.2.840.113556.1.4.7000.102.50830' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Issue-Warning-Quota' + lDAPDisplayName = 'msExchRecipientIssueWarningQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Issue-Warning-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Issue-Warning-Quota' + OID = '1.2.840.113556.1.4.7000.102.51009' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Max-Receive-Size' + lDAPDisplayName = 'msExchRecipientMaxReceiveSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Max-Receive-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Max-Receive-Size' + OID = '1.2.840.113556.1.4.7000.102.51010' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Max-Send-Size' + lDAPDisplayName = 'msExchRecipientMaxSendSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Max-Send-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Max-Send-Size' + OID = '1.2.840.113556.1.4.7000.102.51011' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Prohibit-Send-Quota' + lDAPDisplayName = 'msExchRecipientProhibitSendQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Prohibit-Send-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Prohibit-Send-Quota' + OID = '1.2.840.113556.1.4.7000.102.51012' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Prohibit-Send-Receive-Quota' + lDAPDisplayName = 'msExchRecipientProhibitSendReceiveQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Prohibit-Send-Receive-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Prohibit-Send-Receive-Quota' + OID = '1.2.840.113556.1.4.7000.102.51013' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Rules-Quota' + lDAPDisplayName = 'msExchRecipientRulesQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Rules-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Rules-Quota' + OID = '1.2.840.113556.1.4.7000.102.51014' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-SoftDeleted-Status' + lDAPDisplayName = 'msExchRecipientSoftDeletedStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 27 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Recipient-SoftDeleted-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-SoftDeleted-Status' + OID = '1.2.840.113556.1.4.7000.102.51859' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recipient-Template-Flags' + lDAPDisplayName = 'msExchRecipientTemplateFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Template-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Template-Flags' + OID = '1.2.840.113556.1.4.7000.102.50353' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Recipient-Type-Details' + lDAPDisplayName = 'msExchRecipientTypeDetails' + oMSyntax = 65 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Recipient-Type-Details' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recipient-Type-Details' + OID = '1.2.840.113556.1.4.7000.102.50855' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Recipient-Validator-Cookies' + lDAPDisplayName = 'msExchRecipientValidatorCookies' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recipient-Validator-Cookies' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Recipient-Validator-Cookies' + OID = '1.2.840.113556.1.4.7000.102.50961' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recip-Limit' + lDAPDisplayName = 'msExchRecipLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Recip-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recip-Limit' + OID = '1.2.840.113556.1.4.7000.102.12523' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Recip-Turf-List-Names' + lDAPDisplayName = 'msExchRecipTurfListNames' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recip-Turf-List-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Recip-Turf-List-Names' + OID = '1.2.840.113556.1.4.7000.102.5070' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recip-Turf-List-Options' + lDAPDisplayName = 'msExchRecipTurfListOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recip-Turf-List-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recip-Turf-List-Options' + OID = '1.2.840.113556.1.4.7000.102.5071' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Reconciliation-Cookies' + lDAPDisplayName = 'msExchReconciliationCookies' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Reconciliation-Cookies' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Reconciliation-Cookies' + OID = '1.2.840.113556.1.4.7000.102.51751' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Recovery' + lDAPDisplayName = 'msExchRecovery' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recovery' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recovery' + OID = '1.2.840.113556.1.4.7000.102.11046' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recovery-Point-Objective-Inter-AD-Site' + lDAPDisplayName = 'msExchRecoveryPointObjectiveInterADSite' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recovery-Point-Objective-Inter-AD-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recovery-Point-Objective-Inter-AD-Site' + OID = '1.2.840.113556.1.4.7000.102.51283' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Recovery-Point-Objective-Intra-AD-Site' + lDAPDisplayName = 'msExchRecoveryPointObjectiveIntraADSite' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Recovery-Point-Objective-Intra-AD-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Recovery-Point-Objective-Intra-AD-Site' + OID = '1.2.840.113556.1.4.7000.102.51282' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Relation-Tags' + lDAPDisplayName = 'msExchRelationTags' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Relation-Tags' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Relation-Tags' + OID = '1.2.840.113556.1.4.7000.102.51364' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Completion-Target-Vector' + lDAPDisplayName = 'msExchRelocateTenantCompletionTargetVector' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Completion-Target-Vector' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Completion-Target-Vector' + OID = '1.2.840.113556.1.4.7000.102.52063' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Flags' + lDAPDisplayName = 'msExchRelocateTenantFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Flags' + OID = '1.2.840.113556.1.4.7000.102.52061' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Safe-Lockdown-Schedule' + lDAPDisplayName = 'msExchRelocateTenantSafeLockdownSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Safe-Lockdown-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Safe-Lockdown-Schedule' + OID = '1.2.840.113556.1.4.7000.102.52059' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Source-Forest' + lDAPDisplayName = 'msExchRelocateTenantSourceForest' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Source-Forest' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Source-Forest' + OID = '1.2.840.113556.1.4.7000.102.52058' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Start-Lockdown' + lDAPDisplayName = 'msExchRelocateTenantStartLockdown' + oMSyntax = 24 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Start-Lockdown' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Start-Lockdown' + OID = '1.2.840.113556.1.4.7000.102.52055' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Start-Retired' + lDAPDisplayName = 'msExchRelocateTenantStartRetired' + oMSyntax = 24 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Start-Retired' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Start-Retired' + OID = '1.2.840.113556.1.4.7000.102.52056' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Start-Sync' + lDAPDisplayName = 'msExchRelocateTenantStartSync' + oMSyntax = 24 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Start-Sync' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Start-Sync' + OID = '1.2.840.113556.1.4.7000.102.52054' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Status' + lDAPDisplayName = 'msExchRelocateTenantStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Status' + OID = '1.2.840.113556.1.4.7000.102.52060' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Target-Forest' + lDAPDisplayName = 'msExchRelocateTenantTargetForest' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Target-Forest' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Relocate-Tenant-Target-Forest' + OID = '1.2.840.113556.1.4.7000.102.52057' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Relocate-Tenant-Transition-Counter' + lDAPDisplayName = 'msExchRelocateTenantTransitionCounter' + oMSyntax = 2 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Relocate-Tenant-Transition-Counter' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Relocate-Tenant-Transition-Counter' + OID = '1.2.840.113556.1.4.7000.102.52062' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Remote-Private-IS-List' + lDAPDisplayName = 'msExchRemotePrivateISList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Remote-Private-IS-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Private-IS-List' + OID = '1.2.840.113556.1.4.7000.102.46' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Remote-Recipient-Type' + lDAPDisplayName = 'msExchRemoteRecipientType' + oMSyntax = 65 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Remote-Recipient-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Recipient-Type' + OID = '1.2.840.113556.1.4.7000.102.51611' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Remote-Server-List' + lDAPDisplayName = 'msExchRemoteServerList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Remote-Server-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Server-List' + OID = '1.2.840.113556.1.4.7000.102.45' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replay-Lag' + lDAPDisplayName = 'msExchReplayLag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replay-Lag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replay-Lag' + OID = '1.2.840.113556.1.4.7000.102.50939' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Replicate-Now' + lDAPDisplayName = 'msExchReplicateNow' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replicate-Now' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replicate-Now' + OID = '1.2.840.113556.1.4.7000.102.53' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replication-Msg-Size' + lDAPDisplayName = 'msExchReplicationMsgSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Msg-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Msg-Size' + OID = '1.2.840.113556.1.4.7000.102.11047' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Replication-Schedule' + lDAPDisplayName = 'msExchReplicationSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Schedule' + OID = '1.2.840.113556.1.4.7000.102.11048' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replication-Style' + lDAPDisplayName = 'msExchReplicationStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Style' + OID = '1.2.840.113556.1.4.7000.102.11049' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-RequireAuthToSendTo' + lDAPDisplayName = 'msExchRequireAuthToSendTo' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-RequireAuthToSendTo' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RequireAuthToSendTo' + OID = '1.2.840.113556.1.4.5062' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Reseller' + lDAPDisplayName = 'msExchReseller' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Reseller' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Reseller' + OID = '1.2.840.113556.1.4.7000.102.51235' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Resolve-P2' + lDAPDisplayName = 'msExchResolveP2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Resolve-P2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Resolve-P2' + OID = '1.2.840.113556.1.4.7000.102.12538' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Resource-Address-Lists' + lDAPDisplayName = 'msExchResourceAddressLists' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Address-Lists' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Address-Lists' + OID = '1.2.840.113556.1.4.7000.102.50468' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Resource-Capacity' + lDAPDisplayName = 'msExchResourceCapacity' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Capacity' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Resource-Capacity' + OID = '1.2.840.113556.1.4.7000.102.50332' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Display' + lDAPDisplayName = 'msExchResourceDisplay' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Display' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Resource-Display' + OID = '1.2.840.113556.1.4.7000.102.50334' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-GUID' + lDAPDisplayName = 'msExchResourceGUID' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-GUID' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-GUID' + OID = '1.2.840.113556.1.4.7000.102.9001' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Location-Schema' + lDAPDisplayName = 'msExchResourceLocationSchema' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Location-Schema' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Location-Schema' + OID = '1.2.840.113556.1.4.7000.102.50330' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Meta-Data' + lDAPDisplayName = 'msExchResourceMetaData' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Meta-Data' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Meta-Data' + OID = '1.2.840.113556.1.4.7000.102.50333' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Properties' + lDAPDisplayName = 'msExchResourceProperties' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Resource-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Properties' + OID = '1.2.840.113556.1.4.7000.102.9025' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Property-Schema' + lDAPDisplayName = 'msExchResourcePropertySchema' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Property-Schema' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Property-Schema' + OID = '1.2.840.113556.1.4.7000.102.50881' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Resource-Search-Properties' + lDAPDisplayName = 'msExchResourceSearchProperties' + oMSyntax = 64 + Optional = $True + searchFlags = 7 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Resource-Search-Properties' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Resource-Search-Properties' + OID = '1.2.840.113556.1.4.7000.102.50331' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Resource-Type' + lDAPDisplayName = 'msExchResourceType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Resource-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Resource-Type' + OID = '1.2.840.113556.1.4.7000.102.51822' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Responsible-For-Sites' + lDAPDisplayName = 'msExchResponsibleForSites' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Responsible-For-Sites' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Responsible-For-Sites' + OID = '1.2.840.113556.1.4.7000.102.51750' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Responsible-MTA-Server' + lDAPDisplayName = 'msExchResponsibleMTAServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Responsible-MTA-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Responsible-MTA-Server' + OID = '1.2.840.113556.1.4.7000.102.50033' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Responsible-MTA-Server-BL' + lDAPDisplayName = 'msExchResponsibleMTAServerBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Responsible-MTA-Server-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Responsible-MTA-Server-BL' + OID = '1.2.840.113556.1.4.7000.102.50034' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Restore' + lDAPDisplayName = 'msExchRestore' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Restore' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Restore' + OID = '1.2.840.113556.1.4.7000.102.11092' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Retention-Comment' + lDAPDisplayName = 'msExchRetentionComment' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Retention-Comment' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Retention-Comment' + OID = '1.2.840.113556.1.4.7000.102.51240' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Retention-Policy-Tag' + lDAPDisplayName = 'msExchRetentionPolicyTag' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Retention-Policy-Tag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Retention-Policy-Tag' + OID = '1.2.840.113556.1.4.7000.102.50956' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Retention-URL' + lDAPDisplayName = 'msExchRetentionURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Retention-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Retention-URL' + OID = '1.2.840.113556.1.4.7000.102.51242' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-RMS-Computer-Accounts-BL' + lDAPDisplayName = 'msExchRMSComputerAccountsBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMS-Computer-Accounts-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-RMS-Computer-Accounts-BL' + OID = '1.2.840.113556.1.4.7000.102.51523' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-RMS-Computer-Accounts-Link' + lDAPDisplayName = 'msExchRMSComputerAccountsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-RMS-Computer-Accounts-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-RMS-Computer-Accounts-Link' + OID = '1.2.840.113556.1.4.7000.102.51492' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-RMS-Computer-Accounts-Link-SL' + lDAPDisplayName = 'msExchRMSComputerAccountsLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-RMS-Computer-Accounts-Link-SL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-RMS-Computer-Accounts-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51938' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMS-Licensing-Location-Url' + lDAPDisplayName = 'msExchRMSLicensingLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMS-Licensing-Location-Url' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-RMS-Licensing-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.51289' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMSOnline-Certification-Location-Url' + lDAPDisplayName = 'msExchRMSOnlineCertificationLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMSOnline-Certification-Location-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMSOnline-Certification-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.52005' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMSOnline-Key-Sharing-Location-Url' + lDAPDisplayName = 'msExchRMSOnlineKeySharingLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMSOnline-Key-Sharing-Location-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMSOnline-Key-Sharing-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.52007' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMSOnline-Licensing-Location-Url' + lDAPDisplayName = 'msExchRMSOnlineLicensingLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMSOnline-Licensing-Location-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMSOnline-Licensing-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.52006' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMS-Publishing-Location-Url' + lDAPDisplayName = 'msExchRMSPublishingLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMS-Publishing-Location-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMS-Publishing-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.51286' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMS-Service-Location-Url' + lDAPDisplayName = 'msExchRMSServiceLocationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMS-Service-Location-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMS-Service-Location-Url' + OID = '1.2.840.113556.1.4.7000.102.51284' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RMS-Template-Path' + lDAPDisplayName = 'msExchRMSTemplatePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RMS-Template-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RMS-Template-Path' + OID = '1.2.840.113556.1.4.7000.102.50808' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Role-Assignment-Flags' + lDAPDisplayName = 'msExchRoleAssignmentFlags' + oMSyntax = 65 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Assignment-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Role-Assignment-Flags' + OID = '1.2.840.113556.1.4.7000.102.50945' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Role-BL' + lDAPDisplayName = 'msExchRoleBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-BL' + OID = '1.2.840.113556.1.4.7000.102.51053' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Role-Entries' + lDAPDisplayName = 'msExchRoleEntries' + oMSyntax = 64 + Optional = $True + searchFlags = 3 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Entries' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-Entries' + OID = '1.2.840.113556.1.4.7000.102.50941' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Role-Entries-Ext' + lDAPDisplayName = 'msExchRoleEntriesExt' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Entries-Ext' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-Entries-Ext' + OID = '1.2.840.113556.1.4.7000.102.51391' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Role-Flags' + lDAPDisplayName = 'msExchRoleFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Role-Flags' + OID = '1.2.840.113556.1.4.7000.102.50942' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-RoleGroup-Type' + lDAPDisplayName = 'msExchRoleGroupType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-RoleGroup-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RoleGroup-Type' + OID = '1.2.840.113556.1.4.7000.102.51775' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Role-Includes' + lDAPDisplayName = 'msExchRoleIncludes' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Includes' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-Includes' + OID = '1.2.840.113556.1.4.7000.102.50020' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Role-Link' + lDAPDisplayName = 'msExchRoleLink' + oMSyntax = 127 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Role-Link' + OID = '1.2.840.113556.1.4.7000.102.50946' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Role-Localized-Names' + lDAPDisplayName = 'msExchRoleLocalizedNames' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Localized-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-Localized-Names' + OID = '1.2.840.113556.1.4.7000.102.50021' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Role-Rights' + lDAPDisplayName = 'msExchRoleRights' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Rights' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Role-Rights' + OID = '1.2.840.113556.1.4.7000.102.50018' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Role-Type' + lDAPDisplayName = 'msExchRoleType' + oMSyntax = 2 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Role-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Role-Type' + OID = '1.2.840.113556.1.4.7000.102.51390' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Routing-Accept-Message-Type' + lDAPDisplayName = 'msExchRoutingAcceptMessageType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Accept-Message-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Accept-Message-Type' + OID = '1.2.840.113556.1.4.7000.102.12517' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Routing-Disallow-Priority' + lDAPDisplayName = 'msExchRoutingDisallowPriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Disallow-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Disallow-Priority' + OID = '1.2.840.113556.1.4.7000.102.12529' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Routing-Display-Sender-Enabled' + lDAPDisplayName = 'msExchRoutingDisplaySenderEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Display-Sender-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Display-Sender-Enabled' + OID = '1.2.840.113556.1.4.7000.102.12519' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Routing-Enabled' + lDAPDisplayName = 'msExchRoutingEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Enabled' + OID = '1.2.840.113556.1.4.7000.102.12528' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Routing-ETRN-Domains' + lDAPDisplayName = 'msExchRoutingETRNDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-ETRN-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Routing-ETRN-Domains' + OID = '1.2.840.113556.1.4.7000.102.12530' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Routing-Group-Members-BL' + lDAPDisplayName = 'msExchRoutingGroupMembersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Group-Members-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Routing-Group-Members-BL' + OID = '1.2.840.113556.1.4.7000.102.12540' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Routing-Group-Members-DN' + lDAPDisplayName = 'msExchRoutingGroupMembersDN' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Group-Members-DN' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Routing-Group-Members-DN' + OID = '1.2.840.113556.1.4.7000.102.12506' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Routing-Master-DN' + lDAPDisplayName = 'msExchRoutingMasterDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Master-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Master-DN' + OID = '1.2.840.113556.1.4.7000.102.12505' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Routing-Oversized-Schedule' + lDAPDisplayName = 'msExchRoutingOversizedSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Oversized-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Oversized-Schedule' + OID = '1.2.840.113556.1.4.7000.102.12520' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Routing-Oversized-Style' + lDAPDisplayName = 'msExchRoutingOversizedStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Oversized-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Oversized-Style' + OID = '1.2.840.113556.1.4.7000.102.12521' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Routing-Triggered-Schedule' + lDAPDisplayName = 'msExchRoutingTriggeredSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Triggered-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Triggered-Schedule' + OID = '1.2.840.113556.1.4.7000.102.12526' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Routing-Triggered-Style' + lDAPDisplayName = 'msExchRoutingTriggeredStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-Triggered-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Routing-Triggered-Style' + OID = '1.2.840.113556.1.4.7000.102.12525' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Rpc-Http-Flags' + lDAPDisplayName = 'msExchRpcHttpFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Rpc-Http-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Rpc-Http-Flags' + OID = '1.2.840.113556.1.4.7000.102.50784' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Safe-Recipients-Hash' + lDAPDisplayName = 'msExchSafeRecipientsHash' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Safe-Recipients-Hash' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Safe-Recipients-Hash' + OID = '1.2.840.113556.1.4.7000.102.50766' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Safe-Senders-Hash' + lDAPDisplayName = 'msExchSafeSendersHash' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Safe-Senders-Hash' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Safe-Senders-Hash' + OID = '1.2.840.113556.1.4.7000.102.50765' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sasl-Logon-Domain' + lDAPDisplayName = 'msExchSaslLogonDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sasl-Logon-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sasl-Logon-Domain' + OID = '1.2.840.113556.1.4.7000.102.2008' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SASL-Mechanisms' + lDAPDisplayName = 'msExchSASLMechanisms' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SASL-Mechanisms' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-SASL-Mechanisms' + OID = '1.2.840.113556.1.4.7000.102.2018' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Sched-Plus-AG-Only' + lDAPDisplayName = 'msExchSchedPlusAGOnly' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sched-Plus-AG-Only' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sched-Plus-AG-Only' + OID = '1.2.840.113556.1.4.7000.102.1191' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Sched-Plus-Full-Update' + lDAPDisplayName = 'msExchSchedPlusFullUpdate' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sched-Plus-Full-Update' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sched-Plus-Full-Update' + OID = '1.2.840.113556.1.4.7000.102.1190' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Sched-Plus-Schedist' + lDAPDisplayName = 'msExchSchedPlusSchedist' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sched-Plus-Schedist' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sched-Plus-Schedist' + OID = '1.2.840.113556.1.4.7000.102.1192' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Schema-Policy-Consumers' + lDAPDisplayName = 'msExchSchemaPolicyConsumers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Schema-Policy-Consumers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Schema-Policy-Consumers' + OID = '1.2.840.113556.1.4.7000.102.57' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Schema-Version-Adc' + lDAPDisplayName = 'msExchSchemaVersionAdc' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Schema-Version-Adc' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Schema-Version-Adc' + OID = '1.2.840.113556.1.4.7000.102.98' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Schema-Version-Pt' + lDAPDisplayName = 'msExchSchemaVersionPt' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Schema-Version-Pt' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Schema-Version-Pt' + OID = '1.2.840.113556.1.4.7000.102.97' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Scope-Flags' + lDAPDisplayName = 'msExchScopeFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 19 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Scope-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Scope-Flags' + OID = '1.2.840.113556.1.4.7000.102.50943' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Scope-Mask' + lDAPDisplayName = 'msExchScopeMask' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Scope-Mask' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Scope-Mask' + OID = '1.2.840.113556.1.4.7000.102.9014' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Scope-Root' + lDAPDisplayName = 'msExchScopeRoot' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Scope-Root' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Scope-Root' + OID = '1.2.840.113556.1.4.7000.102.50944' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Search-Base' + lDAPDisplayName = 'msExchSearchBase' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Search-Base' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Search-Base' + OID = '1.2.840.113556.1.4.7000.102.91' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Search-Scope' + lDAPDisplayName = 'msExchSearchScope' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Search-Scope' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Search-Scope' + OID = '1.2.840.113556.1.4.7000.102.92' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Secure-Bindings' + lDAPDisplayName = 'msExchSecureBindings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Secure-Bindings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Secure-Bindings' + OID = '1.2.840.113556.1.4.7000.102.2002' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Security-Password' + lDAPDisplayName = 'msExchSecurityPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Security-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Security-Password' + OID = '1.2.840.113556.1.4.7000.102.5052' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Send-As-Addresses' + lDAPDisplayName = 'msExchSendAsAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Send-As-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Send-As-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51150' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Send-Encrypted-Password' + lDAPDisplayName = 'msExchSendEncryptedPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Send-Encrypted-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Send-Encrypted-Password' + OID = '1.2.840.113556.1.4.7000.102.50744' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Hint-Large-Audience-Threshold' + lDAPDisplayName = 'msExchSenderHintLargeAudienceThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Hint-Large-Audience-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Hint-Large-Audience-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50901' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sender-Hints-Enabled' + lDAPDisplayName = 'msExchSenderHintsEnabled' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Hints-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Hints-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50900' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sender-Hint-Translations' + lDAPDisplayName = 'msExchSenderHintTranslations' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sender-Hint-Translations' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Hint-Translations' + OID = '1.2.840.113556.1.4.7000.102.50899' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Cisco-Ports' + lDAPDisplayName = 'msExchSenderReputationCiscoPorts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Cisco-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Cisco-Ports' + OID = '1.2.840.113556.1.4.7000.102.50499' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Http-Connect-Ports' + lDAPDisplayName = 'msExchSenderReputationHttpConnectPorts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Http-Connect-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Http-Connect-Ports' + OID = '1.2.840.113556.1.4.7000.102.50497' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Http-Post-Ports' + lDAPDisplayName = 'msExchSenderReputationHttpPostPorts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Http-Post-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Http-Post-Ports' + OID = '1.2.840.113556.1.4.7000.102.50498' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Max-Download-Interval' + lDAPDisplayName = 'msExchSenderReputationMaxDownloadInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Max-Download-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Max-Download-Interval' + OID = '1.2.840.113556.1.4.7000.102.50507' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Max-Idle-Time' + lDAPDisplayName = 'msExchSenderReputationMaxIdleTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Max-Idle-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Max-Idle-Time' + OID = '1.2.840.113556.1.4.7000.102.50493' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Max-Pending-Operations' + lDAPDisplayName = 'msExchSenderReputationMaxPendingOperations' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Max-Pending-Operations' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Max-Pending-Operations' + OID = '1.2.840.113556.1.4.7000.102.50502' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Max-Work-Queue-Size' + lDAPDisplayName = 'msExchSenderReputationMaxWorkQueueSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Max-Work-Queue-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Max-Work-Queue-Size' + OID = '1.2.840.113556.1.4.7000.102.50492' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Min-Download-Interval' + lDAPDisplayName = 'msExchSenderReputationMinDownloadInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Min-Download-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Min-Download-Interval' + OID = '1.2.840.113556.1.4.7000.102.50506' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Min-Message-Per-Time-Slice' + lDAPDisplayName = 'msExchSenderReputationMinMessagePerTimeSlice' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Min-Message-Per-Time-Slice' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Min-Message-Per-Time-Slice' + OID = '1.2.840.113556.1.4.7000.102.50486' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Min-Messages-Per-Database-Transaction' + lDAPDisplayName = 'msExchSenderReputationMinMessagesPerDatabaseTransaction' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Min-Messages-Per-Database-Transaction' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Min-Messages-Per-Database-Transaction' + OID = '1.2.840.113556.1.4.7000.102.50484' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Min-Reverse-Dns-Query-Period' + lDAPDisplayName = 'msExchSenderReputationMinReverseDnsQueryPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Min-Reverse-Dns-Query-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Min-Reverse-Dns-Query-Period' + OID = '1.2.840.113556.1.4.7000.102.50490' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Open-Proxy-Flags' + lDAPDisplayName = 'msExchSenderReputationOpenProxyFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Open-Proxy-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Open-Proxy-Flags' + OID = '1.2.840.113556.1.4.7000.102.50489' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Open-Proxy-Rescan-Interval' + lDAPDisplayName = 'msExchSenderReputationOpenProxyRescanInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Open-Proxy-Rescan-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Open-Proxy-Rescan-Interval' + OID = '1.2.840.113556.1.4.7000.102.50488' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Sender-Reputation-Proxy-Server-IP' + lDAPDisplayName = 'msExchSenderReputationProxyServerIP' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Proxy-Server-IP' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Proxy-Server-IP' + OID = '1.2.840.113556.1.4.7000.102.50503' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Proxy-Server-Port' + lDAPDisplayName = 'msExchSenderReputationProxyServerPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Proxy-Server-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Proxy-Server-Port' + OID = '1.2.840.113556.1.4.7000.102.50505' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Proxy-Server-Type' + lDAPDisplayName = 'msExchSenderReputationProxyServerType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Proxy-Server-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Proxy-Server-Type' + OID = '1.2.840.113556.1.4.7000.102.50504' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Sender-Blocking-Period' + lDAPDisplayName = 'msExchSenderReputationSenderBlockingPeriod' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Sender-Blocking-Period' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Sender-Blocking-Period' + OID = '1.2.840.113556.1.4.7000.102.50491' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sender-Reputation-Service-Url' + lDAPDisplayName = 'msExchSenderReputationServiceUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Service-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Service-Url' + OID = '1.2.840.113556.1.4.7000.102.50727' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Socks4-Ports' + lDAPDisplayName = 'msExchSenderReputationSocks4Ports' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Socks4-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Socks4-Ports' + OID = '1.2.840.113556.1.4.7000.102.50494' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Socks5-Ports' + lDAPDisplayName = 'msExchSenderReputationSocks5Ports' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Socks5-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Socks5-Ports' + OID = '1.2.840.113556.1.4.7000.102.50495' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Srl-Block-Threshold' + lDAPDisplayName = 'msExchSenderReputationSrlBlockThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Srl-Block-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Srl-Block-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50485' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sender-Reputation-Srl-Settings-Database-File-Name' + lDAPDisplayName = 'msExchSenderReputationSrlSettingsDatabaseFileName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Srl-Settings-Database-File-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Srl-Settings-Database-File-Name' + OID = '1.2.840.113556.1.4.7000.102.50508' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Table-Purge-Interval' + lDAPDisplayName = 'msExchSenderReputationTablePurgeInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Table-Purge-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Table-Purge-Interval' + OID = '1.2.840.113556.1.4.7000.102.50501' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Telnet-Ports' + lDAPDisplayName = 'msExchSenderReputationTelnetPorts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Telnet-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Telnet-Ports' + OID = '1.2.840.113556.1.4.7000.102.50500' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Time-Slice-Interval' + lDAPDisplayName = 'msExchSenderReputationTimeSliceInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Time-Slice-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sender-Reputation-Time-Slice-Interval' + OID = '1.2.840.113556.1.4.7000.102.50487' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sender-Reputation-Wingate-Ports' + lDAPDisplayName = 'msExchSenderReputationWingatePorts' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sender-Reputation-Wingate-Ports' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sender-Reputation-Wingate-Ports' + OID = '1.2.840.113556.1.4.7000.102.50496' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Send-User-Name' + lDAPDisplayName = 'msExchSendUserName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Send-User-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Send-User-Name' + OID = '1.2.840.113556.1.4.7000.102.50743' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Always-Create-As' + lDAPDisplayName = 'msExchServer1AlwaysCreateAs' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Always-Create-As' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Always-Create-As' + OID = '1.2.840.113556.1.4.7000.102.27' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Authentication-Credentials' + lDAPDisplayName = 'msExchServer1AuthenticationCredentials' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Authentication-Credentials' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Authentication-Credentials' + OID = '1.2.840.113556.1.4.7000.102.9' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server1-Authentication-Password' + lDAPDisplayName = 'msExchServer1AuthenticationPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Authentication-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Authentication-Password' + OID = '1.2.840.113556.1.4.7000.102.11' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Authentication-Type' + lDAPDisplayName = 'msExchServer1AuthenticationType' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Authentication-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Authentication-Type' + OID = '1.2.840.113556.1.4.7000.102.7' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Deletion-Option' + lDAPDisplayName = 'msExchServer1DeletionOption' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Deletion-Option' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Deletion-Option' + OID = '1.2.840.113556.1.4.7000.102.21' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Export-Containers' + lDAPDisplayName = 'msExchServer1ExportContainers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Export-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server1-Export-Containers' + OID = '1.2.840.113556.1.4.7000.102.13' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Flags' + lDAPDisplayName = 'msExchServer1Flags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Flags' + OID = '1.2.840.113556.1.4.7000.102.61' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Server1-Highest-USN' + lDAPDisplayName = 'msExchServer1HighestUSN' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Highest-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Highest-USN' + OID = '1.2.840.113556.1.4.7000.102.29' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Highest-USN-Vector' + lDAPDisplayName = 'msExchServer1HighestUSNVector' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Highest-USN-Vector' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server1-Highest-USN-Vector' + OID = '1.2.840.113556.1.4.7000.102.86' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Import-Container' + lDAPDisplayName = 'msExchServer1ImportContainer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Import-Container' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Import-Container' + OID = '1.2.840.113556.1.4.7000.102.15' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Server1-Is-Bridgehead' + lDAPDisplayName = 'msExchServer1IsBridgehead' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Is-Bridgehead' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Is-Bridgehead' + OID = '1.2.840.113556.1.4.7000.102.77' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Server1-Last-Update-Time' + lDAPDisplayName = 'msExchServer1LastUpdateTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Last-Update-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Last-Update-Time' + OID = '1.2.840.113556.1.4.7000.102.31' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Network-Address' + lDAPDisplayName = 'msExchServer1NetworkAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Network-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Network-Address' + OID = '1.2.840.113556.1.4.7000.102.3' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-NT-Account-Domain' + lDAPDisplayName = 'msExchServer1NTAccountDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-NT-Account-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-NT-Account-Domain' + OID = '1.2.840.113556.1.4.7000.102.50' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Object-Match' + lDAPDisplayName = 'msExchServer1ObjectMatch' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Object-Match' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Object-Match' + OID = '1.2.840.113556.1.4.7000.102.54' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Page-Size' + lDAPDisplayName = 'msExchServer1PageSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Page-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Page-Size' + OID = '1.2.840.113556.1.4.7000.102.25' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Port' + lDAPDisplayName = 'msExchServer1Port' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Port' + OID = '1.2.840.113556.1.4.7000.102.5' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Schema-Map' + lDAPDisplayName = 'msExchServer1SchemaMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Schema-Map' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Schema-Map' + OID = '1.2.840.113556.1.4.7000.102.17' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server1-Search-Filter' + lDAPDisplayName = 'msExchServer1SearchFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Search-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Search-Filter' + OID = '1.2.840.113556.1.4.7000.102.19' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-SSL-Port' + lDAPDisplayName = 'msExchServer1SSLPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-SSL-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-SSL-Port' + OID = '1.2.840.113556.1.4.7000.102.39' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server1-Type' + lDAPDisplayName = 'msExchServer1Type' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server1-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server1-Type' + OID = '1.2.840.113556.1.4.7000.102.23' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Always-Create-As' + lDAPDisplayName = 'msExchServer2AlwaysCreateAs' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Always-Create-As' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Always-Create-As' + OID = '1.2.840.113556.1.4.7000.102.28' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Authentication-Credentials' + lDAPDisplayName = 'msExchServer2AuthenticationCredentials' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Authentication-Credentials' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Authentication-Credentials' + OID = '1.2.840.113556.1.4.7000.102.10' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server2-Authentication-Password' + lDAPDisplayName = 'msExchServer2AuthenticationPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Authentication-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Authentication-Password' + OID = '1.2.840.113556.1.4.7000.102.12' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Authentication-Type' + lDAPDisplayName = 'msExchServer2AuthenticationType' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Authentication-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Authentication-Type' + OID = '1.2.840.113556.1.4.7000.102.8' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Deletion-Option' + lDAPDisplayName = 'msExchServer2DeletionOption' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Deletion-Option' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Deletion-Option' + OID = '1.2.840.113556.1.4.7000.102.22' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Export-Containers' + lDAPDisplayName = 'msExchServer2ExportContainers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Export-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server2-Export-Containers' + OID = '1.2.840.113556.1.4.7000.102.14' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Flags' + lDAPDisplayName = 'msExchServer2Flags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Flags' + OID = '1.2.840.113556.1.4.7000.102.62' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Server2-Highest-USN' + lDAPDisplayName = 'msExchServer2HighestUSN' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Highest-USN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Highest-USN' + OID = '1.2.840.113556.1.4.7000.102.30' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Highest-USN-Vector' + lDAPDisplayName = 'msExchServer2HighestUSNVector' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Highest-USN-Vector' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server2-Highest-USN-Vector' + OID = '1.2.840.113556.1.4.7000.102.87' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Import-Container' + lDAPDisplayName = 'msExchServer2ImportContainer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Import-Container' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Import-Container' + OID = '1.2.840.113556.1.4.7000.102.16' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Server2-Is-Bridgehead' + lDAPDisplayName = 'msExchServer2IsBridgehead' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Is-Bridgehead' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Is-Bridgehead' + OID = '1.2.840.113556.1.4.7000.102.78' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Server2-Last-Update-Time' + lDAPDisplayName = 'msExchServer2LastUpdateTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Last-Update-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Last-Update-Time' + OID = '1.2.840.113556.1.4.7000.102.32' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Network-Address' + lDAPDisplayName = 'msExchServer2NetworkAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Network-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Network-Address' + OID = '1.2.840.113556.1.4.7000.102.4' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-NT-Account-Domain' + lDAPDisplayName = 'msExchServer2NTAccountDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-NT-Account-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-NT-Account-Domain' + OID = '1.2.840.113556.1.4.7000.102.51' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Object-Match' + lDAPDisplayName = 'msExchServer2ObjectMatch' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Object-Match' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Object-Match' + OID = '1.2.840.113556.1.4.7000.102.55' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Page-Size' + lDAPDisplayName = 'msExchServer2PageSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Page-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Page-Size' + OID = '1.2.840.113556.1.4.7000.102.26' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Port' + lDAPDisplayName = 'msExchServer2Port' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Port' + OID = '1.2.840.113556.1.4.7000.102.6' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Schema-Map' + lDAPDisplayName = 'msExchServer2SchemaMap' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Schema-Map' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Schema-Map' + OID = '1.2.840.113556.1.4.7000.102.18' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server2-Search-Filter' + lDAPDisplayName = 'msExchServer2SearchFilter' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Search-Filter' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Search-Filter' + OID = '1.2.840.113556.1.4.7000.102.20' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-SSL-Port' + lDAPDisplayName = 'msExchServer2SSLPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-SSL-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-SSL-Port' + OID = '1.2.840.113556.1.4.7000.102.40' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server2-Type' + lDAPDisplayName = 'msExchServer2Type' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server2-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server2-Type' + OID = '1.2.840.113556.1.4.7000.102.24' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Admin-Delegation-BL' + lDAPDisplayName = 'msExchServerAdminDelegationBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Admin-Delegation-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Admin-Delegation-BL' + OID = '1.2.840.113556.1.4.7000.102.50640' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Admin-Delegation-Link' + lDAPDisplayName = 'msExchServerAdminDelegationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Admin-Delegation-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Admin-Delegation-Link' + OID = '1.2.840.113556.1.4.7000.102.50639' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Association-BL' + lDAPDisplayName = 'msExchServerAssociationBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Association-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Association-BL' + OID = '1.2.840.113556.1.4.7000.102.51248' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Association-Link' + lDAPDisplayName = 'msExchServerAssociationLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Association-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Association-Link' + OID = '1.2.840.113556.1.4.7000.102.51247' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Server-Auto-Start' + lDAPDisplayName = 'msExchServerAutoStart' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Auto-Start' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Auto-Start' + OID = '1.2.840.113556.1.4.7000.102.2007' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Bindings' + lDAPDisplayName = 'msExchServerBindings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Bindings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Bindings' + OID = '1.2.840.113556.1.4.7000.102.2001' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Bindings-Filtering' + lDAPDisplayName = 'msExchServerBindingsFiltering' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Bindings-Filtering' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Bindings-Filtering' + OID = '1.2.840.113556.1.4.7000.102.5072' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Bindings-Turflist' + lDAPDisplayName = 'msExchServerBindingsTurflist' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Bindings-Turflist' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Bindings-Turflist' + OID = '1.2.840.113556.1.4.7000.102.12533' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server-EKPK-Public-Key' + lDAPDisplayName = 'msExchServerEKPKPublicKey' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-EKPK-Public-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-EKPK-Public-Key' + OID = '1.2.840.113556.1.4.7000.102.50757' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server-Encrypted-KPK' + lDAPDisplayName = 'msExchServerEncryptedKPK' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Encrypted-KPK' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Encrypted-KPK' + OID = '1.2.840.113556.1.4.7000.102.50755' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Fault-Zone' + lDAPDisplayName = 'msExchServerFaultZone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Fault-Zone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Fault-Zone' + OID = '1.2.840.113556.1.4.7000.102.51970' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Global-Groups' + lDAPDisplayName = 'msExchServerGlobalGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Global-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Global-Groups' + OID = '1.2.840.113556.1.4.7000.102.50083' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Groups' + lDAPDisplayName = 'msExchServerGroups' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Groups' + OID = '1.2.840.113556.1.4.7000.102.50055' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server-Internal-TLS-Cert' + lDAPDisplayName = 'msExchServerInternalTLSCert' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Internal-TLS-Cert' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Internal-TLS-Cert' + OID = '1.2.840.113556.1.4.7000.102.50758' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Local-Groups' + lDAPDisplayName = 'msExchServerLocalGroups' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Local-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Local-Groups' + OID = '1.2.840.113556.1.4.7000.102.50082' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Server-Public-Key' + lDAPDisplayName = 'msExchServerPublicKey' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Public-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Public-Key' + OID = '1.2.840.113556.1.4.7000.102.50063' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Server-Redundant-Machines' + lDAPDisplayName = 'msExchServerRedundantMachines' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Redundant-Machines' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Redundant-Machines' + OID = '1.2.840.113556.1.4.7000.102.50676' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Server-Role' + lDAPDisplayName = 'msExchServerRole' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Role' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Role' + OID = '1.2.840.113556.1.4.7000.102.15006' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Site' + lDAPDisplayName = 'msExchServerSite' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Server-Site' + OID = '1.2.840.113556.1.4.7000.102.50837' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Server-Site-BL' + lDAPDisplayName = 'msExchServerSiteBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Server-Site-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Server-Site-BL' + OID = '1.2.840.113556.1.4.7000.102.51469' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Service-End-Point-URL' + lDAPDisplayName = 'msExchServiceEndPointURL' + oMSyntax = 19 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-End-Point-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-End-Point-URL' + OID = '1.2.840.113556.1.4.7000.102.52010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Service-Plan' + lDAPDisplayName = 'msExchServicePlan' + oMSyntax = 64 + Optional = $True + searchFlags = 33 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Plan' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Plan' + OID = '1.2.840.113556.1.4.7000.102.51234' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Setup-Status' + lDAPDisplayName = 'msExchSetupStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Setup-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Setup-Status' + OID = '1.2.840.113556.1.4.7000.102.51061' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Setup-Time' + lDAPDisplayName = 'msExchSetupTime' + oMSyntax = 24 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Setup-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Setup-Time' + OID = '1.2.840.113556.1.4.7000.102.51249' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Assistant-Name' + lDAPDisplayName = 'msExchShadowAssistantName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Assistant-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Assistant-Name' + OID = '1.2.840.113556.1.4.7000.102.51700' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-C' + lDAPDisplayName = 'msExchShadowC' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-C' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-C' + OID = '1.2.840.113556.1.4.7000.102.51688' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Co' + lDAPDisplayName = 'msExchShadowCo' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Co' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Co' + OID = '1.2.840.113556.1.4.7000.102.51689' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Company' + lDAPDisplayName = 'msExchShadowCompany' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Company' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Company' + OID = '1.2.840.113556.1.4.7000.102.51761' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Shadow-Country-Code' + lDAPDisplayName = 'msExchShadowCountryCode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Shadow-Country-Code' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Country-Code' + OID = '1.2.840.113556.1.4.7000.102.51690' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Department' + lDAPDisplayName = 'msExchShadowDepartment' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Department' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Department' + OID = '1.2.840.113556.1.4.7000.102.51691' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Display-Name' + lDAPDisplayName = 'msExchShadowDisplayName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Display-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Display-Name' + OID = '1.2.840.113556.1.4.7000.102.51692' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Facsimile-Telephone-Number' + lDAPDisplayName = 'msExchShadowFacsimileTelephoneNumber' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Facsimile-Telephone-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Facsimile-Telephone-Number' + OID = '1.2.840.113556.1.4.7000.102.51693' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Given-Name' + lDAPDisplayName = 'msExchShadowGivenName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Given-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Given-Name' + OID = '1.2.840.113556.1.4.7000.102.51694' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Home-Phone' + lDAPDisplayName = 'msExchShadowHomePhone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Home-Phone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Home-Phone' + OID = '1.2.840.113556.1.4.7000.102.51695' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Info' + lDAPDisplayName = 'msExchShadowInfo' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Info' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Info' + OID = '1.2.840.113556.1.4.7000.102.51696' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Initials' + lDAPDisplayName = 'msExchShadowInitials' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Initials' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Initials' + OID = '1.2.840.113556.1.4.7000.102.51762' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-L' + lDAPDisplayName = 'msExchShadowL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-L' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-L' + OID = '1.2.840.113556.1.4.7000.102.51697' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Mail-Nickname' + lDAPDisplayName = 'msExchShadowMailNickname' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Mail-Nickname' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Mail-Nickname' + OID = '1.2.840.113556.1.4.7000.102.51698' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Shadow-Manager-Link' + lDAPDisplayName = 'msExchShadowManagerLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Manager-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Manager-Link' + OID = '1.2.840.113556.1.4.7000.102.51747' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Mobile' + lDAPDisplayName = 'msExchShadowMobile' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Mobile' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Mobile' + OID = '1.2.840.113556.1.4.7000.102.51699' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Other-Facsimile-Telephone' + lDAPDisplayName = 'msExchShadowOtherFacsimileTelephone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Other-Facsimile-Telephone' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Shadow-Other-Facsimile-Telephone' + OID = '1.2.840.113556.1.4.7000.102.51701' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Other-Home-Phone' + lDAPDisplayName = 'msExchShadowOtherHomePhone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Other-Home-Phone' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Shadow-Other-Home-Phone' + OID = '1.2.840.113556.1.4.7000.102.51702' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Other-Telephone' + lDAPDisplayName = 'msExchShadowOtherTelephone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Other-Telephone' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Shadow-Other-Telephone' + OID = '1.2.840.113556.1.4.7000.102.51703' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Pager' + lDAPDisplayName = 'msExchShadowPager' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Pager' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Pager' + OID = '1.2.840.113556.1.4.7000.102.51704' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Physical-Delivery-Office-Name' + lDAPDisplayName = 'msExchShadowPhysicalDeliveryOfficeName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Physical-Delivery-Office-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Physical-Delivery-Office-Name' + OID = '1.2.840.113556.1.4.7000.102.51705' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Postal-Code' + lDAPDisplayName = 'msExchShadowPostalCode' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Postal-Code' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Postal-Code' + OID = '1.2.840.113556.1.4.7000.102.51706' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Proxy-Addresses' + lDAPDisplayName = 'msExchShadowProxyAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Proxy-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Shadow-Proxy-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51707' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Sn' + lDAPDisplayName = 'msExchShadowSn' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Sn' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Sn' + OID = '1.2.840.113556.1.4.7000.102.51708' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-St' + lDAPDisplayName = 'msExchShadowSt' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-St' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-St' + OID = '1.2.840.113556.1.4.7000.102.51709' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Street-Address' + lDAPDisplayName = 'msExchShadowStreetAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Street-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Street-Address' + OID = '1.2.840.113556.1.4.7000.102.51710' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Telephone-Assistant' + lDAPDisplayName = 'msExchShadowTelephoneAssistant' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Telephone-Assistant' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Telephone-Assistant' + OID = '1.2.840.113556.1.4.7000.102.51711' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Telephone-Number' + lDAPDisplayName = 'msExchShadowTelephoneNumber' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Telephone-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Telephone-Number' + OID = '1.2.840.113556.1.4.7000.102.51712' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Title' + lDAPDisplayName = 'msExchShadowTitle' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Title' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Title' + OID = '1.2.840.113556.1.4.7000.102.51713' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Shadow-When-Soft-Deleted-Time' + lDAPDisplayName = 'msExchShadowWhenSoftDeletedTime' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-When-Soft-Deleted-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-When-Soft-Deleted-Time' + OID = '1.2.840.113556.1.4.7000.102.51996' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-Windows-Live-ID' + lDAPDisplayName = 'msExchShadowWindowsLiveID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-Windows-Live-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-Windows-Live-ID' + OID = '1.2.840.113556.1.4.7000.102.51714' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shadow-WWW-Home-Page' + lDAPDisplayName = 'msExchShadowWWWHomePage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Shadow-WWW-Home-Page' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shadow-WWW-Home-Page' + OID = '1.2.840.113556.1.4.7000.102.51715' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Shared-Config-BL' + lDAPDisplayName = 'msExchSharedConfigBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Shared-Config-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Shared-Config-BL' + OID = '1.2.840.113556.1.4.7000.102.51641' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Shared-Config-Link' + lDAPDisplayName = 'msExchSharedConfigLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Shared-Config-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shared-Config-Link' + OID = '1.2.840.113556.1.4.7000.102.51640' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shared-Config-Service-Plan-Tag' + lDAPDisplayName = 'msExchSharedConfigServicePlanTag' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Shared-Config-Service-Plan-Tag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shared-Config-Service-Plan-Tag' + OID = '1.2.840.113556.1.4.7000.102.51645' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Shared-Identity-Server-Box-RAC' + lDAPDisplayName = 'msExchSharedIdentityServerBoxRAC' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Shared-Identity-Server-Box-RAC' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Shared-Identity-Server-Box-RAC' + OID = '1.2.840.113556.1.4.7000.102.51639' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sharing-Anonymous-Identities' + lDAPDisplayName = 'msExchSharingAnonymousIdentities' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sharing-Anonymous-Identities' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sharing-Anonymous-Identities' + OID = '1.2.840.113556.1.4.7000.102.51624' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Sharing-Default-Policy-Link' + lDAPDisplayName = 'msExchSharingDefaultPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Default-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Default-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51392' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sharing-Partner-Identities' + lDAPDisplayName = 'msExchSharingPartnerIdentities' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sharing-Partner-Identities' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sharing-Partner-Identities' + OID = '1.2.840.113556.1.4.7000.102.51031' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sharing-Policy-Domains' + lDAPDisplayName = 'msExchSharingPolicyDomains' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Policy-Domains' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Sharing-Policy-Domains' + OID = '1.2.840.113556.1.4.7000.102.51264' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Sharing-Policy-Is-Enabled' + lDAPDisplayName = 'msExchSharingPolicyIsEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Policy-Is-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Policy-Is-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51321' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Sharing-Policy-Link' + lDAPDisplayName = 'msExchSharingPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sharing-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51266' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Sharing-Relationship-For-External-Organization-Email' + lDAPDisplayName = 'msExchSharingRelationshipForExternalOrganizationEmail' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sharing-Relationship-For-External-Organization-Email' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sharing-Relationship-For-External-Organization-Email' + OID = '1.2.840.113556.1.4.7000.102.51319' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Signup-Addresses' + lDAPDisplayName = 'msExchSignupAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Signup-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Signup-Addresses' + OID = '1.2.840.113556.1.4.7000.102.50990' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Signup-Addresses-Enabled' + lDAPDisplayName = 'msExchSignupAddressesEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Signup-Addresses-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Signup-Addresses-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50991' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SIP-Access-Service' + lDAPDisplayName = 'msExchSIPAccessService' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SIP-Access-Service' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SIP-Access-Service' + OID = '1.2.840.113556.1.4.7000.102.51582' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SIP-SBC-Service' + lDAPDisplayName = 'msExchSIPSBCService' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SIP-SBC-Service' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SIP-SBC-Service' + OID = '1.2.840.113556.1.4.7000.102.51722' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-SLV-File' + lDAPDisplayName = 'msExchSLVFile' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SLV-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SLV-File' + OID = '1.2.840.113556.1.4.7000.102.11036' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Authorized-TRN-Accounts' + lDAPDisplayName = 'msExchSmtpAuthorizedTRNAccounts' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Authorized-TRN-Accounts' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Authorized-TRN-Accounts' + OID = '1.2.840.113556.1.4.7000.102.5047' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Bad-Mail-Directory' + lDAPDisplayName = 'msExchSmtpBadMailDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Bad-Mail-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Bad-Mail-Directory' + OID = '1.2.840.113556.1.4.7000.102.5025' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Smtp-Connection-Rules-Priority' + lDAPDisplayName = 'msExchSmtpConnectionRulesPriority' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Rules-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Rules-Priority' + OID = '1.2.840.113556.1.4.7000.102.5064' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Connection-Turf-List-Display' + lDAPDisplayName = 'msExchSmtpConnectionTurfListDisplay' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Turf-List-Display' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Turf-List-Display' + OID = '1.2.840.113556.1.4.7000.102.5065' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Connection-Turf-List-DNS' + lDAPDisplayName = 'msExchSmtpConnectionTurfListDNS' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Turf-List-DNS' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Turf-List-DNS' + OID = '1.2.840.113556.1.4.7000.102.5067' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Connection-Turf-List-Mask' + lDAPDisplayName = 'msExchSmtpConnectionTurfListMask' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Turf-List-Mask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Turf-List-Mask' + OID = '1.2.840.113556.1.4.7000.102.5069' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Connection-Turf-List-Options' + lDAPDisplayName = 'msExchSmtpConnectionTurfListOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Turf-List-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Turf-List-Options' + OID = '1.2.840.113556.1.4.7000.102.5066' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Connection-Turf-List-Response' + lDAPDisplayName = 'msExchSmtpConnectionTurfListResponse' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Turf-List-Response' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Connection-Turf-List-Response' + OID = '1.2.840.113556.1.4.7000.102.5068' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Connection-Whitelist' + lDAPDisplayName = 'msExchSmtpConnectionWhitelist' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Connection-Whitelist' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Connection-Whitelist' + OID = '1.2.840.113556.1.4.7000.102.5063' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Domain-String' + lDAPDisplayName = 'msExchSmtpDomainString' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Domain-String' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Domain-String' + OID = '1.2.840.113556.1.4.7000.102.5033' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Do-Masquerade' + lDAPDisplayName = 'msExchSmtpDoMasquerade' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Do-Masquerade' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Do-Masquerade' + OID = '1.2.840.113556.1.4.7000.102.5022' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Drop-Directory' + lDAPDisplayName = 'msExchSmtpDropDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Drop-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Drop-Directory' + OID = '1.2.840.113556.1.4.7000.102.5032' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ds-Data-Directory' + lDAPDisplayName = 'msExchSmtpDsDataDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Data-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Data-Directory' + OID = '1.2.840.113556.1.4.7000.102.5036' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ds-Default-Mail-Root' + lDAPDisplayName = 'msExchSmtpDsDefaultMailRoot' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Default-Mail-Root' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Default-Mail-Root' + OID = '1.2.840.113556.1.4.7000.102.5037' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ds-Domain' + lDAPDisplayName = 'msExchSmtpDsDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Domain' + OID = '1.2.840.113556.1.4.7000.102.5038' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Ds-Flags' + lDAPDisplayName = 'msExchSmtpDsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Flags' + OID = '1.2.840.113556.1.4.7000.102.5049' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ds-Host' + lDAPDisplayName = 'msExchSmtpDsHost' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Host' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Host' + OID = '1.2.840.113556.1.4.7000.102.5042' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Ds-Port' + lDAPDisplayName = 'msExchSmtpDsPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ds-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ds-Port' + OID = '1.2.840.113556.1.4.7000.102.5017' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Enable-EXPN' + lDAPDisplayName = 'msExchSmtpEnableEXPN' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Enable-EXPN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Enable-EXPN' + OID = '1.2.840.113556.1.4.7000.102.12537' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Enable-Ldap-Routing' + lDAPDisplayName = 'msExchSmtpEnableLdapRouting' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Enable-Ldap-Routing' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Enable-Ldap-Routing' + OID = '1.2.840.113556.1.4.7000.102.5019' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Enable-VRFY' + lDAPDisplayName = 'msExchSmtpEnableVRFY' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Enable-VRFY' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Enable-VRFY' + OID = '1.2.840.113556.1.4.7000.102.12536' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-SMTP-Extended-Protection-Policy' + lDAPDisplayName = 'msExchSMTPExtendedProtectionPolicy' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Extended-Protection-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Extended-Protection-Policy' + OID = '1.2.840.113556.1.4.7000.102.51670' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-External-DNS-Servers' + lDAPDisplayName = 'msExchSmtpExternalDNSServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-External-DNS-Servers' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-External-DNS-Servers' + OID = '1.2.840.113556.1.4.7000.102.5056' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Fully-Qualified-Domain-Name' + lDAPDisplayName = 'msExchSmtpFullyQualifiedDomainName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Fully-Qualified-Domain-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Fully-Qualified-Domain-Name' + OID = '1.2.840.113556.1.4.7000.102.5029' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-SMTP-Global-IP-Accept-List' + lDAPDisplayName = 'msExchSMTPGlobalIPAcceptList' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Global-IP-Accept-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Global-IP-Accept-List' + OID = '1.2.840.113556.1.4.7000.102.5073' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-SMTP-Global-IP-Deny-List' + lDAPDisplayName = 'msExchSMTPGlobalIPDenyList' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Global-IP-Deny-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Global-IP-Deny-List' + OID = '1.2.840.113556.1.4.7000.102.5074' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Inbound-Command-Support-Options' + lDAPDisplayName = 'msExchSmtpInboundCommandSupportOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Inbound-Command-Support-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Inbound-Command-Support-Options' + OID = '1.2.840.113556.1.4.7000.102.5018' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ldap-Account' + lDAPDisplayName = 'msExchSmtpLdapAccount' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ldap-Account' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ldap-Account' + OID = '1.2.840.113556.1.4.7000.102.5044' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ldap-Bind-Type' + lDAPDisplayName = 'msExchSmtpLdapBindType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ldap-Bind-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ldap-Bind-Type' + OID = '1.2.840.113556.1.4.7000.102.5040' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ldap-Naming-Context' + lDAPDisplayName = 'msExchSmtpLdapNamingContext' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ldap-Naming-Context' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ldap-Naming-Context' + OID = '1.2.840.113556.1.4.7000.102.5043' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ldap-Password' + lDAPDisplayName = 'msExchSmtpLdapPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ldap-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ldap-Password' + OID = '1.2.840.113556.1.4.7000.102.5045' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Ldap-Schema-Type' + lDAPDisplayName = 'msExchSmtpLdapSchemaType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Ldap-Schema-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Ldap-Schema-Type' + OID = '1.2.840.113556.1.4.7000.102.5041' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Local-Queue-Delay-Notification' + lDAPDisplayName = 'msExchSmtpLocalQueueDelayNotification' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Local-Queue-Delay-Notification' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Local-Queue-Delay-Notification' + OID = '1.2.840.113556.1.4.7000.102.5011' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Local-Queue-Expiration-Timeout' + lDAPDisplayName = 'msExchSmtpLocalQueueExpirationTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Local-Queue-Expiration-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Local-Queue-Expiration-Timeout' + OID = '1.2.840.113556.1.4.7000.102.5010' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Masquerade-Domain' + lDAPDisplayName = 'msExchSmtpMasqueradeDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Masquerade-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Masquerade-Domain' + OID = '1.2.840.113556.1.4.7000.102.5026' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Hop-Count' + lDAPDisplayName = 'msExchSmtpMaxHopCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Hop-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Hop-Count' + OID = '1.2.840.113556.1.4.7000.102.5006' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Message-Size' + lDAPDisplayName = 'msExchSmtpMaxMessageSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Message-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Message-Size' + OID = '1.2.840.113556.1.4.7000.102.5007' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Messages-Per-Connection' + lDAPDisplayName = 'msExchSmtpMaxMessagesPerConnection' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Messages-Per-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Messages-Per-Connection' + OID = '1.2.840.113556.1.4.7000.102.51437' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain' + lDAPDisplayName = 'msExchSmtpMaxOutboundMsgPerDomain' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain' + OID = '1.2.840.113556.1.4.7000.102.5015' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain-Flag' + lDAPDisplayName = 'msExchSmtpMaxOutboundMsgPerDomainFlag' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain-Flag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Outbound-Msg-Per-Domain-Flag' + OID = '1.2.840.113556.1.4.7000.102.5023' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Outgoing-Connections' + lDAPDisplayName = 'msExchSmtpMaxOutgoingConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Outgoing-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Outgoing-Connections' + OID = '1.2.840.113556.1.4.7000.102.5001' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Outgoing-Connections-Per-Domain' + lDAPDisplayName = 'msExchSmtpMaxOutgoingConnectionsPerDomain' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Outgoing-Connections-Per-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Outgoing-Connections-Per-Domain' + OID = '1.2.840.113556.1.4.7000.102.5003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Recipients' + lDAPDisplayName = 'msExchSmtpMaxRecipients' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Recipients' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Recipients' + OID = '1.2.840.113556.1.4.7000.102.5009' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Max-Session-Size' + lDAPDisplayName = 'msExchSmtpMaxSessionSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Max-Session-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Max-Session-Size' + OID = '1.2.840.113556.1.4.7000.102.5008' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Outbound-Security-Flag' + lDAPDisplayName = 'msExchSmtpOutboundSecurityFlag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outbound-Security-Flag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outbound-Security-Flag' + OID = '1.2.840.113556.1.4.7000.102.5016' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Outbound-Security-Password' + lDAPDisplayName = 'msExchSmtpOutboundSecurityPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outbound-Security-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outbound-Security-Password' + OID = '1.2.840.113556.1.4.7000.102.5035' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Outbound-Security-User-Name' + lDAPDisplayName = 'msExchSmtpOutboundSecurityUserName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outbound-Security-User-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outbound-Security-User-Name' + OID = '1.2.840.113556.1.4.7000.102.5034' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Outgoing-Connection-Timeout' + lDAPDisplayName = 'msExchSmtpOutgoingConnectionTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outgoing-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outgoing-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.5002' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Outgoing-Port' + lDAPDisplayName = 'msExchSmtpOutgoingPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outgoing-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outgoing-Port' + OID = '1.2.840.113556.1.4.7000.102.5004' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Outgoing-Secure-Port' + lDAPDisplayName = 'msExchSmtpOutgoingSecurePort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Outgoing-Secure-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Outgoing-Secure-Port' + OID = '1.2.840.113556.1.4.7000.102.5005' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Perform-Reverse-Dns-Lookup' + lDAPDisplayName = 'msExchSmtpPerformReverseDnsLookup' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Perform-Reverse-Dns-Lookup' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Perform-Reverse-Dns-Lookup' + OID = '1.2.840.113556.1.4.7000.102.5021' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Pickup-Directory' + lDAPDisplayName = 'msExchSmtpPickupDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Pickup-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Pickup-Directory' + OID = '1.2.840.113556.1.4.7000.102.5030' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Queue-Directory' + lDAPDisplayName = 'msExchSmtpQueueDirectory' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Queue-Directory' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Queue-Directory' + OID = '1.2.840.113556.1.4.7000.102.5031' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Advertised-Domain' + lDAPDisplayName = 'msExchSmtpReceiveAdvertisedDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Advertised-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Advertised-Domain' + OID = '1.2.840.113556.1.4.7000.102.50539' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Banner' + lDAPDisplayName = 'msExchSmtpReceiveBanner' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Banner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Banner' + OID = '1.2.840.113556.1.4.7000.102.50556' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Bindings' + lDAPDisplayName = 'msExchSmtpReceiveBindings' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Bindings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Receive-Bindings' + OID = '1.2.840.113556.1.4.7000.102.50540' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Connection-Inactivity-Timeout' + lDAPDisplayName = 'msExchSmtpReceiveConnectionInactivityTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Connection-Inactivity-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Connection-Inactivity-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50868' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Connection-Timeout' + lDAPDisplayName = 'msExchSmtpReceiveConnectionTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50543' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMTP-Receive-Connector-FQDN' + lDAPDisplayName = 'msExchSMTPReceiveConnectorFQDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Connector-FQDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Connector-FQDN' + OID = '1.2.840.113556.1.4.7000.102.50803' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-BL' + lDAPDisplayName = 'msExchSMTPReceiveDefaultAcceptedDomainBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-BL' + OID = '1.2.840.113556.1.4.7000.102.51482' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-Link' + lDAPDisplayName = 'msExchSMTPReceiveDefaultAcceptedDomainLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Default-Accepted-Domain-Link' + OID = '1.2.840.113556.1.4.7000.102.50804' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Receive-Enabled' + lDAPDisplayName = 'msExchSmtpReceiveEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50542' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMTP-Receive-Externally-Secured-As' + lDAPDisplayName = 'msExchSMTPReceiveExternallySecuredAs' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Externally-Secured-As' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Externally-Secured-As' + OID = '1.2.840.113556.1.4.7000.102.50802' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-SMTP-Receive-Inbound-Security-Flag' + lDAPDisplayName = 'msExchSMTPReceiveInboundSecurityFlag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Inbound-Security-Flag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Inbound-Security-Flag' + OID = '1.2.840.113556.1.4.7000.102.50807' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Acknowledgement-Delay' + lDAPDisplayName = 'msExchSmtpReceiveMaxAcknowledgementDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Acknowledgement-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Acknowledgement-Delay' + OID = '1.2.840.113556.1.4.7000.102.51163' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Connection-Rate-Per-Minute' + lDAPDisplayName = 'msExchSmtpReceiveMaxConnectionRatePerMinute' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Connection-Rate-Per-Minute' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Connection-Rate-Per-Minute' + OID = '1.2.840.113556.1.4.7000.102.50869' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Header-Size' + lDAPDisplayName = 'msExchSmtpReceiveMaxHeaderSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Header-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Header-Size' + OID = '1.2.840.113556.1.4.7000.102.50546' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Hop-Count' + lDAPDisplayName = 'msExchSmtpReceiveMaxHopCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Hop-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Hop-Count' + OID = '1.2.840.113556.1.4.7000.102.50547' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections' + lDAPDisplayName = 'msExchSmtpReceiveMaxInboundConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections' + OID = '1.2.840.113556.1.4.7000.102.50544' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-SMTP-Receive-Max-Inbound-Connections-Perc-Per-Source' + lDAPDisplayName = 'msExchSMTPReceiveMaxInboundConnectionsPercPerSource' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Max-Inbound-Connections-Perc-Per-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Max-Inbound-Connections-Perc-Per-Source' + OID = '1.2.840.113556.1.4.7000.102.50806' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections-Per-Source' + lDAPDisplayName = 'msExchSmtpReceiveMaxInboundConnectionsPerSource' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections-Per-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Inbound-Connections-Per-Source' + OID = '1.2.840.113556.1.4.7000.102.50545' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Local-Hop-Count' + lDAPDisplayName = 'msExchSmtpReceiveMaxLocalHopCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Local-Hop-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Local-Hop-Count' + OID = '1.2.840.113556.1.4.7000.102.50548' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Logon-Failures' + lDAPDisplayName = 'msExchSmtpReceiveMaxLogonFailures' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Logon-Failures' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Logon-Failures' + OID = '1.2.840.113556.1.4.7000.102.50549' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Message-Size' + lDAPDisplayName = 'msExchSmtpReceiveMaxMessageSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Message-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Message-Size' + OID = '1.2.840.113556.1.4.7000.102.50550' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Messages-Per-Connection' + lDAPDisplayName = 'msExchSmtpReceiveMaxMessagesPerConnection' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Messages-Per-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Messages-Per-Connection' + OID = '1.2.840.113556.1.4.7000.102.50551' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Protocol-Errors' + lDAPDisplayName = 'msExchSmtpReceiveMaxProtocolErrors' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Protocol-Errors' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Protocol-Errors' + OID = '1.2.840.113556.1.4.7000.102.50552' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Max-Recipients-Per-Message' + lDAPDisplayName = 'msExchSmtpReceiveMaxRecipientsPerMessage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Max-Recipients-Per-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Max-Recipients-Per-Message' + OID = '1.2.840.113556.1.4.7000.102.50553' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-SMTP-Receive-Message-Rate-Source' + lDAPDisplayName = 'msExchSMTPReceiveMessageRateSource' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Message-Rate-Source' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Message-Rate-Source' + OID = '1.2.840.113556.1.4.7000.102.51274' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMTP-Receive-Postmaster-Address' + lDAPDisplayName = 'msExchSMTPReceivePostmasterAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Postmaster-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Postmaster-Address' + OID = '1.2.840.113556.1.4.7000.102.50805' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Protocol-Logging-Level' + lDAPDisplayName = 'msExchSmtpReceiveProtocolLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Protocol-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Protocol-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.50554' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Protocol-Options' + lDAPDisplayName = 'msExchSmtpReceiveProtocolOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Protocol-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Protocol-Options' + OID = '1.2.840.113556.1.4.7000.102.50559' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Protocol-Restrictions' + lDAPDisplayName = 'msExchSmtpReceiveProtocolRestrictions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Protocol-Restrictions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Protocol-Restrictions' + OID = '1.2.840.113556.1.4.7000.102.50560' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-SMTP-Receive-Relay-Control' + lDAPDisplayName = 'msExchSMTPReceiveRelayControl' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Relay-Control' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Relay-Control' + OID = '1.2.840.113556.1.4.7000.102.50688' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Remote-IP-Ranges' + lDAPDisplayName = 'msExchSmtpReceiveRemoteIPRanges' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Remote-IP-Ranges' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Receive-Remote-IP-Ranges' + OID = '1.2.840.113556.1.4.7000.102.50555' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Role' + lDAPDisplayName = 'msExchSmtpReceiveRole' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Role' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Role' + OID = '1.2.840.113556.1.4.7000.102.51988' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-Smtp-Receive-Security-Descriptor' + lDAPDisplayName = 'msExchSmtpReceiveSecurityDescriptor' + oMSyntax = 66 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Security-Descriptor' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Security-Descriptor' + OID = '1.2.840.113556.1.4.7000.102.50561' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-SMTP-Receive-Sender-Domain' + lDAPDisplayName = 'msExchSMTPReceiveSenderDomain' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Receive-Sender-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Receive-Sender-Domain' + OID = '1.2.840.113556.1.4.7000.102.51989' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Tarpit-Interval' + lDAPDisplayName = 'msExchSmtpReceiveTarpitInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Tarpit-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Tarpit-Interval' + OID = '1.2.840.113556.1.4.7000.102.50557' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Tls-Certificate-Name' + lDAPDisplayName = 'msExchSmtpReceiveTlsCertificateName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Tls-Certificate-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Tls-Certificate-Name' + OID = '1.2.840.113556.1.4.7000.102.50558' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Receive-Tls-Domain-Capabilities' + lDAPDisplayName = 'msExchSmtpReceiveTlsDomainCapabilities' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Tls-Domain-Capabilities' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Receive-Tls-Domain-Capabilities' + OID = '1.2.840.113556.1.4.7000.102.51726' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Receive-Type' + lDAPDisplayName = 'msExchSmtpReceiveType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Receive-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Receive-Type' + OID = '1.2.840.113556.1.4.7000.102.50541' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Relay-For-Auth' + lDAPDisplayName = 'msExchSmtpRelayForAuth' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Relay-For-Auth' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Relay-For-Auth' + OID = '1.2.840.113556.1.4.7000.102.5020' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Smtp-Relay-Ip-List' + lDAPDisplayName = 'msExchSmtpRelayIpList' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Relay-Ip-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Relay-Ip-List' + OID = '1.2.840.113556.1.4.7000.102.5048' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Remote-Queue-Delay-Notification' + lDAPDisplayName = 'msExchSmtpRemoteQueueDelayNotification' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Remote-Queue-Delay-Notification' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Remote-Queue-Delay-Notification' + OID = '1.2.840.113556.1.4.7000.102.5013' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Remote-Queue-Expiration-Timeout' + lDAPDisplayName = 'msExchSmtpRemoteQueueExpirationTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Remote-Queue-Expiration-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Remote-Queue-Expiration-Timeout' + OID = '1.2.840.113556.1.4.7000.102.5012' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Remote-Queue-Retries' + lDAPDisplayName = 'msExchSmtpRemoteQueueRetries' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Remote-Queue-Retries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Remote-Queue-Retries' + OID = '1.2.840.113556.1.4.7000.102.5046' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Routing-Table-Type' + lDAPDisplayName = 'msExchSmtpRoutingTableType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Routing-Table-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Routing-Table-Type' + OID = '1.2.840.113556.1.4.7000.102.5039' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Send-Advertised-Domain' + lDAPDisplayName = 'msExchSmtpSendAdvertisedDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Advertised-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Advertised-Domain' + OID = '1.2.840.113556.1.4.7000.102.50532' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Send-Badmail-To' + lDAPDisplayName = 'msExchSmtpSendBadmailTo' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Badmail-To' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Badmail-To' + OID = '1.2.840.113556.1.4.7000.102.5028' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Send-Binding-IP-Address' + lDAPDisplayName = 'msExchSmtpSendBindingIPAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Binding-IP-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Binding-IP-Address' + OID = '1.2.840.113556.1.4.7000.102.50537' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Connection-Timeout' + lDAPDisplayName = 'msExchSmtpSendConnectionTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Connection-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Connection-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50534' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMTP-Send-Connector-FQDN' + lDAPDisplayName = 'msExchSMTPSendConnectorFQDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Send-Connector-FQDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Send-Connector-FQDN' + OID = '1.2.840.113556.1.4.7000.102.50831' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Smtp-Send-Enabled' + lDAPDisplayName = 'msExchSmtpSendEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50533' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMTP-Send-Externally-Secured-As' + lDAPDisplayName = 'msExchSMTPSendExternallySecuredAs' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMTP-Send-Externally-Secured-As' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMTP-Send-Externally-Secured-As' + OID = '1.2.840.113556.1.4.7000.102.50832' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Flags' + lDAPDisplayName = 'msExchSmtpSendFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Flags' + OID = '1.2.840.113556.1.4.7000.102.50535' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Ndr-Level' + lDAPDisplayName = 'msExchSmtpSendNdrLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Ndr-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Ndr-Level' + OID = '1.2.840.113556.1.4.7000.102.51725' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Send-NDR-To' + lDAPDisplayName = 'msExchSmtpSendNDRTo' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-NDR-To' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-NDR-To' + OID = '1.2.840.113556.1.4.7000.102.5027' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Port' + lDAPDisplayName = 'msExchSmtpSendPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Port' + OID = '1.2.840.113556.1.4.7000.102.50531' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Protocol-Logging-Level' + lDAPDisplayName = 'msExchSmtpSendProtocolLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Protocol-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Protocol-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.50536' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Smtp-Send-Receive-Connector-Link' + lDAPDisplayName = 'msExchSmtpSendReceiveConnectorLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Receive-Connector-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Receive-Connector-Link' + OID = '1.2.840.113556.1.4.7000.102.50538' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Send-Tls-Domain' + lDAPDisplayName = 'msExchSmtpSendTlsDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Tls-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Tls-Domain' + OID = '1.2.840.113556.1.4.7000.102.51724' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Send-Type' + lDAPDisplayName = 'msExchSmtpSendType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Send-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Send-Type' + OID = '1.2.840.113556.1.4.7000.102.50530' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Smart-Host' + lDAPDisplayName = 'msExchSmtpSmartHost' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Smart-Host' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Smart-Host' + OID = '1.2.840.113556.1.4.7000.102.5024' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Smtp-Smart-Host-Type' + lDAPDisplayName = 'msExchSmtpSmartHostType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Smart-Host-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-Smart-Host-Type' + OID = '1.2.840.113556.1.4.7000.102.5014' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-TLS-Certificate' + lDAPDisplayName = 'msExchSmtpTLSCertificate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-TLS-Certificate' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-TLS-Certificate' + OID = '1.2.840.113556.1.4.7000.102.52087' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-Tls-Senders-Certificate-Name' + lDAPDisplayName = 'msExchSmtpTlsSendersCertificateName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-Tls-Senders-Certificate-Name' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Smtp-Tls-Senders-Certificate-Name' + OID = '1.2.840.113556.1.4.7000.102.52103' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Smtp-TRN-Smart-Host' + lDAPDisplayName = 'msExchSmtpTRNSmartHost' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Smtp-TRN-Smart-Host' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Smtp-TRN-Smart-Host' + OID = '1.2.840.113556.1.4.7000.102.12531' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Source-BH-Address' + lDAPDisplayName = 'msExchSourceBHAddress' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Source-BH-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Source-BH-Address' + OID = '1.2.840.113556.1.4.7000.102.12509' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Source-Bridgehead-Servers-DN' + lDAPDisplayName = 'msExchSourceBridgeheadServersDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Source-Bridgehead-Servers-DN' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Source-Bridgehead-Servers-DN' + OID = '1.2.840.113556.1.4.7000.102.12511' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Add-Header' + lDAPDisplayName = 'msExchSpamAddHeader' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Add-Header' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Add-Header' + OID = '1.2.840.113556.1.4.7000.102.51882' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Allowed-IP-Ranges' + lDAPDisplayName = 'msExchSpamAllowedIPRanges' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Allowed-IP-Ranges' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Allowed-IP-Ranges' + OID = '1.2.840.113556.1.4.7000.102.51986' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Spam-Asf-Settings' + lDAPDisplayName = 'msExchSpamAsfSettings' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Asf-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Asf-Settings' + OID = '1.2.840.113556.1.4.7000.102.51881' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Asf-Test-Bcc-Address' + lDAPDisplayName = 'msExchSpamAsfTestBccAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Asf-Test-Bcc-Address' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Asf-Test-Bcc-Address' + OID = '1.2.840.113556.1.4.7000.102.51921' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Blocked-IP-Ranges' + lDAPDisplayName = 'msExchSpamBlockedIPRanges' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Blocked-IP-Ranges' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Blocked-IP-Ranges' + OID = '1.2.840.113556.1.4.7000.102.51987' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Country-Block-List' + lDAPDisplayName = 'msExchSpamCountryBlockList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Country-Block-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Country-Block-List' + OID = '1.2.840.113556.1.4.7000.102.52003' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Spam-Digest-Frequency' + lDAPDisplayName = 'msExchSpamDigestFrequency' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Digest-Frequency' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Digest-Frequency' + OID = '1.2.840.113556.1.4.7000.102.52032' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-False-Positive-Cc' + lDAPDisplayName = 'msExchSpamFalsePositiveCc' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-False-Positive-Cc' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-False-Positive-Cc' + OID = '1.2.840.113556.1.4.7000.102.51918' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Spam-Flags' + lDAPDisplayName = 'msExchSpamFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Flags' + OID = '1.2.840.113556.1.4.7000.102.51920' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Language-Block-List' + lDAPDisplayName = 'msExchSpamLanguageBlockList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Language-Block-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Language-Block-List' + OID = '1.2.840.113556.1.4.7000.102.52002' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Modify-Subject' + lDAPDisplayName = 'msExchSpamModifySubject' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Modify-Subject' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Modify-Subject' + OID = '1.2.840.113556.1.4.7000.102.51916' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Notify-Outbound-Recipients' + lDAPDisplayName = 'msExchSpamNotifyOutboundRecipients' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Notify-Outbound-Recipients' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Notify-Outbound-Recipients' + OID = '1.2.840.113556.1.4.7000.102.52001' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Outbound-Spam-Cc' + lDAPDisplayName = 'msExchSpamOutboundSpamCc' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Outbound-Spam-Cc' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Outbound-Spam-Cc' + OID = '1.2.840.113556.1.4.7000.102.51919' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Spam-Quarantine-Retention' + lDAPDisplayName = 'msExchSpamQuarantineRetention' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Quarantine-Retention' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Spam-Quarantine-Retention' + OID = '1.2.840.113556.1.4.7000.102.52033' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Spam-Redirect-Address' + lDAPDisplayName = 'msExchSpamRedirectAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Spam-Redirect-Address' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Spam-Redirect-Address' + OID = '1.2.840.113556.1.4.7000.102.51917' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Standby-Copy-Machines' + lDAPDisplayName = 'msExchStandbyCopyMachines' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Standby-Copy-Machines' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Standby-Copy-Machines' + OID = '1.2.840.113556.1.4.7000.102.50894' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Started-Mailbox-Servers' + lDAPDisplayName = 'msExchStartedMailboxServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Started-Mailbox-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Started-Mailbox-Servers' + OID = '1.2.840.113556.1.4.7000.102.51278' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Stopped-Mailbox-Servers' + lDAPDisplayName = 'msExchStoppedMailboxServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Stopped-Mailbox-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Stopped-Mailbox-Servers' + OID = '1.2.840.113556.1.4.7000.102.51277' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Sts-Refresh-Tokens-Valid-From' + lDAPDisplayName = 'msExchStsRefreshTokensValidFrom' + oMSyntax = 24 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sts-Refresh-Tokens-Valid-From' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sts-Refresh-Tokens-Valid-From' + OID = '1.2.840.113556.1.4.7000.102.52143' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-SubmitRelaySD' + lDAPDisplayName = 'msExchSubmitRelaySD' + oMSyntax = 66 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SubmitRelaySD' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SubmitRelaySD' + OID = '1.2.840.113556.1.4.5060' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supervision-DL-BL' + lDAPDisplayName = 'msExchSupervisionDLBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supervision-DL-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-DL-BL' + OID = '1.2.840.113556.1.4.7000.102.51480' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Supervision-DL-Link' + lDAPDisplayName = 'msExchSupervisionDLLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Supervision-DL-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-DL-Link' + OID = '1.2.840.113556.1.4.7000.102.51366' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Supervision-List-Max-Length' + lDAPDisplayName = 'msExchSupervisionListMaxLength' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supervision-List-Max-Length' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Supervision-List-Max-Length' + OID = '1.2.840.113556.1.4.7000.102.51368' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supervision-One-Off-BL' + lDAPDisplayName = 'msExchSupervisionOneOffBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supervision-One-Off-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-One-Off-BL' + OID = '1.2.840.113556.1.4.7000.102.51476' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Supervision-One-Off-Link' + lDAPDisplayName = 'msExchSupervisionOneOffLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Supervision-One-Off-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-One-Off-Link' + OID = '1.2.840.113556.1.4.7000.102.51367' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supervision-User-BL' + lDAPDisplayName = 'msExchSupervisionUserBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supervision-User-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-User-BL' + OID = '1.2.840.113556.1.4.7000.102.51465' +} +@{ + attributeSyntax = '2.5.5.14' + adminDisplayName = 'ms-Exch-Supervision-User-Link' + lDAPDisplayName = 'msExchSupervisionUserLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Supervision-User-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supervision-User-Link' + OID = '1.2.840.113556.1.4.7000.102.51365' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supported-Shared-Config-BL' + lDAPDisplayName = 'msExchSupportedSharedConfigBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supported-Shared-Config-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supported-Shared-Config-BL' + OID = '1.2.840.113556.1.4.7000.102.51756' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supported-Shared-Config-Link' + lDAPDisplayName = 'msExchSupportedSharedConfigLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supported-Shared-Config-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supported-Shared-Config-Link' + OID = '1.2.840.113556.1.4.7000.102.51755' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Accounts-Flags' + lDAPDisplayName = 'msExchSyncAccountsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Flags' + OID = '1.2.840.113556.1.4.7000.102.51362' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Accounts-Max' + lDAPDisplayName = 'msExchSyncAccountsMax' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Max' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Max' + OID = '1.2.840.113556.1.4.7000.102.51361' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Accounts-Poison-Account-Threshold' + lDAPDisplayName = 'msExchSyncAccountsPoisonAccountThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Poison-Account-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Poison-Account-Threshold' + OID = '1.2.840.113556.1.4.7000.102.51356' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Accounts-Poison-Item-Threshold' + lDAPDisplayName = 'msExchSyncAccountsPoisonItemThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Poison-Item-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Poison-Item-Threshold' + OID = '1.2.840.113556.1.4.7000.102.51357' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Sync-Accounts-Policy-DN' + lDAPDisplayName = 'msExchSyncAccountsPolicyDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Policy-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Policy-DN' + OID = '1.2.840.113556.1.4.7000.102.51394' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Accounts-Polling-Interval' + lDAPDisplayName = 'msExchSyncAccountsPollingInterval' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Polling-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Polling-Interval' + OID = '1.2.840.113556.1.4.7000.102.51358' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Accounts-Successive-Poison-Items-Threshold' + lDAPDisplayName = 'msExchSyncAccountsSuccessivePoisonItemsThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Successive-Poison-Items-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Successive-Poison-Items-Threshold' + OID = '1.2.840.113556.1.4.7000.102.51460' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Accounts-Time-Before-Dormant' + lDAPDisplayName = 'msExchSyncAccountsTimeBeforeDormant' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Time-Before-Dormant' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Time-Before-Dormant' + OID = '1.2.840.113556.1.4.7000.102.51360' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Accounts-Time-Before-Inactive' + lDAPDisplayName = 'msExchSyncAccountsTimeBeforeInactive' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Accounts-Time-Before-Inactive' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Accounts-Time-Before-Inactive' + OID = '1.2.840.113556.1.4.7000.102.51359' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Sync-Cookie' + lDAPDisplayName = 'msExchSyncCookie' + oMSyntax = 4 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Sync-Cookie' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Cookie' + OID = '1.2.840.113556.1.4.7000.102.52064' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Daemon-Max-Version' + lDAPDisplayName = 'msExchSyncDaemonMaxVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Daemon-Max-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Daemon-Max-Version' + OID = '1.2.840.113556.1.4.7000.102.51660' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Daemon-Min-Version' + lDAPDisplayName = 'msExchSyncDaemonMinVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Daemon-Min-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Daemon-Min-Version' + OID = '1.2.840.113556.1.4.7000.102.51659' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Synchronization-Direction' + lDAPDisplayName = 'msExchSynchronizationDirection' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Synchronization-Direction' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Synchronization-Direction' + OID = '1.2.840.113556.1.4.7000.102.1' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Hub-Health-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchSyncHubHealthLogAgeQuotaInHours' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Hub-Health-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Hub-Health-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51452' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Hub-Health-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchSyncHubHealthLogDirectorySizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Hub-Health-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Hub-Health-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51453' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sync-Hub-Health-Log-File-Path' + lDAPDisplayName = 'msExchSyncHubHealthLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Hub-Health-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Hub-Health-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51451' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Hub-Health-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchSyncHubHealthLogPerFileSizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Hub-Health-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Hub-Health-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51454' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchSyncLogAgeQuotaInHours' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51307' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchSyncLogDirectorySizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51308' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sync-Log-File-Path' + lDAPDisplayName = 'msExchSyncLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51306' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Log-Logging-Level' + lDAPDisplayName = 'msExchSyncLogLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Log-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Log-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.51355' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchSyncLogPerFileSizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51309' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Health-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchSyncMailboxHealthLogAgeQuotaInHours' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Health-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Health-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51456' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Health-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchSyncMailboxHealthLogDirectorySizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Health-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Health-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51457' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Health-Log-File-Path' + lDAPDisplayName = 'msExchSyncMailboxHealthLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Health-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Health-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51455' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Health-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchSyncMailboxHealthLogPerFileSizeQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Health-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Health-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51458' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Log-Age-Quota-In-Hours' + lDAPDisplayName = 'msExchSyncMailboxLogAgeQuotaInHours' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Log-Age-Quota-In-Hours' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Log-Age-Quota-In-Hours' + OID = '1.2.840.113556.1.4.7000.102.51351' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Log-Directory-Size-Quota' + lDAPDisplayName = 'msExchSyncMailboxLogDirectorySizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Log-Directory-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Log-Directory-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51352' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Log-File-Path' + lDAPDisplayName = 'msExchSyncMailboxLogFilePath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Log-File-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Log-File-Path' + OID = '1.2.840.113556.1.4.7000.102.51350' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Log-Logging-Level' + lDAPDisplayName = 'msExchSyncMailboxLogLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Log-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Log-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.51354' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Sync-Mailbox-Log-Per-File-Size-Quota' + lDAPDisplayName = 'msExchSyncMailboxLogPerFileSizeQuota' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Mailbox-Log-Per-File-Size-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Mailbox-Log-Per-File-Size-Quota' + OID = '1.2.840.113556.1.4.7000.102.51353' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Service-Instance-New-Tenant-Max-Version' + lDAPDisplayName = 'msExchSyncServiceInstanceNewTenantMaxVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Service-Instance-New-Tenant-Max-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Service-Instance-New-Tenant-Max-Version' + OID = '1.2.840.113556.1.4.7000.102.52068' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Sync-Service-Instance-New-Tenant-Min-Version' + lDAPDisplayName = 'msExchSyncServiceInstanceNewTenantMinVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Sync-Service-Instance-New-Tenant-Min-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Sync-Service-Instance-New-Tenant-Min-Version' + OID = '1.2.840.113556.1.4.7000.102.52067' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-System-Address-List' + lDAPDisplayName = 'msExchSystemAddressList' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-System-Address-List' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-System-Address-List' + OID = '1.2.840.113556.1.4.7000.102.51148' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-System-Message-Customizations' + lDAPDisplayName = 'msExchSystemMessageCustomizations' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-System-Message-Customizations' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-System-Message-Customizations' + OID = '1.2.840.113556.1.4.7000.102.51269' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Target-Bridgehead-Servers-DN' + lDAPDisplayName = 'msExchTargetBridgeheadServersDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-Bridgehead-Servers-DN' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-Bridgehead-Servers-DN' + OID = '1.2.840.113556.1.4.7000.102.12514' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Target-Server-Admins' + lDAPDisplayName = 'msExchTargetServerAdmins' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-Server-Admins' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-Server-Admins' + OID = '1.2.840.113556.1.4.7000.102.51741' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Target-Server-Partner-Admins' + lDAPDisplayName = 'msExchTargetServerPartnerAdmins' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-Server-Partner-Admins' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-Server-Partner-Admins' + OID = '1.2.840.113556.1.4.7000.102.51743' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Target-Server-Partner-View-Only-Admins' + lDAPDisplayName = 'msExchTargetServerPartnerViewOnlyAdmins' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-Server-Partner-View-Only-Admins' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-Server-Partner-View-Only-Admins' + OID = '1.2.840.113556.1.4.7000.102.51744' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Target-Server-View-Only-Admins' + lDAPDisplayName = 'msExchTargetServerViewOnlyAdmins' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-Server-View-Only-Admins' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-Server-View-Only-Admins' + OID = '1.2.840.113556.1.4.7000.102.51742' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Team-Mailbox-Expiration' + lDAPDisplayName = 'msExchTeamMailboxExpiration' + oMSyntax = 24 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-Expiration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Team-Mailbox-Expiration' + OID = '1.2.840.113556.1.4.7000.102.51871' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Team-Mailbox-Expiry-Days' + lDAPDisplayName = 'msExchTeamMailboxExpiryDays' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-Expiry-Days' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Team-Mailbox-Expiry-Days' + OID = '1.2.840.113556.1.4.7000.102.51870' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Team-Mailbox-Owners' + lDAPDisplayName = 'msExchTeamMailboxOwners' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-Owners' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Team-Mailbox-Owners' + OID = '1.2.840.113556.1.4.7000.102.51872' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Team-Mailbox-SharePoint-Linked-By' + lDAPDisplayName = 'msExchTeamMailboxSharePointLinkedBy' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-SharePoint-Linked-By' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Team-Mailbox-SharePoint-Linked-By' + OID = '1.2.840.113556.1.4.7000.102.51875' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Team-Mailbox-SharePoint-Url' + lDAPDisplayName = 'msExchTeamMailboxSharePointUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-SharePoint-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Team-Mailbox-SharePoint-Url' + OID = '1.2.840.113556.1.4.7000.102.51874' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Team-Mailbox-Show-In-Client-List' + lDAPDisplayName = 'msExchTeamMailboxShowInClientList' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Team-Mailbox-Show-In-Client-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Team-Mailbox-Show-In-Client-List' + OID = '1.2.840.113556.1.4.7000.102.51873' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Template-RDNs' + lDAPDisplayName = 'msExchTemplateRDNs' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Template-RDNs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Template-RDNs' + OID = '1.2.840.113556.1.4.7000.102.65' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tenant-Country' + lDAPDisplayName = 'msExchTenantCountry' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tenant-Country' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Tenant-Country' + OID = '1.2.840.113556.1.4.7000.102.52130' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Tenant-Perimeter-Settings-Flags' + lDAPDisplayName = 'msExchTenantPerimeterSettingsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tenant-Perimeter-Settings-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Tenant-Perimeter-Settings-Flags' + OID = '1.2.840.113556.1.4.7000.102.51514' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tenant-Perimeter-Settings-Gateway-IP-Addresses' + lDAPDisplayName = 'msExchTenantPerimeterSettingsGatewayIPAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tenant-Perimeter-Settings-Gateway-IP-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Tenant-Perimeter-Settings-Gateway-IP-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51510' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tenant-Perimeter-Settings-Internal-Server-IP-Addresses' + lDAPDisplayName = 'msExchTenantPerimeterSettingsInternalServerIPAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tenant-Perimeter-Settings-Internal-Server-IP-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Tenant-Perimeter-Settings-Internal-Server-IP-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51511' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tenant-Perimeter-Settings-Org-ID' + lDAPDisplayName = 'msExchTenantPerimeterSettingsOrgID' + oMSyntax = 64 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tenant-Perimeter-Settings-Org-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Tenant-Perimeter-Settings-Org-ID' + OID = '1.2.840.113556.1.4.7000.102.51542' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Text-Messaging-State' + lDAPDisplayName = 'msExchTextMessagingState' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Text-Messaging-State' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Text-Messaging-State' + OID = '1.2.840.113556.1.4.7000.102.51383' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Third-Party-Synchronous-Replication' + lDAPDisplayName = 'msExchThirdPartySynchronousReplication' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Third-Party-Synchronous-Replication' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Third-Party-Synchronous-Replication' + OID = '1.2.840.113556.1.4.7000.102.51552' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Throttling-Is-Default-Policy' + lDAPDisplayName = 'msExchThrottlingIsDefaultPolicy' + oMSyntax = 1 + Optional = $True + searchFlags = 3 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Throttling-Is-Default-Policy' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Throttling-Is-Default-Policy' + OID = '1.2.840.113556.1.4.7000.102.51071' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Throttling-Policy-DN' + lDAPDisplayName = 'msExchThrottlingPolicyDN' + oMSyntax = 127 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Throttling-Policy-DN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Throttling-Policy-DN' + OID = '1.2.840.113556.1.4.7000.102.51096' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Throttling-Policy-Flags' + lDAPDisplayName = 'msExchThrottlingPolicyFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Throttling-Policy-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Throttling-Policy-Flags' + OID = '1.2.840.113556.1.4.7000.102.52008' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tls-Alternate-Subject' + lDAPDisplayName = 'msExchTlsAlternateSubject' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tls-Alternate-Subject' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Tls-Alternate-Subject' + OID = '1.2.840.113556.1.4.7000.102.50849' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TLS-Receive-Domain-Secure-List' + lDAPDisplayName = 'msExchTLSReceiveDomainSecureList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TLS-Receive-Domain-Secure-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-TLS-Receive-Domain-Secure-List' + OID = '1.2.840.113556.1.4.7000.102.50870' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TLS-Send-Domain-Secure-List' + lDAPDisplayName = 'msExchTLSSendDomainSecureList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TLS-Send-Domain-Secure-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-TLS-Send-Domain-Secure-List' + OID = '1.2.840.113556.1.4.7000.102.50871' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-CSP-Name' + lDAPDisplayName = 'msExchTPDCSPName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-CSP-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-CSP-Name' + OID = '1.2.840.113556.1.4.7000.102.51633' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-TPD-CSP-Type' + lDAPDisplayName = 'msExchTPDCSPType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-CSP-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-CSP-Type' + OID = '1.2.840.113556.1.4.7000.102.51632' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Display-Name' + lDAPDisplayName = 'msExchTPDDisplayName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Display-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Display-Name' + OID = '1.2.840.113556.1.4.7000.102.51625' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Extranet-Certification-Url' + lDAPDisplayName = 'msExchTPDExtranetCertificationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Extranet-Certification-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Extranet-Certification-Url' + OID = '1.2.840.113556.1.4.7000.102.51642' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Extranet-Licensing-Url' + lDAPDisplayName = 'msExchTPDExtranetLicensingUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Extranet-Licensing-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Extranet-Licensing-Url' + OID = '1.2.840.113556.1.4.7000.102.51628' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-TPD-Flags' + lDAPDisplayName = 'msExchTPDFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Flags' + OID = '1.2.840.113556.1.4.7000.102.51626' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Intranet-Certification-Url' + lDAPDisplayName = 'msExchTPDIntranetCertificationUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Intranet-Certification-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Intranet-Certification-Url' + OID = '1.2.840.113556.1.4.7000.102.51629' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Intranet-Licensing-Url' + lDAPDisplayName = 'msExchTPDIntranetLicensingUrl' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Intranet-Licensing-Url' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Intranet-Licensing-Url' + OID = '1.2.840.113556.1.4.7000.102.51627' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Key-Container-Name' + lDAPDisplayName = 'msExchTPDKeyContainerName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Key-Container-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Key-Container-Name' + OID = '1.2.840.113556.1.4.7000.102.51634' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Key-ID' + lDAPDisplayName = 'msExchTPDKeyID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Key-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Key-ID' + OID = '1.2.840.113556.1.4.7000.102.51630' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Key-IDType' + lDAPDisplayName = 'msExchTPDKeyIDType' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Key-IDType' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Key-IDType' + OID = '1.2.840.113556.1.4.7000.102.51631' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-TPD-Key-Number' + lDAPDisplayName = 'msExchTPDKeyNumber' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Key-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Key-Number' + OID = '1.2.840.113556.1.4.7000.102.51635' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-TPD-Private-Key' + lDAPDisplayName = 'msExchTPDPrivateKey' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Private-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-Private-Key' + OID = '1.2.840.113556.1.4.7000.102.51636' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-SLC-Certificate-Chain' + lDAPDisplayName = 'msExchTPDSLCCertificateChain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-SLC-Certificate-Chain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TPD-SLC-Certificate-Chain' + OID = '1.2.840.113556.1.4.7000.102.51637' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-TPD-Templates' + lDAPDisplayName = 'msExchTPDTemplates' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-TPD-Templates' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-TPD-Templates' + OID = '1.2.840.113556.1.4.7000.102.51638' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Track-Duplicates' + lDAPDisplayName = 'msExchTrackDuplicates' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Track-Duplicates' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Track-Duplicates' + OID = '1.2.840.113556.1.4.7000.102.11006' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Connectivity-Log-Directory-Size' + lDAPDisplayName = 'msExchTransportConnectivityLogDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Connectivity-Log-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Connectivity-Log-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.50800' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Connectivity-Log-File-Size' + lDAPDisplayName = 'msExchTransportConnectivityLogFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Connectivity-Log-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Connectivity-Log-File-Size' + OID = '1.2.840.113556.1.4.7000.102.50801' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Connectivity-Log-Path' + lDAPDisplayName = 'msExchTransportConnectivityLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Connectivity-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Connectivity-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.50799' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Delay-Notification-Timeout' + lDAPDisplayName = 'msExchTransportDelayNotificationTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Delay-Notification-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Delay-Notification-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50633' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Delivery-Agent-Delivery-Protocol' + lDAPDisplayName = 'msExchTransportDeliveryAgentDeliveryProtocol' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Delivery-Agent-Delivery-Protocol' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Delivery-Agent-Delivery-Protocol' + OID = '1.2.840.113556.1.4.7000.102.51168' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Delivery-Agent-Max-Concurrent-Connections' + lDAPDisplayName = 'msExchTransportDeliveryAgentMaxConcurrentConnections' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Delivery-Agent-Max-Concurrent-Connections' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Delivery-Agent-Max-Concurrent-Connections' + OID = '1.2.840.113556.1.4.7000.102.51170' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Delivery-Agent-Max-Messages-Per-Connection' + lDAPDisplayName = 'msExchTransportDeliveryAgentMaxMessagesPerConnection' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Delivery-Agent-Max-Messages-Per-Connection' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Delivery-Agent-Max-Messages-Per-Connection' + OID = '1.2.840.113556.1.4.7000.102.51169' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Drop-Directory-Name' + lDAPDisplayName = 'msExchTransportDropDirectoryName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Drop-Directory-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Drop-Directory-Name' + OID = '1.2.840.113556.1.4.7000.102.50786' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Drop-Directory-Quota' + lDAPDisplayName = 'msExchTransportDropDirectoryQuota' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Drop-Directory-Quota' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Drop-Directory-Quota' + OID = '1.2.840.113556.1.4.7000.102.50833' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Dumpster-Hold-Time' + lDAPDisplayName = 'msExchTransportDumpsterHoldTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Dumpster-Hold-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Dumpster-Hold-Time' + OID = '1.2.840.113556.1.4.7000.102.52069' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-External-Default-Language' + lDAPDisplayName = 'msExchTransportExternalDefaultLanguage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-Default-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-Default-Language' + OID = '1.2.840.113556.1.4.7000.102.50591' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Transport-External-DNS-Adapter-Guid' + lDAPDisplayName = 'msExchTransportExternalDNSAdapterGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-DNS-Adapter-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-DNS-Adapter-Guid' + OID = '1.2.840.113556.1.4.7000.102.50689' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-External-DNS-Protocol-Option' + lDAPDisplayName = 'msExchTransportExternalDNSProtocolOption' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-DNS-Protocol-Option' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-DNS-Protocol-Option' + OID = '1.2.840.113556.1.4.7000.102.50690' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-External-DSN-Reporting-Authority' + lDAPDisplayName = 'msExchTransportExternalDSNReportingAuthority' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-DSN-Reporting-Authority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-DSN-Reporting-Authority' + OID = '1.2.840.113556.1.4.7000.102.50593' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-External-IP-Address' + lDAPDisplayName = 'msExchTransportExternalIPAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-IP-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-IP-Address' + OID = '1.2.840.113556.1.4.7000.102.50876' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-External-Max-DSN-Message-Attachment-Size' + lDAPDisplayName = 'msExchTransportExternalMaxDSNMessageAttachmentSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-Max-DSN-Message-Attachment-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-Max-DSN-Message-Attachment-Size' + OID = '1.2.840.113556.1.4.7000.102.50589' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-External-Postmaster-Address' + lDAPDisplayName = 'msExchTransportExternalPostmasterAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-Postmaster-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-External-Postmaster-Address' + OID = '1.2.840.113556.1.4.7000.102.50594' +} +@{ + attributeSyntax = '2.5.5.17' + adminDisplayName = 'ms-Exch-Transport-External-Trusted-Servers' + lDAPDisplayName = 'msExchTransportExternalTrustedServers' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-External-Trusted-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-External-Trusted-Servers' + OID = '1.2.840.113556.1.4.7000.102.50880' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Flags' + lDAPDisplayName = 'msExchTransportFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Flags' + OID = '1.2.840.113556.1.4.7000.102.50579' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Inbound-Protocol-Logging-Level' + lDAPDisplayName = 'msExchTransportInboundProtocolLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Inbound-Protocol-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Inbound-Protocol-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.52075' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Inbound-Settings' + lDAPDisplayName = 'msExchTransportInboundSettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Inbound-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Inbound-Settings' + OID = '1.2.840.113556.1.4.7000.102.51486' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Internal-Default-Language' + lDAPDisplayName = 'msExchTransportInternalDefaultLanguage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-Default-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-Default-Language' + OID = '1.2.840.113556.1.4.7000.102.50592' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Transport-Internal-DNS-Adapter-Guid' + lDAPDisplayName = 'msExchTransportInternalDNSAdapterGuid' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-DNS-Adapter-Guid' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-DNS-Adapter-Guid' + OID = '1.2.840.113556.1.4.7000.102.50576' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Internal-DNS-Protocol-Option' + lDAPDisplayName = 'msExchTransportInternalDNSProtocolOption' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-DNS-Protocol-Option' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-DNS-Protocol-Option' + OID = '1.2.840.113556.1.4.7000.102.50580' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Internal-DNS-Servers' + lDAPDisplayName = 'msExchTransportInternalDNSServers' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-DNS-Servers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-Internal-DNS-Servers' + OID = '1.2.840.113556.1.4.7000.102.50578' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Internal-DSN-Reporting-Authority' + lDAPDisplayName = 'msExchTransportInternalDSNReportingAuthority' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-DSN-Reporting-Authority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-DSN-Reporting-Authority' + OID = '1.2.840.113556.1.4.7000.102.50575' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Internal-Max-DSN-Message-Attachment-Size' + lDAPDisplayName = 'msExchTransportInternalMaxDSNMessageAttachmentSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-Max-DSN-Message-Attachment-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-Max-DSN-Message-Attachment-Size' + OID = '1.2.840.113556.1.4.7000.102.50590' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Internal-Postmaster-Address' + lDAPDisplayName = 'msExchTransportInternalPostmasterAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Internal-Postmaster-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Internal-Postmaster-Address' + OID = '1.2.840.113556.1.4.7000.102.50595' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Intra-Tenant-Mail-Content-Type' + lDAPDisplayName = 'msExchTransportIntraTenantMailContentType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Intra-Tenant-Mail-Content-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Intra-Tenant-Mail-Content-Type' + OID = '1.2.840.113556.1.4.7000.102.51667' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Deliveries' + lDAPDisplayName = 'msExchTransportMaxConcurrentMailboxDeliveries' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Deliveries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Deliveries' + OID = '1.2.840.113556.1.4.7000.102.50629' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Submissions' + lDAPDisplayName = 'msExchTransportMaxConcurrentMailboxSubmissions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Submissions' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Concurrent-Mailbox-Submissions' + OID = '1.2.840.113556.1.4.7000.102.50856' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Connectivity-Log-Age' + lDAPDisplayName = 'msExchTransportMaxConnectivityLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Connectivity-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Connectivity-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.50798' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Message-Tracking-Directory-Size' + lDAPDisplayName = 'msExchTransportMaxMessageTrackingDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Message-Tracking-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Message-Tracking-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.50598' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Message-Tracking-File-Size' + lDAPDisplayName = 'msExchTransportMaxMessageTrackingFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Message-Tracking-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Message-Tracking-File-Size' + OID = '1.2.840.113556.1.4.7000.102.50599' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Message-Tracking-Log-Age' + lDAPDisplayName = 'msExchTransportMaxMessageTrackingLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Message-Tracking-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Message-Tracking-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.50597' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Pickup-Directory-Header-Size' + lDAPDisplayName = 'msExchTransportMaxPickupDirectoryHeaderSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Pickup-Directory-Header-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Pickup-Directory-Header-Size' + OID = '1.2.840.113556.1.4.7000.102.50583' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Pickup-Directory-Message-Size' + lDAPDisplayName = 'msExchTransportMaxPickupDirectoryMessageSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Pickup-Directory-Message-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Pickup-Directory-Message-Size' + OID = '1.2.840.113556.1.4.7000.102.50582' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Pickup-Directory-Messages-Per-Minute' + lDAPDisplayName = 'msExchTransportMaxPickupDirectoryMessagesPerMinute' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Pickup-Directory-Messages-Per-Minute' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Pickup-Directory-Messages-Per-Minute' + OID = '1.2.840.113556.1.4.7000.102.50797' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Pickup-Directory-Recipients' + lDAPDisplayName = 'msExchTransportMaxPickupDirectoryRecipients' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Pickup-Directory-Recipients' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Pickup-Directory-Recipients' + OID = '1.2.840.113556.1.4.7000.102.50584' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Queue-Idle-Time' + lDAPDisplayName = 'msExchTransportMaxQueueIdleTime' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Queue-Idle-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Queue-Idle-Time' + OID = '1.2.840.113556.1.4.7000.102.50636' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Age' + lDAPDisplayName = 'msExchTransportMaxReceiveProtocolLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.50569' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Directory-Size' + lDAPDisplayName = 'msExchTransportMaxReceiveProtocolLogDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Receive-Protocol-Log-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.50571' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Receive-Protocol-Log-File-Size' + lDAPDisplayName = 'msExchTransportMaxReceiveProtocolLogFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Receive-Protocol-Log-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Receive-Protocol-Log-File-Size' + OID = '1.2.840.113556.1.4.7000.102.50570' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Recipient-Statistics-Log-Age' + lDAPDisplayName = 'msExchTransportMaxRecipientStatisticsLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Recipient-Statistics-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Recipient-Statistics-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.51326' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-MaxRetriesForLocalSiteShadow' + lDAPDisplayName = 'msExchTransportMaxRetriesForLocalSiteShadow' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-MaxRetriesForLocalSiteShadow' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-MaxRetriesForLocalSiteShadow' + OID = '1.2.840.113556.1.4.7000.102.52031' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-MaxRetriesForRemoteSiteShadow' + lDAPDisplayName = 'msExchTransportMaxRetriesForRemoteSiteShadow' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-MaxRetriesForRemoteSiteShadow' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-MaxRetriesForRemoteSiteShadow' + OID = '1.2.840.113556.1.4.7000.102.52024' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Send-Protocol-Log-Age' + lDAPDisplayName = 'msExchTransportMaxSendProtocolLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Send-Protocol-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Send-Protocol-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.50572' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Send-Protocol-Log-Directory-Size' + lDAPDisplayName = 'msExchTransportMaxSendProtocolLogDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Send-Protocol-Log-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Send-Protocol-Log-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.50574' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Max-Send-Protocol-Log-File-Size' + lDAPDisplayName = 'msExchTransportMaxSendProtocolLogFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Send-Protocol-Log-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Send-Protocol-Log-File-Size' + OID = '1.2.840.113556.1.4.7000.102.50573' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Max-Server-Statistics-Log-Age' + lDAPDisplayName = 'msExchTransportMaxServerStatisticsLogAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Max-Server-Statistics-Log-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Max-Server-Statistics-Log-Age' + OID = '1.2.840.113556.1.4.7000.102.51322' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Message-Expiration-Timeout' + lDAPDisplayName = 'msExchTransportMessageExpirationTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Message-Expiration-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Message-Expiration-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50632' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Message-Retry-Interval' + lDAPDisplayName = 'msExchTransportMessageRetryInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Message-Retry-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Message-Retry-Interval' + OID = '1.2.840.113556.1.4.7000.102.50566' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Message-Tracking-Path' + lDAPDisplayName = 'msExchTransportMessageTrackingPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Message-Tracking-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Message-Tracking-Path' + OID = '1.2.840.113556.1.4.7000.102.50596' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Outbound-Connection-Failure-Retry-Interval' + lDAPDisplayName = 'msExchTransportOutboundConnectionFailureRetryInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Outbound-Connection-Failure-Retry-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Outbound-Connection-Failure-Retry-Interval' + OID = '1.2.840.113556.1.4.7000.102.50565' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Outbound-Protocol-Logging-Level' + lDAPDisplayName = 'msExchTransportOutboundProtocolLoggingLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Outbound-Protocol-Logging-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Outbound-Protocol-Logging-Level' + OID = '1.2.840.113556.1.4.7000.102.50691' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Outbound-Settings' + lDAPDisplayName = 'msExchTransportOutboundSettings' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Outbound-Settings' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Outbound-Settings' + OID = '1.2.840.113556.1.4.7000.102.51487' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Partner-Connector-Domain' + lDAPDisplayName = 'msExchTransportPartnerConnectorDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Partner-Connector-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Partner-Connector-Domain' + OID = '1.2.840.113556.1.4.7000.102.51669' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Partner-Routing-Domain' + lDAPDisplayName = 'msExchTransportPartnerRoutingDomain' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Partner-Routing-Domain' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Partner-Routing-Domain' + OID = '1.2.840.113556.1.4.7000.102.51668' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Per-Queue-Message-Dehydration-Threshold' + lDAPDisplayName = 'msExchTransportPerQueueMessageDehydrationThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Per-Queue-Message-Dehydration-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Per-Queue-Message-Dehydration-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50638' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Pickup-Directory-Path' + lDAPDisplayName = 'msExchTransportPickupDirectoryPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Pickup-Directory-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Pickup-Directory-Path' + OID = '1.2.840.113556.1.4.7000.102.50581' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Pipeline-Tracing-Path' + lDAPDisplayName = 'msExchTransportPipelineTracingPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Pipeline-Tracing-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Pipeline-Tracing-Path' + OID = '1.2.840.113556.1.4.7000.102.50859' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Pipeline-Tracing-Sender-Address' + lDAPDisplayName = 'msExchTransportPipelineTracingSenderAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Pipeline-Tracing-Sender-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Pipeline-Tracing-Sender-Address' + OID = '1.2.840.113556.1.4.7000.102.50860' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Poison-Message-Threshold' + lDAPDisplayName = 'msExchTransportPoisonMessageThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Poison-Message-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Poison-Message-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50634' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Receive-Protocol-Log-Path' + lDAPDisplayName = 'msExchTransportReceiveProtocolLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Receive-Protocol-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Receive-Protocol-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.50568' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Recipient-Settings-Flags' + lDAPDisplayName = 'msExchTransportRecipientSettingsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Transport-Recipient-Settings-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Recipient-Settings-Flags' + OID = '1.2.840.113556.1.4.7000.102.51025' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Recipient-Statistics-Directory-Size' + lDAPDisplayName = 'msExchTransportRecipientStatisticsDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Recipient-Statistics-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Recipient-Statistics-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.51328' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Recipient-Statistics-File-Size' + lDAPDisplayName = 'msExchTransportRecipientStatisticsFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Recipient-Statistics-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Recipient-Statistics-File-Size' + OID = '1.2.840.113556.1.4.7000.102.51329' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Recipient-Statistics-Path' + lDAPDisplayName = 'msExchTransportRecipientStatisticsPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Recipient-Statistics-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Recipient-Statistics-Path' + OID = '1.2.840.113556.1.4.7000.102.51327' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Replay-Directory-Path' + lDAPDisplayName = 'msExchTransportReplayDirectoryPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Replay-Directory-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Replay-Directory-Path' + OID = '1.2.840.113556.1.4.7000.102.50796' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Reseller-Intra-Tenant-Mail-Content-Type' + lDAPDisplayName = 'msExchTransportResellerIntraTenantMailContentType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Reseller-Intra-Tenant-Mail-Content-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Reseller-Intra-Tenant-Mail-Content-Type' + OID = '1.2.840.113556.1.4.7000.102.51617' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Reseller-Settings-Inbound-Gateway-ID' + lDAPDisplayName = 'msExchTransportResellerSettingsInboundGatewayID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Reseller-Settings-Inbound-Gateway-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Reseller-Settings-Inbound-Gateway-ID' + OID = '1.2.840.113556.1.4.7000.102.51615' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Transport-Reseller-Settings-Link' + lDAPDisplayName = 'msExchTransportResellerSettingsLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Reseller-Settings-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Reseller-Settings-Link' + OID = '1.2.840.113556.1.4.7000.102.51622' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Transport-Reseller-Settings-Link-SL' + lDAPDisplayName = 'msExchTransportResellerSettingsLinkSL' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Reseller-Settings-Link-SL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Reseller-Settings-Link-SL' + OID = '1.2.840.113556.1.4.7000.102.51945' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Reseller-Settings-Outbound-Gateway-ID' + lDAPDisplayName = 'msExchTransportResellerSettingsOutboundGatewayID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Reseller-Settings-Outbound-Gateway-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Reseller-Settings-Outbound-Gateway-ID' + OID = '1.2.840.113556.1.4.7000.102.51616' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Root-Drop-Directory-Path' + lDAPDisplayName = 'msExchTransportRootDropDirectoryPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Root-Drop-Directory-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Root-Drop-Directory-Path' + OID = '1.2.840.113556.1.4.7000.102.50785' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Routing-Log-Max-Age' + lDAPDisplayName = 'msExchTransportRoutingLogMaxAge' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Routing-Log-Max-Age' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Routing-Log-Max-Age' + OID = '1.2.840.113556.1.4.7000.102.50863' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Routing-Log-Max-Directory-Size' + lDAPDisplayName = 'msExchTransportRoutingLogMaxDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Routing-Log-Max-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Routing-Log-Max-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.50862' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Routing-Log-Path' + lDAPDisplayName = 'msExchTransportRoutingLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Routing-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Routing-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.50861' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Rule-Config' + lDAPDisplayName = 'msExchTransportRuleConfig' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Config' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-Rule-Config' + OID = '1.2.840.113556.1.4.7000.102.52072' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Rule-ExpireTime' + lDAPDisplayName = 'msExchTransportRuleExpireTime' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-ExpireTime' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-ExpireTime' + OID = '1.2.840.113556.1.4.7000.102.52086' +} +@{ + attributeSyntax = '2.5.5.2' + adminDisplayName = 'ms-Exch-Transport-Rule-Immutable-Id' + lDAPDisplayName = 'msExchTransportRuleImmutableId' + oMSyntax = 6 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Immutable-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-Immutable-Id' + OID = '1.2.840.113556.1.4.7000.102.52040' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Rule-Priority' + lDAPDisplayName = 'msExchTransportRulePriority' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Priority' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-Priority' + OID = '1.2.840.113556.1.4.7000.102.50460' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Rule-State' + lDAPDisplayName = 'msExchTransportRuleState' + oMSyntax = 2 + Optional = $True + searchFlags = 18 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-State' + OID = '1.2.840.113556.1.4.7000.102.51956' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Transport-Rule-Target-BL' + lDAPDisplayName = 'msExchTransportRuleTargetBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Target-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-Rule-Target-BL' + OID = '1.2.840.113556.1.4.7000.102.52085' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Transport-Rule-Target-Link' + lDAPDisplayName = 'msExchTransportRuleTargetLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Target-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-Rule-Target-Link' + OID = '1.2.840.113556.1.4.7000.102.52095' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Rule-Version' + lDAPDisplayName = 'msExchTransportRuleVersion' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-Version' + OID = '1.2.840.113556.1.4.7000.102.52083' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Rule-Xml' + lDAPDisplayName = 'msExchTransportRuleXml' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Rule-Xml' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Rule-Xml' + OID = '1.2.840.113556.1.4.7000.102.50461' +} +@{ + attributeSyntax = '2.5.5.15' + adminDisplayName = 'ms-Exch-Transport-Security-Descriptor' + lDAPDisplayName = 'msExchTransportSecurityDescriptor' + oMSyntax = 66 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Security-Descriptor' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Security-Descriptor' + OID = '1.2.840.113556.1.4.7000.102.50692' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Send-Protocol-Log-Path' + lDAPDisplayName = 'msExchTransportSendProtocolLogPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Send-Protocol-Log-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Send-Protocol-Log-Path' + OID = '1.2.840.113556.1.4.7000.102.50567' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Server-Statistics-Directory-Size' + lDAPDisplayName = 'msExchTransportServerStatisticsDirectorySize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Server-Statistics-Directory-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Server-Statistics-Directory-Size' + OID = '1.2.840.113556.1.4.7000.102.51324' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Transport-Server-Statistics-File-Size' + lDAPDisplayName = 'msExchTransportServerStatisticsFileSize' + oMSyntax = 65 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Server-Statistics-File-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Server-Statistics-File-Size' + OID = '1.2.840.113556.1.4.7000.102.51325' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Transport-Server-Statistics-Path' + lDAPDisplayName = 'msExchTransportServerStatisticsPath' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Server-Statistics-Path' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Server-Statistics-Path' + OID = '1.2.840.113556.1.4.7000.102.51323' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Settings-AV-Flags' + lDAPDisplayName = 'msExchTransportSettingsAVFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Settings-AV-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Settings-AV-Flags' + OID = '1.2.840.113556.1.4.7000.102.51363' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Settings-Flags' + lDAPDisplayName = 'msExchTransportSettingsFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Settings-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Settings-Flags' + OID = '1.2.840.113556.1.4.7000.102.50851' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Shadow-Heartbeat-Retry-Count' + lDAPDisplayName = 'msExchTransportShadowHeartbeatRetryCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Shadow-Heartbeat-Retry-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Shadow-Heartbeat-Retry-Count' + OID = '1.2.840.113556.1.4.7000.102.51167' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Shadow-Heartbeat-Timeout-Interval' + lDAPDisplayName = 'msExchTransportShadowHeartbeatTimeoutInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Shadow-Heartbeat-Timeout-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Shadow-Heartbeat-Timeout-Interval' + OID = '1.2.840.113556.1.4.7000.102.51166' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Shadow-Message-AutoDiscard-Interval' + lDAPDisplayName = 'msExchTransportShadowMessageAutoDiscardInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Shadow-Message-AutoDiscard-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Shadow-Message-AutoDiscard-Interval' + OID = '1.2.840.113556.1.4.7000.102.51165' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Site-Flags' + lDAPDisplayName = 'msExchTransportSiteFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Site-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Site-Flags' + OID = '1.2.840.113556.1.4.7000.102.50756' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Transport-Submission-Server-Override-List' + lDAPDisplayName = 'msExchTransportSubmissionServerOverrideList' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Submission-Server-Override-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Transport-Submission-Server-Override-List' + OID = '1.2.840.113556.1.4.7000.102.50635' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Total-Queue-Message-Dehydration-Threshold' + lDAPDisplayName = 'msExchTransportTotalQueueMessageDehydrationThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Total-Queue-Message-Dehydration-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Total-Queue-Message-Dehydration-Threshold' + OID = '1.2.840.113556.1.4.7000.102.50637' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Transient-Failure-Retry-Count' + lDAPDisplayName = 'msExchTransportTransientFailureRetryCount' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Transient-Failure-Retry-Count' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Transient-Failure-Retry-Count' + OID = '1.2.840.113556.1.4.7000.102.50564' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transport-Transient-Failure-Retry-Interval' + lDAPDisplayName = 'msExchTransportTransientFailureRetryInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Transient-Failure-Retry-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Transient-Failure-Retry-Interval' + OID = '1.2.840.113556.1.4.7000.102.50563' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Trk-Log-Cleaning-Interval' + lDAPDisplayName = 'msExchTrkLogCleaningInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trk-Log-Cleaning-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Trk-Log-Cleaning-Interval' + OID = '1.2.840.113556.1.4.7000.102.50016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Truncation-Lag' + lDAPDisplayName = 'msExchTruncationLag' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Truncation-Lag' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Truncation-Lag' + OID = '1.2.840.113556.1.4.7000.102.50938' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Trusted-Domain-BL' + lDAPDisplayName = 'msExchTrustedDomainBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trusted-Domain-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Trusted-Domain-BL' + OID = '1.2.840.113556.1.4.7000.102.51914' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Trusted-Domain-Link' + lDAPDisplayName = 'msExchTrustedDomainLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trusted-Domain-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Trusted-Domain-Link' + OID = '1.2.840.113556.1.4.7000.102.51883' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-TUI-Password' + lDAPDisplayName = 'msExchTUIPassword' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-TUI-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TUI-Password' + OID = '1.2.840.113556.1.4.7000.102.17025' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-TUI-Speed' + lDAPDisplayName = 'msExchTUISpeed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-TUI-Speed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TUI-Speed' + OID = '1.2.840.113556.1.4.7000.102.17027' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-TUI-Volume' + lDAPDisplayName = 'msExchTUIVolume' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-TUI-Volume' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-TUI-Volume' + OID = '1.2.840.113556.1.4.7000.102.17026' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Turf-List' + lDAPDisplayName = 'msExchTurfList' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Turf-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Turf-List' + OID = '1.2.840.113556.1.4.7000.102.5051' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Turf-List-Action' + lDAPDisplayName = 'msExchTurfListAction' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Turf-List-Action' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Turf-List-Action' + OID = '1.2.840.113556.1.4.7000.102.12535' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Turf-List-Names' + lDAPDisplayName = 'msExchTurfListNames' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Turf-List-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Turf-List-Names' + OID = '1.2.840.113556.1.4.7000.102.12534' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Turf-List-Options' + lDAPDisplayName = 'msExchTurfListOptions' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Turf-List-Options' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Turf-List-Options' + OID = '1.2.840.113556.1.4.7000.102.5054' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Uce-Block-Threshold' + lDAPDisplayName = 'msExchUceBlockThreshold' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Uce-Block-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Uce-Block-Threshold' + OID = '1.2.840.113556.1.4.7000.102.12601' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Uce-Enabled' + lDAPDisplayName = 'msExchUceEnabled' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Uce-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Uce-Enabled' + OID = '1.2.840.113556.1.4.7000.102.12600' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Uce-Store-Action-Threshold' + lDAPDisplayName = 'msExchUceStoreActionThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Uce-Store-Action-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Uce-Store-Action-Threshold' + OID = '1.2.840.113556.1.4.7000.102.12602' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UC-Voice-Mail-Settings' + lDAPDisplayName = 'msExchUCVoiceMailSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UC-Voice-Mail-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UC-Voice-Mail-Settings' + OID = '1.2.840.113556.1.4.7000.102.51612' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UG-Event-Subscription-BL' + lDAPDisplayName = 'msExchUGEventSubscriptionBL' + oMSyntax = 127 + Optional = $True + searchFlags = 24 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UG-Event-Subscription-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UG-Event-Subscription-BL' + OID = '1.2.840.113556.1.4.7000.102.52160' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UG-Event-Subscription-Link' + lDAPDisplayName = 'msExchUGEventSubscriptionLink' + oMSyntax = 127 + Optional = $True + searchFlags = 24 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UG-Event-Subscription-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UG-Event-Subscription-Link' + OID = '1.2.840.113556.1.4.7000.102.52159' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UG-Member-BL' + lDAPDisplayName = 'msExchUGMemberBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UG-Member-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UG-Member-BL' + OID = '1.2.840.113556.1.4.7000.102.52138' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UG-Member-Link' + lDAPDisplayName = 'msExchUGMemberLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UG-Member-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UG-Member-Link' + OID = '1.2.840.113556.1.4.7000.102.52137' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Addresses' + lDAPDisplayName = 'msExchUMAddresses' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Addresses' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Addresses' + OID = '1.2.840.113556.1.4.7000.102.51344' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Allowed-In-Country-Groups' + lDAPDisplayName = 'msExchUMAllowedInCountryGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Allowed-In-Country-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Allowed-In-Country-Groups' + OID = '1.2.840.113556.1.4.7000.102.50443' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Allowed-International-Groups' + lDAPDisplayName = 'msExchUMAllowedInternationalGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Allowed-International-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Allowed-International-Groups' + OID = '1.2.840.113556.1.4.7000.102.50444' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-ASR-Enabled' + lDAPDisplayName = 'msExchUMASREnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-ASR-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-ASR-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50424' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Audio-Codec' + lDAPDisplayName = 'msExchUMAudioCodec' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Audio-Codec' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Audio-Codec' + OID = '1.2.840.113556.1.4.7000.102.50378' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Audio-Codec-2' + lDAPDisplayName = 'msExchUMAudioCodec2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Audio-Codec-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Audio-Codec-2' + OID = '1.2.840.113556.1.4.7000.102.51413' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-After-Hour-Features' + lDAPDisplayName = 'msExchUMAutoAttendantAfterHourFeatures' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-After-Hour-Features' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-After-Hour-Features' + OID = '1.2.840.113556.1.4.7000.102.50405' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Features' + lDAPDisplayName = 'msExchUMAutoAttendantBusinessHourFeatures' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Features' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Features' + OID = '1.2.840.113556.1.4.7000.102.50404' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Schedule' + lDAPDisplayName = 'msExchUMAutoAttendantBusinessHourSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Business-Hour-Schedule' + OID = '1.2.840.113556.1.4.7000.102.50403' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Dialed-Numbers' + lDAPDisplayName = 'msExchUMAutoAttendantDialedNumbers' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Dialed-Numbers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Auto-Attendant-Dialed-Numbers' + OID = '1.2.840.113556.1.4.7000.102.50400' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMAutoAttendantDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50399' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMAutoAttendantDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50398' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Flags' + lDAPDisplayName = 'msExchUMAutoAttendantFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Flags' + OID = '1.2.840.113556.1.4.7000.102.50408' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Holiday-Schedule' + lDAPDisplayName = 'msExchUMAutoAttendantHolidaySchedule' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Holiday-Schedule' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Auto-Attendant-Holiday-Schedule' + OID = '1.2.840.113556.1.4.7000.102.50407' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Prompt-Change-Key' + lDAPDisplayName = 'msExchUMAutoAttendantPromptChangeKey' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Prompt-Change-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Prompt-Change-Key' + OID = '1.2.840.113556.1.4.7000.102.51331' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Auto-Attendant-Time-Zone' + lDAPDisplayName = 'msExchUMAutoAttendantTimeZone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Auto-Attendant-Time-Zone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Auto-Attendant-Time-Zone' + OID = '1.2.840.113556.1.4.7000.102.50402' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Available-In-Country-Groups' + lDAPDisplayName = 'msExchUMAvailableInCountryGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Available-In-Country-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Available-In-Country-Groups' + OID = '1.2.840.113556.1.4.7000.102.50441' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Available-International-Groups' + lDAPDisplayName = 'msExchUMAvailableInternationalGroups' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Available-International-Groups' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Available-International-Groups' + OID = '1.2.840.113556.1.4.7000.102.50442' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Available-Languages' + lDAPDisplayName = 'msExchUMAvailableLanguages' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Available-Languages' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Available-Languages' + OID = '1.2.840.113556.1.4.7000.102.50379' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Available-TTS-Languages' + lDAPDisplayName = 'msExchUMAvailableTTSLanguages' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Available-TTS-Languages' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Available-TTS-Languages' + OID = '1.2.840.113556.1.4.7000.102.50381' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Business-Location' + lDAPDisplayName = 'msExchUMBusinessLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Business-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Business-Location' + OID = '1.2.840.113556.1.4.7000.102.51412' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Business-Name' + lDAPDisplayName = 'msExchUMBusinessName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Business-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Business-Name' + OID = '1.2.840.113556.1.4.7000.102.51411' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Call-Failures-To-Disconnect' + lDAPDisplayName = 'msExchUMCallFailuresToDisconnect' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Call-Failures-To-Disconnect' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Call-Failures-To-Disconnect' + OID = '1.2.840.113556.1.4.7000.102.50374' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Calling-Line-ID-Formats' + lDAPDisplayName = 'msExchUMCallingLineIDFormats' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Calling-Line-ID-Formats' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Calling-Line-ID-Formats' + OID = '1.2.840.113556.1.4.7000.102.51146' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Calling-Line-IDs' + lDAPDisplayName = 'msExchUMCallingLineIDs' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Calling-Line-IDs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Calling-Line-IDs' + OID = '1.2.840.113556.1.4.7000.102.51145' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Call-Someone-Enabled' + lDAPDisplayName = 'msExchUMCallSomeoneEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Call-Someone-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Call-Someone-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50428' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Call-Someone-Scope' + lDAPDisplayName = 'msExchUMCallSomeoneScope' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Call-Someone-Scope' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Call-Someone-Scope' + OID = '1.2.840.113556.1.4.7000.102.50450' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Certificate-Thumbprint' + lDAPDisplayName = 'msExchUMCertificateThumbprint' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Certificate-Thumbprint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Certificate-Thumbprint' + OID = '1.2.840.113556.1.4.7000.102.51524' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Country-Code' + lDAPDisplayName = 'msExchUMCountryCode' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Country-Code' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Country-Code' + OID = '1.2.840.113556.1.4.7000.102.50438' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Default-Language' + lDAPDisplayName = 'msExchUMDefaultLanguage' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Default-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Default-Language' + OID = '1.2.840.113556.1.4.7000.102.50380' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Default-Mailbox' + lDAPDisplayName = 'msExchUMDefaultMailbox' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Default-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Default-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.51408' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Default-Outbound-Calling-Line-ID' + lDAPDisplayName = 'msExchUMDefaultOutboundCallingLineID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Default-Outbound-Calling-Line-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Default-Outbound-Calling-Line-ID' + OID = '1.2.840.113556.1.4.7000.102.51409' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Default-TTS-Language' + lDAPDisplayName = 'msExchUMDefaultTTSLanguage' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Default-TTS-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Default-TTS-Language' + OID = '1.2.840.113556.1.4.7000.102.50382' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-By-Name-Primary' + lDAPDisplayName = 'msExchUMDialByNamePrimary' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-By-Name-Primary' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-By-Name-Primary' + OID = '1.2.840.113556.1.4.7000.102.50376' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-By-Name-Secondary' + lDAPDisplayName = 'msExchUMDialByNameSecondary' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-By-Name-Secondary' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-By-Name-Secondary' + OID = '1.2.840.113556.1.4.7000.102.50377' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-BL' + lDAPDisplayName = 'msExchUMDialPlanDefaultAutoAttendantBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-BL' + OID = '1.2.840.113556.1.4.7000.102.50449' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-Link' + lDAPDisplayName = 'msExchUMDialPlanDefaultAutoAttendantLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Default-Auto-Attendant-Link' + OID = '1.2.840.113556.1.4.7000.102.50448' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Dialed-Numbers' + lDAPDisplayName = 'msExchUMDialPlanDialedNumbers' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Dialed-Numbers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Dial-Plan-Dialed-Numbers' + OID = '1.2.840.113556.1.4.7000.102.51348' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Flags' + lDAPDisplayName = 'msExchUMDialPlanFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Flags' + OID = '1.2.840.113556.1.4.7000.102.50843' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Flags-2' + lDAPDisplayName = 'msExchUMDialPlanFlags2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Flags-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Flags-2' + OID = '1.2.840.113556.1.4.7000.102.50906' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Prompt-Change-Key' + lDAPDisplayName = 'msExchUMDialPlanPromptChangeKey' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Prompt-Change-Key' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Prompt-Change-Key' + OID = '1.2.840.113556.1.4.7000.102.51330' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Subscribers-Allowed' + lDAPDisplayName = 'msExchUMDialPlanSubscribersAllowed' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Subscribers-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Subscribers-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50430' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Subscriber-Type' + lDAPDisplayName = 'msExchUMDialPlanSubscriberType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Subscriber-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Subscriber-Type' + OID = '1.2.840.113556.1.4.7000.102.50903' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Timezone' + lDAPDisplayName = 'msExchUMDialPlanTimezone' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Timezone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Timezone' + OID = '1.2.840.113556.1.4.7000.102.51613' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-URI-Type' + lDAPDisplayName = 'msExchUMDialPlanURIType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-URI-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-URI-Type' + OID = '1.2.840.113556.1.4.7000.102.50776' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Dial-Plan-Voip-Security' + lDAPDisplayName = 'msExchUMDialPlanVoipSecurity' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Dial-Plan-Voip-Security' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Dial-Plan-Voip-Security' + OID = '1.2.840.113556.1.4.7000.102.50838' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Disambiguation-Field' + lDAPDisplayName = 'msExchUMDisambiguationField' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Disambiguation-Field' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Disambiguation-Field' + OID = '1.2.840.113556.1.4.7000.102.50446' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-BL' + lDAPDisplayName = 'msExchUMDTMFFallbackAutoAttendantBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-BL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-BL' + OID = '1.2.840.113556.1.4.7000.102.50683' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-Link' + lDAPDisplayName = 'msExchUMDTMFFallbackAutoAttendantLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-DTMF-Fallback-Auto-Attendant-Link' + OID = '1.2.840.113556.1.4.7000.102.50682' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Dtmf-Map' + lDAPDisplayName = 'msExchUMDtmfMap' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Dtmf-Map' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Dtmf-Map' + OID = '1.2.840.113556.1.4.7000.102.50341' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Enabled-Flags' + lDAPDisplayName = 'msExchUMEnabledFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Enabled-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Enabled-Flags' + OID = '1.2.840.113556.1.4.7000.102.50335' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Enabled-Flags-2' + lDAPDisplayName = 'msExchUMEnabledFlags2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Enabled-Flags-2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Enabled-Flags-2' + OID = '1.2.840.113556.1.4.7000.102.50905' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Enabled-Text' + lDAPDisplayName = 'msExchUMEnabledText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Enabled-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Enabled-Text' + OID = '1.2.840.113556.1.4.7000.102.50364' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Equivalence-Dial-Plan' + lDAPDisplayName = 'msExchUMEquivalenceDialPlan' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Equivalence-Dial-Plan' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Equivalence-Dial-Plan' + OID = '1.2.840.113556.1.4.7000.102.50686' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Equivalent-Dial-Plan-Phone-Contexts' + lDAPDisplayName = 'msExchUMEquivalentDialPlanPhoneContexts' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Equivalent-Dial-Plan-Phone-Contexts' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Equivalent-Dial-Plan-Phone-Contexts' + OID = '1.2.840.113556.1.4.7000.102.51144' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Extension-Length-Numbers-Allowed' + lDAPDisplayName = 'msExchUMExtensionLengthNumbersAllowed' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Extension-Length-Numbers-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Extension-Length-Numbers-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50431' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Fax-Enabled' + lDAPDisplayName = 'msExchUMFaxEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Fax-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Fax-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50372' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Fax-Id' + lDAPDisplayName = 'msExchUMFaxId' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Fax-Id' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Fax-Id' + OID = '1.2.840.113556.1.4.7000.102.50362' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Fax-Message-Text' + lDAPDisplayName = 'msExchUMFaxMessageText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Fax-Message-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Fax-Message-Text' + OID = '1.2.840.113556.1.4.7000.102.50363' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Fax-Server-URI' + lDAPDisplayName = 'msExchUMFaxServerURI' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Fax-Server-URI' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Fax-Server-URI' + OID = '1.2.840.113556.1.4.7000.102.51433' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Forwarding-Address-Template' + lDAPDisplayName = 'msExchUMForwardingAddressTemplate' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Forwarding-Address-Template' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Forwarding-Address-Template' + OID = '1.2.840.113556.1.4.7000.102.51427' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Global-Call-Routing-Scheme' + lDAPDisplayName = 'msExchUMGlobalCallRoutingScheme' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Global-Call-Routing-Scheme' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Global-Call-Routing-Scheme' + OID = '1.2.840.113556.1.4.7000.102.51389' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Grammar-Generation-Schedule' + lDAPDisplayName = 'msExchUMGrammarGenerationSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Grammar-Generation-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Grammar-Generation-Schedule' + OID = '1.2.840.113556.1.4.7000.102.50685' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Hunt-Group-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMHuntGroupDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Hunt-Group-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Hunt-Group-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50455' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Hunt-Group-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMHuntGroupDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Hunt-Group-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Hunt-Group-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50454' +} +@{ + attributeSyntax = '2.5.5.6' + adminDisplayName = 'ms-Exch-UM-Hunt-Group-Number' + lDAPDisplayName = 'msExchUMHuntGroupNumber' + oMSyntax = 18 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Hunt-Group-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Hunt-Group-Number' + OID = '1.2.840.113556.1.4.7000.102.50393' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-In-Country-Number-Format' + lDAPDisplayName = 'msExchUMInCountryNumberFormat' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-In-Country-Number-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-In-Country-Number-Format' + OID = '1.2.840.113556.1.4.7000.102.50439' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Info-Announcement-File' + lDAPDisplayName = 'msExchUMInfoAnnouncementFile' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Info-Announcement-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Info-Announcement-File' + OID = '1.2.840.113556.1.4.7000.102.50433' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Info-Announcement-Status' + lDAPDisplayName = 'msExchUMInfoAnnouncementStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Info-Announcement-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Info-Announcement-Status' + OID = '1.2.840.113556.1.4.7000.102.50427' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Input-Retries' + lDAPDisplayName = 'msExchUMInputRetries' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Input-Retries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Input-Retries' + OID = '1.2.840.113556.1.4.7000.102.50387' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Input-Timeout' + lDAPDisplayName = 'msExchUMInputTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Input-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Input-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50386' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-International-Access-Code' + lDAPDisplayName = 'msExchUMInternationalAccessCode' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-International-Access-Code' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-International-Access-Code' + OID = '1.2.840.113556.1.4.7000.102.50436' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-International-Number-Format' + lDAPDisplayName = 'msExchUMInternationalNumberFormat' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-International-Number-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-International-Number-Format' + OID = '1.2.840.113556.1.4.7000.102.50440' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Address' + lDAPDisplayName = 'msExchUMIPGatewayAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Address' + OID = '1.2.840.113556.1.4.7000.102.50392' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMIPGatewayDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-IP-Gateway-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50395' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMIPGatewayDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50394' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Flags' + lDAPDisplayName = 'msExchUMIPGatewayFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Flags' + OID = '1.2.840.113556.1.4.7000.102.50774' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Flags2' + lDAPDisplayName = 'msExchUMIPGatewayFlags2' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Flags2' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Flags2' + OID = '1.2.840.113556.1.4.7000.102.51251' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Port' + lDAPDisplayName = 'msExchUMIPGatewayPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Port' + OID = '1.2.840.113556.1.4.7000.102.50775' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Server-BL' + lDAPDisplayName = 'msExchUMIPGatewayServerBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Server-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-IP-Gateway-Server-BL' + OID = '1.2.840.113556.1.4.7000.102.50397' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Server-Link' + lDAPDisplayName = 'msExchUMIPGatewayServerLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Server-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-IP-Gateway-Server-Link' + OID = '1.2.840.113556.1.4.7000.102.50396' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-IP-Gateway-Status' + lDAPDisplayName = 'msExchUMIPGatewayStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-IP-Gateway-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-IP-Gateway-Status' + OID = '1.2.840.113556.1.4.7000.102.50451' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-List-In-Directory-Search' + lDAPDisplayName = 'msExchUMListInDirectorySearch' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-List-In-Directory-Search' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-List-In-Directory-Search' + OID = '1.2.840.113556.1.4.7000.102.50342' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Load-Balancer-FQDN' + lDAPDisplayName = 'msExchUMLoadBalancerFQDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Load-Balancer-FQDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Load-Balancer-FQDN' + OID = '1.2.840.113556.1.4.7000.102.51397' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Logon-Failures-Before-Disconnect' + lDAPDisplayName = 'msExchUMLogonFailuresBeforeDisconnect' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Logon-Failures-Before-Disconnect' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Logon-Failures-Before-Disconnect' + OID = '1.2.840.113556.1.4.7000.102.50410' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Logon-Failures-Before-PIN-Reset' + lDAPDisplayName = 'msExchUMLogonFailuresBeforePINReset' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Logon-Failures-Before-PIN-Reset' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Logon-Failures-Before-PIN-Reset' + OID = '1.2.840.113556.1.4.7000.102.50722' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Mailbox-OVA-Language' + lDAPDisplayName = 'msExchUMMailboxOVALanguage' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Mailbox-OVA-Language' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Mailbox-OVA-Language' + OID = '1.2.840.113556.1.4.7000.102.51343' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMMailboxPolicyDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50527' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMMailboxPolicyDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Mailbox-Policy-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50526' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Max-Call-Duration' + lDAPDisplayName = 'msExchUMMaxCallDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Max-Call-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Max-Call-Duration' + OID = '1.2.840.113556.1.4.7000.102.50383' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Max-Greeting-Duration' + lDAPDisplayName = 'msExchUMMaxGreetingDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Max-Greeting-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Max-Greeting-Duration' + OID = '1.2.840.113556.1.4.7000.102.50337' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Maximum-ASR-Sessions-Allowed' + lDAPDisplayName = 'msExchUMMaximumASRSessionsAllowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Maximum-ASR-Sessions-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Maximum-ASR-Sessions-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50423' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Maximum-Calls-Allowed' + lDAPDisplayName = 'msExchUMMaximumCallsAllowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Maximum-Calls-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Maximum-Calls-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50420' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Maximum-Fax-Calls-Allowed' + lDAPDisplayName = 'msExchUMMaximumFaxCallsAllowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Maximum-Fax-Calls-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Maximum-Fax-Calls-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50421' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Maximum-TTS-Sessions-Allowed' + lDAPDisplayName = 'msExchUMMaximumTTSSessionsAllowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Maximum-TTS-Sessions-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Maximum-TTS-Sessions-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50422' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Max-Recording-Duration' + lDAPDisplayName = 'msExchUMMaxRecordingDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Max-Recording-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Max-Recording-Duration' + OID = '1.2.840.113556.1.4.7000.102.50384' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Missed-Call-Text' + lDAPDisplayName = 'msExchUMMissedCallText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Missed-Call-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Missed-Call-Text' + OID = '1.2.840.113556.1.4.7000.102.51261' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-National-Number-Prefix' + lDAPDisplayName = 'msExchUMNationalNumberPrefix' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-National-Number-Prefix' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-National-Number-Prefix' + OID = '1.2.840.113556.1.4.7000.102.50437' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-NDR-Req-Enabled' + lDAPDisplayName = 'msExchUMNDRReqEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-NDR-Req-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-NDR-Req-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50425' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Numbering-Plan-Digits' + lDAPDisplayName = 'msExchUMNumberingPlanDigits' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Numbering-Plan-Digits' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Numbering-Plan-Digits' + OID = '1.2.840.113556.1.4.7000.102.50369' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Operator-Extension' + lDAPDisplayName = 'msExchUMOperatorExtension' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Operator-Extension' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Operator-Extension' + OID = '1.2.840.113556.1.4.7000.102.50434' +} +@{ + attributeSyntax = '2.5.5.6' + adminDisplayName = 'ms-Exch-UM-Operator-Number' + lDAPDisplayName = 'msExchUMOperatorNumber' + oMSyntax = 18 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Operator-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Operator-Number' + OID = '1.2.840.113556.1.4.7000.102.50343' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Outcalls-Allowed' + lDAPDisplayName = 'msExchUMOutcallsAllowed' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Outcalls-Allowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Outcalls-Allowed' + OID = '1.2.840.113556.1.4.7000.102.50452' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Override-Extension' + lDAPDisplayName = 'msExchUMOverrideExtension' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Override-Extension' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Override-Extension' + OID = '1.2.840.113556.1.4.7000.102.50435' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Phone-Context' + lDAPDisplayName = 'msExchUMPhoneContext' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Phone-Context' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Phone-Context' + OID = '1.2.840.113556.1.4.7000.102.50445' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Phone-Provider' + lDAPDisplayName = 'msExchUMPhoneProvider' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Phone-Provider' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Phone-Provider' + OID = '1.2.840.113556.1.4.7000.102.51347' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Pilot-Identifier' + lDAPDisplayName = 'msExchUMPilotIdentifier' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Pilot-Identifier' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pilot-Identifier' + OID = '1.2.840.113556.1.4.7000.102.50453' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Pin-Checksum' + lDAPDisplayName = 'msExchUMPinChecksum' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Checksum' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Checksum' + OID = '1.2.840.113556.1.4.7000.102.50344' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Pin-Policy-Account-Lockout-Failures' + lDAPDisplayName = 'msExchUMPinPolicyAccountLockoutFailures' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Policy-Account-Lockout-Failures' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Policy-Account-Lockout-Failures' + OID = '1.2.840.113556.1.4.7000.102.50347' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Pin-Policy-Disallow-Common-Patterns' + lDAPDisplayName = 'msExchUMPinPolicyDisallowCommonPatterns' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Policy-Disallow-Common-Patterns' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Policy-Disallow-Common-Patterns' + OID = '1.2.840.113556.1.4.7000.102.50348' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Pin-Policy-Expiry-Days' + lDAPDisplayName = 'msExchUMPinPolicyExpiryDays' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Policy-Expiry-Days' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Policy-Expiry-Days' + OID = '1.2.840.113556.1.4.7000.102.50346' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Pin-Policy-Min-Password-Length' + lDAPDisplayName = 'msExchUMPinPolicyMinPasswordLength' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Policy-Min-Password-Length' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Policy-Min-Password-Length' + OID = '1.2.840.113556.1.4.7000.102.50345' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Pin-Policy-Number-Of-Previous-Passwords-Disallowed' + lDAPDisplayName = 'msExchUMPinPolicyNumberOfPreviousPasswordsDisallowed' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Pin-Policy-Number-Of-Previous-Passwords-Disallowed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Pin-Policy-Number-Of-Previous-Passwords-Disallowed' + OID = '1.2.840.113556.1.4.7000.102.50409' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Protect-Authenticated-Voice-Mail' + lDAPDisplayName = 'msExchUMProtectAuthenticatedVoiceMail' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Protect-Authenticated-Voice-Mail' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Protect-Authenticated-Voice-Mail' + OID = '1.2.840.113556.1.4.7000.102.51064' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Protected-Voice-Mail-Text' + lDAPDisplayName = 'msExchUMProtectedVoiceMailText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Protected-Voice-Mail-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Protected-Voice-Mail-Text' + OID = '1.2.840.113556.1.4.7000.102.51066' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Protect-Unauthenticated-Voice-Mail' + lDAPDisplayName = 'msExchUMProtectUnauthenticatedVoiceMail' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Protect-Unauthenticated-Voice-Mail' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Protect-Unauthenticated-Voice-Mail' + OID = '1.2.840.113556.1.4.7000.102.51063' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Query-Base-DN' + lDAPDisplayName = 'msExchUMQueryBaseDN' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Query-Base-DN' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Query-Base-DN' + OID = '1.2.840.113556.1.4.7000.102.50841' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Recipient-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMRecipientDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Recipient-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Recipient-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50389' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Recipient-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMRecipientDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Recipient-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Recipient-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50388' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Recording-Idle-Timeout' + lDAPDisplayName = 'msExchUMRecordingIdleTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Recording-Idle-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Recording-Idle-Timeout' + OID = '1.2.840.113556.1.4.7000.102.50385' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Redirect-Target' + lDAPDisplayName = 'msExchUMRedirectTarget' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Redirect-Target' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Redirect-Target' + OID = '1.2.840.113556.1.4.7000.102.51154' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Require-Protected-Play-On-Phone' + lDAPDisplayName = 'msExchUMRequireProtectedPlayOnPhone' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Require-Protected-Play-On-Phone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Require-Protected-Play-On-Phone' + OID = '1.2.840.113556.1.4.7000.102.51065' +} +@{ + attributeSyntax = '2.5.5.6' + adminDisplayName = 'ms-Exch-UM-Reset-Password-Value' + lDAPDisplayName = 'msExchUMResetPasswordValue' + oMSyntax = 18 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Reset-Password-Value' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Reset-Password-Value' + OID = '1.2.840.113556.1.4.7000.102.50373' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Reset-PIN-Text' + lDAPDisplayName = 'msExchUMResetPINText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Reset-PIN-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Reset-PIN-Text' + OID = '1.2.840.113556.1.4.7000.102.50365' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Send-Voice-Message-Enabled' + lDAPDisplayName = 'msExchUMSendVoiceMessageEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Send-Voice-Message-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Send-Voice-Message-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50429' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Send-Voice-Message-Scope' + lDAPDisplayName = 'msExchUMSendVoiceMessageScope' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Send-Voice-Message-Scope' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Send-Voice-Message-Scope' + OID = '1.2.840.113556.1.4.7000.102.50447' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Server-Dial-Plan-BL' + lDAPDisplayName = 'msExchUMServerDialPlanBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Server-Dial-Plan-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Server-Dial-Plan-BL' + OID = '1.2.840.113556.1.4.7000.102.50391' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Server-Dial-Plan-Link' + lDAPDisplayName = 'msExchUMServerDialPlanLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Server-Dial-Plan-Link' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Server-Dial-Plan-Link' + OID = '1.2.840.113556.1.4.7000.102.50390' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Server-Status' + lDAPDisplayName = 'msExchUMServerStatus' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Server-Status' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Server-Status' + OID = '1.2.840.113556.1.4.7000.102.50419' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Server-Writable-Flags' + lDAPDisplayName = 'msExchUMServerWritableFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Server-Writable-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Server-Writable-Flags' + OID = '1.2.840.113556.1.4.7000.102.50850' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Site-Redirect-Target' + lDAPDisplayName = 'msExchUMSiteRedirectTarget' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Site-Redirect-Target' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Site-Redirect-Target' + OID = '1.2.840.113556.1.4.7000.102.51349' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Source-Forest-Policy-Names' + lDAPDisplayName = 'msExchUMSourceForestPolicyNames' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Source-Forest-Policy-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Source-Forest-Policy-Names' + OID = '1.2.840.113556.1.4.7000.102.51643' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Speech-Grammar-Filter-List' + lDAPDisplayName = 'msExchUMSpeechGrammarFilterList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Speech-Grammar-Filter-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Speech-Grammar-Filter-List' + OID = '1.2.840.113556.1.4.7000.102.50879' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-UM-Spoken-Name' + lDAPDisplayName = 'msExchUMSpokenName' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Spoken-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Spoken-Name' + OID = '1.2.840.113556.1.4.7000.102.50336' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Startup-Mode' + lDAPDisplayName = 'msExchUMStartupMode' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Startup-Mode' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Startup-Mode' + OID = '1.2.840.113556.1.4.7000.102.51520' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Tcp-Listening-Port' + lDAPDisplayName = 'msExchUMTcpListeningPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Tcp-Listening-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Tcp-Listening-Port' + OID = '1.2.840.113556.1.4.7000.102.51253' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Template-BL' + lDAPDisplayName = 'msExchUMTemplateBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Template-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Template-BL' + OID = '1.2.840.113556.1.4.7000.102.50368' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-UM-Template-Link' + lDAPDisplayName = 'msExchUMTemplateLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-UM-Template-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Template-Link' + OID = '1.2.840.113556.1.4.7000.102.50367' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Throttling-Policy-State' + lDAPDisplayName = 'msExchUMThrottlingPolicyState' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Throttling-Policy-State' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Throttling-Policy-State' + OID = '1.2.840.113556.1.4.7000.102.51161' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Time-Zone' + lDAPDisplayName = 'msExchUMTimeZone' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Time-Zone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Time-Zone' + OID = '1.2.840.113556.1.4.7000.102.50681' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Tls-Listening-Port' + lDAPDisplayName = 'msExchUMTlsListeningPort' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Tls-Listening-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Tls-Listening-Port' + OID = '1.2.840.113556.1.4.7000.102.51254' +} +@{ + attributeSyntax = '2.5.5.6' + adminDisplayName = 'ms-Exch-UM-Trunk-Access-Code' + lDAPDisplayName = 'msExchUMTrunkAccessCode' + oMSyntax = 18 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Trunk-Access-Code' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Trunk-Access-Code' + OID = '1.2.840.113556.1.4.7000.102.50375' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Voice-Mail-Originator' + lDAPDisplayName = 'msExchUMVoiceMailOriginator' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Voice-Mail-Originator' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Voice-Mail-Originator' + OID = '1.2.840.113556.1.4.7000.102.50371' +} +@{ + attributeSyntax = '2.5.5.6' + adminDisplayName = 'ms-Exch-UM-Voice-Mail-Pilot-Numbers' + lDAPDisplayName = 'msExchUMVoiceMailPilotNumbers' + oMSyntax = 18 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Voice-Mail-Pilot-Numbers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-UM-Voice-Mail-Pilot-Numbers' + OID = '1.2.840.113556.1.4.7000.102.50370' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Voice-Mail-Text' + lDAPDisplayName = 'msExchUMVoiceMailText' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Voice-Mail-Text' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Voice-Mail-Text' + OID = '1.2.840.113556.1.4.7000.102.50366' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-UM-Week-Start-Day' + lDAPDisplayName = 'msExchUMWeekStartDay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Week-Start-Day' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Week-Start-Day' + OID = '1.2.840.113556.1.4.7000.102.51415' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-UM-Welcome-Greeting-Enabled' + lDAPDisplayName = 'msExchUMWelcomeGreetingEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Welcome-Greeting-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Welcome-Greeting-Enabled' + OID = '1.2.840.113556.1.4.7000.102.50426' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UM-Welcome-Greeting-File' + lDAPDisplayName = 'msExchUMWelcomeGreetingFile' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UM-Welcome-Greeting-File' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UM-Welcome-Greeting-File' + OID = '1.2.840.113556.1.4.7000.102.50432' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UNC-Password' + lDAPDisplayName = 'msExchUNCPassword' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UNC-Password' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UNC-Password' + OID = '1.2.840.113556.1.4.7000.102.15004' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-UNC-Username' + lDAPDisplayName = 'msExchUNCUsername' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-UNC-Username' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-UNC-Username' + OID = '1.2.840.113556.1.4.7000.102.15003' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Unified-Mailbox' + lDAPDisplayName = 'msExchUnifiedMailbox' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Unified-Mailbox' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Unified-Mailbox' + OID = '1.2.840.113556.1.4.7000.102.52136' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Unmerged-Atts-Pt' + lDAPDisplayName = 'msExchUnmergedAttsPt' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Unmerged-Atts-Pt' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Unmerged-Atts-Pt' + OID = '1.2.840.113556.1.4.7000.102.90' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Urgent-Critical' + lDAPDisplayName = 'msExchUrgentCritical' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Urgent-Critical' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Urgent-Critical' + OID = '1.2.840.113556.1.4.7000.102.51839' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Urgent-Overloaded' + lDAPDisplayName = 'msExchUrgentOverloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Urgent-Overloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Urgent-Overloaded' + OID = '1.2.840.113556.1.4.7000.102.51833' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Urgent-Underloaded' + lDAPDisplayName = 'msExchUrgentUnderloaded' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Urgent-Underloaded' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Urgent-Underloaded' + OID = '1.2.840.113556.1.4.7000.102.51832' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Usage-Location' + lDAPDisplayName = 'msExchUsageLocation' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Usage-Location' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Usage-Location' + OID = '1.2.840.113556.1.4.7000.102.51767' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Use-Excluded-Mailbox-Databases' + lDAPDisplayName = 'msExchUseExcludedMailboxDatabases' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Use-Excluded-Mailbox-Databases' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Use-Excluded-Mailbox-Databases' + OID = '1.2.840.113556.1.4.7000.102.51036' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Use-Included-Mailbox-Databases' + lDAPDisplayName = 'msExchUseIncludedMailboxDatabases' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Use-Included-Mailbox-Databases' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Use-Included-Mailbox-Databases' + OID = '1.2.840.113556.1.4.7000.102.51037' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Use-OAB' + lDAPDisplayName = 'msExchUseOAB' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Use-OAB' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Use-OAB' + OID = '1.2.840.113556.1.4.7000.102.69' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Use-OAB-BL' + lDAPDisplayName = 'msExchUseOABBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Use-OAB-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Use-OAB-BL' + OID = '1.2.840.113556.1.4.7000.102.70' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-User-Account-Control' + lDAPDisplayName = 'msExchUserAccountControl' + oMSyntax = 2 + Optional = $True + searchFlags = 25 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-User-Account-Control' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-User-Account-Control' + OID = '1.2.840.113556.1.4.7000.102.101' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-User-BL' + lDAPDisplayName = 'msExchUserBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-User-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-User-BL' + OID = '1.2.840.113556.1.4.7000.102.51260' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-User-Culture' + lDAPDisplayName = 'msExchUserCulture' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-User-Culture' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-User-Culture' + OID = '1.2.840.113556.1.4.7000.102.50773' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-User-Display-Name' + lDAPDisplayName = 'msExchUserDisplayName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-User-Display-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-User-Display-Name' + OID = '1.2.840.113556.1.4.7000.102.50924' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-User-Hold-Policies' + lDAPDisplayName = 'msExchUserHoldPolicies' + oMSyntax = 64 + Optional = $True + searchFlags = 11 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-User-Hold-Policies' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-User-Hold-Policies' + OID = '1.2.840.113556.1.4.7000.102.52071' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-User-Link' + lDAPDisplayName = 'msExchUserLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-User-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-User-Link' + OID = '1.2.840.113556.1.4.7000.102.50947' +} +@{ + attributeSyntax = '2.5.5.16' + adminDisplayName = 'ms-Exch-Version' + lDAPDisplayName = 'msExchVersion' + oMSyntax = 65 + Optional = $True + searchFlags = 8 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Version' + OID = '1.2.840.113556.1.4.7000.102.50853' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Virtual-Directory-Flags' + lDAPDisplayName = 'msExchVirtualDirectoryFlags' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Virtual-Directory-Flags' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Virtual-Directory-Flags' + OID = '1.2.840.113556.1.4.7000.102.52070' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Visibility-Mask' + lDAPDisplayName = 'msExchVisibilityMask' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Visibility-Mask' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Visibility-Mask' + OID = '1.2.840.113556.1.4.7000.102.9016' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Voice-Mailbox-ID' + lDAPDisplayName = 'msExchVoiceMailboxID' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Voice-Mailbox-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Voice-Mailbox-ID' + OID = '1.2.840.113556.1.4.7000.102.17019' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Voice-Mail-Preview-Partner-Address' + lDAPDisplayName = 'msExchVoiceMailPreviewPartnerAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Voice-Mail-Preview-Partner-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Voice-Mail-Preview-Partner-Address' + OID = '1.2.840.113556.1.4.7000.102.51434' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Voice-Mail-Preview-Partner-Assigned-ID' + lDAPDisplayName = 'msExchVoiceMailPreviewPartnerAssignedID' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Voice-Mail-Preview-Partner-Assigned-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Voice-Mail-Preview-Partner-Assigned-ID' + OID = '1.2.840.113556.1.4.7000.102.51541' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Delivery-Delay' + lDAPDisplayName = 'msExchVoiceMailPreviewPartnerMaxDeliveryDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Delivery-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Delivery-Delay' + OID = '1.2.840.113556.1.4.7000.102.51540' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Message-Duration' + lDAPDisplayName = 'msExchVoiceMailPreviewPartnerMaxMessageDuration' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Message-Duration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Voice-Mail-Preview-Partner-Max-Message-Duration' + OID = '1.2.840.113556.1.4.7000.102.51539' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-VPIM-Convert-Inbound' + lDAPDisplayName = 'msExchVPIMConvertInbound' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-VPIM-Convert-Inbound' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-VPIM-Convert-Inbound' + OID = '1.2.840.113556.1.4.7000.102.17008' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-VPIM-Convert-Outbound' + lDAPDisplayName = 'msExchVPIMConvertOutbound' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-VPIM-Convert-Outbound' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-VPIM-Convert-Outbound' + OID = '1.2.840.113556.1.4.7000.102.17009' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-WAC-Discovery-Endpoint' + lDAPDisplayName = 'msExchWACDiscoveryEndpoint' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-WAC-Discovery-Endpoint' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-WAC-Discovery-Endpoint' + OID = '1.2.840.113556.1.4.7000.102.52023' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Web-Access-Name' + lDAPDisplayName = 'msExchWebAccessName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Web-Access-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Web-Access-Name' + OID = '1.2.840.113556.1.4.7000.102.15007' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-When-Mailbox-Created' + lDAPDisplayName = 'msExchWhenMailboxCreated' + oMSyntax = 24 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-When-Mailbox-Created' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-When-Mailbox-Created' + OID = '1.2.840.113556.1.4.7000.102.51580' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-When-Soft-Deleted-Time' + lDAPDisplayName = 'msExchWhenSoftDeletedTime' + oMSyntax = 24 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-When-Soft-Deleted-Time' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-When-Soft-Deleted-Time' + OID = '1.2.840.113556.1.4.7000.102.51860' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Windows-Live-Account-URL' + lDAPDisplayName = 'msExchWindowsLiveAccountURL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Windows-Live-Account-URL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Windows-Live-Account-URL' + OID = '1.2.840.113556.1.4.7000.102.50989' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Windows-Live-Account-URL-Enabled' + lDAPDisplayName = 'msExchWindowsLiveAccountURLEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Windows-Live-Account-URL-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Windows-Live-Account-URL-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51029' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Windows-Live-ID' + lDAPDisplayName = 'msExchWindowsLiveID' + oMSyntax = 64 + Optional = $True + searchFlags = 9 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Windows-Live-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Windows-Live-ID' + OID = '1.2.840.113556.1.4.7000.102.51016' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Workload-Classification' + lDAPDisplayName = 'msExchWorkloadClassification' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Workload-Classification' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Workload-Classification' + OID = '1.2.840.113556.1.4.7000.102.51811' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Workload-Management-Is-Enabled' + lDAPDisplayName = 'msExchWorkloadManagementIsEnabled' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Workload-Management-Is-Enabled' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Workload-Management-Is-Enabled' + OID = '1.2.840.113556.1.4.7000.102.51807' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Workload-Management-Policy-BL' + lDAPDisplayName = 'msExchWorkloadManagementPolicyBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Workload-Management-Policy-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Workload-Management-Policy-BL' + OID = '1.2.840.113556.1.4.7000.102.51809' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Workload-Management-Policy-Link' + lDAPDisplayName = 'msExchWorkloadManagementPolicyLink' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Workload-Management-Policy-Link' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Workload-Management-Policy-Link' + OID = '1.2.840.113556.1.4.7000.102.51808' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Workload-Type' + lDAPDisplayName = 'msExchWorkloadType' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Workload-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Workload-Type' + OID = '1.2.840.113556.1.4.7000.102.51810' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Org-Group-Subtype-Name' + lDAPDisplayName = 'msOrg-GroupSubtypeName' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Org-Group-Subtype-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Org-Group-Subtype-Name' + OID = '1.2.840.113556.1.6.47.2.3' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Org-Is-Organizational-Group' + lDAPDisplayName = 'msOrg-IsOrganizational' + oMSyntax = 1 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Org-Is-Organizational-Group' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Org-Is-Organizational-Group' + OID = '1.2.840.113556.1.6.47.2.1' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Org-Leaders' + lDAPDisplayName = 'msOrg-Leaders' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Org-Leaders' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Org-Leaders' + OID = '1.2.840.113556.1.6.47.2.2' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Org-Leaders-BL' + lDAPDisplayName = 'msOrg-LeadersBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Org-Leaders-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Org-Leaders-BL' + OID = '1.2.840.113556.1.6.47.2.5' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Org-Other-Display-Names' + lDAPDisplayName = 'msOrg-OtherDisplayNames' + oMSyntax = 64 + Optional = $True + searchFlags = 17 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Org-Other-Display-Names' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Org-Other-Display-Names' + OID = '1.2.840.113556.1.6.47.2.4' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-MTA-Local-Cred' + lDAPDisplayName = 'mTALocalCred' + oMSyntax = 22 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MTA-Local-Cred' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MTA-Local-Cred' + OID = '1.2.840.113556.1.2.270' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-MTA-Local-Desig' + lDAPDisplayName = 'mTALocalDesig' + oMSyntax = 22 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-MTA-Local-Desig' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-MTA-Local-Desig' + OID = '1.2.840.113556.1.2.271' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-N-Address' + lDAPDisplayName = 'nAddress' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-N-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-N-Address' + OID = '1.2.840.113556.1.2.282' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-N-Address-Type' + lDAPDisplayName = 'nAddressType' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-N-Address-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-N-Address-Type' + OID = '1.2.840.113556.1.2.222' +} +@{ + AttributeSyntax = '2.5.5.4' + AdminDisplayName = 'Network-Address' + LdapDisplayName = 'networkAddress' + OMSyntax = 20 + MayBeContainedIn = @( + 'Server' + 'ms-Exch-Client-Access-Array' + 'ms-Exch-Protocol-Cfg-SIP-FE-Server' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Network-Address' + Optional = $True + IsDefunct = $False + AdminDescription = 'Network-Address' + OID = '1.2.840.113556.1.2.459' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Num-Of-Open-Retries' + lDAPDisplayName = 'numOfOpenRetries' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Num-Of-Open-Retries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Num-Of-Open-Retries' + OID = '1.2.840.113556.1.2.148' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Num-Of-Transfer-Retries' + lDAPDisplayName = 'numOfTransferRetries' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Num-Of-Transfer-Retries' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Num-Of-Transfer-Retries' + OID = '1.2.840.113556.1.2.134' +} +@{ + AttributeSyntax = '2.5.5.9' + AdminDisplayName = 'Object-Count' + LdapDisplayName = 'objectCount' + OMSyntax = 2 + MayBeContainedIn = @( + 'ms-Exch-Conference-Container' + 'ms-Exch-Conference-Site' + 'ms-Exch-CTP' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Object-Count' + Optional = $True + IsDefunct = $False + AdminDescription = 'Object-Count' + OID = '1.2.840.113556.1.4.506' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Obj-View-Containers' + lDAPDisplayName = 'objViewContainers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Obj-View-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Obj-View-Containers' + OID = '1.2.840.113556.1.2.545' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Off-Line-AB-Containers' + lDAPDisplayName = 'offLineABContainers' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Off-Line-AB-Containers' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Off-Line-AB-Containers' + OID = '1.2.840.113556.1.2.391' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Off-Line-AB-Schedule' + lDAPDisplayName = 'offLineABSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Off-Line-AB-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Off-Line-AB-Schedule' + OID = '1.2.840.113556.1.2.389' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Off-Line-AB-Server' + lDAPDisplayName = 'offLineABServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Off-Line-AB-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Off-Line-AB-Server' + OID = '1.2.840.113556.1.2.392' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Off-Line-AB-Style' + lDAPDisplayName = 'offLineABStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Off-Line-AB-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Off-Line-AB-Style' + OID = '1.2.840.113556.1.2.390' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-OOF-Reply-To-Originator' + lDAPDisplayName = 'oOFReplyToOriginator' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-OOF-Reply-To-Originator' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OOF-Reply-To-Originator' + OID = '1.2.840.113556.1.2.438' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Open-Retry-Interval' + lDAPDisplayName = 'openRetryInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Open-Retry-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Open-Retry-Interval' + OID = '1.2.840.113556.1.2.143' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Outbound-Sites' + lDAPDisplayName = 'outboundSites' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Outbound-Sites' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Outbound-Sites' + OID = '1.2.840.113556.1.2.0' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Outgoing-Msg-Size-Limit' + lDAPDisplayName = 'outgoingMsgSizeLimit' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Outgoing-Msg-Size-Limit' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Outgoing-Msg-Size-Limit' + OID = '1.2.840.113556.1.2.490' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-OWA-Server' + lDAPDisplayName = 'oWAServer' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-OWA-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-OWA-Server' + OID = '1.2.840.113556.1.2.608' +} +@{ + AttributeSyntax = '2.5.5.1' + AdminDisplayName = 'Owner' + LdapDisplayName = 'owner' + OMSyntax = 127 + MayBeContainedIn = @( + 'Application-Version' + 'Group' + 'groupOfUniqueNames' + 'ms-DS-App-Configuration' + 'ms-DS-App-Data' + 'ms-Exch-Add-In' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Owner' + Optional = $True + IsDefunct = $False + AdminDescription = 'Owner' + OID = '2.5.4.32' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Telephone-Personal-Pager' + lDAPDisplayName = 'personalPager' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Telephone-Personal-Pager' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Telephone-Personal-Pager' + OID = '1.2.840.113556.1.2.612' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-PF-Contacts' + lDAPDisplayName = 'pFContacts' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-PF-Contacts' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-PF-Contacts' + OID = '1.2.840.113556.1.2.75' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Physical-Delivery-Office-Name' + LdapDisplayName = 'physicalDeliveryOfficeName' + OMSyntax = 64 + MayBeContainedIn = @( + 'rFC822LocalPart' + 'ms-Exch-Public-Folder' + ) + SearchFlags = 5 + AdvancedView = $True + Name = 'Physical-Delivery-Office-Name' + Optional = $True + IsDefunct = $False + AdminDescription = 'Physical-Delivery-Office-Name' + OID = '2.5.4.19' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-Character-Set' + lDAPDisplayName = 'pOPCharacterSet' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-Character-Set' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-POP-Character-Set' + OID = '1.2.840.113556.1.2.468' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-POP-Content-Format' + lDAPDisplayName = 'pOPContentFormat' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-POP-Content-Format' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-POP-Content-Format' + OID = '1.2.840.113556.1.2.466' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Port-Number' + lDAPDisplayName = 'portNumber' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Port-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Port-Number' + OID = '1.2.840.113556.1.2.527' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Preserve-Internet-Content' + lDAPDisplayName = 'preserveInternetContent' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Preserve-Internet-Content' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Preserve-Internet-Content' + OID = '1.2.840.113556.1.2.556' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-PRMD' + lDAPDisplayName = 'pRMD' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-PRMD' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-PRMD' + OID = '1.2.840.113556.1.2.224' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Promo-Expiration' + lDAPDisplayName = 'promoExpiration' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Promo-Expiration' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Promo-Expiration' + OID = '1.2.840.113556.1.2.540' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Protocol-Settings' + lDAPDisplayName = 'protocolSettings' + oMSyntax = 64 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Protocol-Settings' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Protocol-Settings' + OID = '1.2.840.113556.1.2.528' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Proxy-Addresses' + LdapDisplayName = 'proxyAddresses' + OMSyntax = 64 + MayBeContainedIn = @( + ) + SearchFlags = 13 + AdvancedView = $True + Name = 'Proxy-Addresses' + Optional = $True + IsDefunct = $False + AdminDescription = 'Proxy-Addresses' + OID = '1.2.840.113556.1.2.210' + MustBeContainedIn = @( + ) +} +@{ + AttributeSyntax = '2.5.5.8' + AdminDisplayName = 'Proxy-Generation-Enabled' + LdapDisplayName = 'proxyGenerationEnabled' + OMSyntax = 1 + MayBeContainedIn = @( + 'ms-Exch-Addr-Type' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Proxy-Generation-Enabled' + Optional = $True + IsDefunct = $False + AdminDescription = 'Proxy-Generation-Enabled' + OID = '1.2.840.113556.1.2.523' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Proxy-Generator-DLL' + lDAPDisplayName = 'proxyGeneratorDLL' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Proxy-Generator-DLL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Proxy-Generator-DLL' + OID = '1.2.840.113556.1.2.328' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-P-Selector' + lDAPDisplayName = 'pSelector' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-P-Selector' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-P-Selector' + OID = '1.2.840.113556.1.2.285' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-P-Selector-Inbound' + lDAPDisplayName = 'pSelectorInbound' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-P-Selector-Inbound' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-P-Selector-Inbound' + OID = '1.2.840.113556.1.2.52' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Public-Delegates' + lDAPDisplayName = 'publicDelegates' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Public-Delegates' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Public-Delegates' + OID = '1.2.840.113556.1.2.238' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Public-Delegates-BL' + lDAPDisplayName = 'publicDelegatesBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Public-Delegates-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Public-Delegates-BL' + OID = '1.2.840.113556.1.2.295' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Purported-Search' + LdapDisplayName = 'purportedSearch' + OMSyntax = 64 + MayBeContainedIn = @( + 'ms-Exch-Generic-Policy' + ) + SearchFlags = 8 + AdvancedView = $True + Name = 'Purported-Search' + Optional = $True + IsDefunct = $False + AdminDescription = 'Purported-Search' + OID = '1.2.840.113556.1.4.886' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Quota-Notification-Schedule' + lDAPDisplayName = 'quotaNotificationSchedule' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Quota-Notification-Schedule' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Quota-Notification-Schedule' + OID = '1.2.840.113556.1.2.98' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Quota-Notification-Style' + lDAPDisplayName = 'quotaNotificationStyle' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Quota-Notification-Style' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Quota-Notification-Style' + OID = '1.2.840.113556.1.2.388' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.9' + Optional = $True + AdminDescription = 'Range-Lower' + AdminDisplayName = 'Range-Lower' + OID = '1.2.840.113556.1.2.34' + LdapDisplayName = 'rangeLower' + IsDefunct = $False + Name = 'Range-Lower' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-MCU-Container' + ) + MustBeContainedIn = @( + ) + OMSyntax = 2 + SearchFlags = 0 +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.9' + Optional = $True + AdminDescription = 'Range-Upper' + AdminDisplayName = 'Range-Upper' + OID = '1.2.840.113556.1.2.35' + LdapDisplayName = 'rangeUpper' + IsDefunct = $False + Name = 'Range-Upper' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-MCU-Container' + ) + MustBeContainedIn = @( + ) + OMSyntax = 2 + SearchFlags = 0 +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RAS-Callback-Number' + lDAPDisplayName = 'rASCallbackNumber' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RAS-Callback-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RAS-Callback-Number' + OID = '1.2.840.113556.1.2.315' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RAS-Phonebook-Entry-Name' + lDAPDisplayName = 'rASPhonebookEntryName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RAS-Phonebook-Entry-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RAS-Phonebook-Entry-Name' + OID = '1.2.840.113556.1.2.313' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-RAS-Phone-Number' + lDAPDisplayName = 'rASPhoneNumber' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RAS-Phone-Number' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RAS-Phone-Number' + OID = '1.2.840.113556.1.2.314' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-RAS-Remote-SRVR-Name' + lDAPDisplayName = 'rASRemoteSRVRName' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RAS-Remote-SRVR-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RAS-Remote-SRVR-Name' + OID = '1.2.840.113556.1.2.78' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Referral-List' + lDAPDisplayName = 'referralList' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Referral-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Referral-List' + OID = '1.2.840.113556.1.2.510' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Remote-Bridge-Head' + lDAPDisplayName = 'remoteBridgeHead' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Remote-Bridge-Head' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Bridge-Head' + OID = '1.2.840.113556.1.2.191' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Remote-Bridge-Head-Address' + lDAPDisplayName = 'remoteBridgeHeadAddress' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Remote-Bridge-Head-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Bridge-Head-Address' + OID = '1.2.840.113556.1.2.94' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Remote-Site' + lDAPDisplayName = 'remoteSite' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Remote-Site' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Remote-Site' + OID = '1.2.840.113556.1.2.27' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replicated-Object-Version' + lDAPDisplayName = 'replicatedObjectVersion' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Replicated-Object-Version' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replicated-Object-Version' + OID = '1.2.840.113556.1.2.604' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replication-Mail-Msg-Size' + lDAPDisplayName = 'replicationMailMsgSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Mail-Msg-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Mail-Msg-Size' + OID = '1.2.840.113556.1.2.103' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replication-Sensitivity' + lDAPDisplayName = 'replicationSensitivity' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Sensitivity' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Sensitivity' + OID = '1.2.840.113556.1.2.223' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Replication-Signature' + lDAPDisplayName = 'replicationSignature' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Replication-Signature' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Signature' + OID = '1.2.840.113556.1.4.7000.102.52' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Replication-Stagger' + lDAPDisplayName = 'replicationStagger' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Replication-Stagger' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Replication-Stagger' + OID = '1.2.840.113556.1.2.349' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Report-To-Originator' + lDAPDisplayName = 'reportToOriginator' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Report-To-Originator' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Report-To-Originator' + OID = '1.2.840.113556.1.2.206' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Report-To-Owner' + lDAPDisplayName = 'reportToOwner' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Report-To-Owner' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Report-To-Owner' + OID = '1.2.840.113556.1.2.207' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Req-Seq' + lDAPDisplayName = 'reqSeq' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Req-Seq' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Req-Seq' + OID = '1.2.840.113556.1.2.173' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Require-SSL' + lDAPDisplayName = 'requireSSL' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Require-SSL' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Require-SSL' + OID = '1.2.840.113556.1.2.560' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Responsible-Local-DXA' + lDAPDisplayName = 'responsibleLocalDXA' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Responsible-Local-DXA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Responsible-Local-DXA' + OID = '1.2.840.113556.1.2.298' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Return-Exact-Msg-Size' + lDAPDisplayName = 'returnExactMsgSize' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Return-Exact-Msg-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Return-Exact-Msg-Size' + OID = '1.2.840.113556.1.2.594' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Rid-Server' + lDAPDisplayName = 'ridServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Rid-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Rid-Server' + OID = '1.2.840.113556.1.2.346' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Root-Newsgroups-Folder-ID' + lDAPDisplayName = 'rootNewsgroupsFolderID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Root-Newsgroups-Folder-ID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Root-Newsgroups-Folder-ID' + OID = '1.2.840.113556.1.2.524' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Routing-List' + lDAPDisplayName = 'routingList' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Routing-List' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Routing-List' + OID = '1.2.840.113556.1.2.354' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-RTS-Checkpoint-Size' + lDAPDisplayName = 'rTSCheckpointSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RTS-Checkpoint-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RTS-Checkpoint-Size' + OID = '1.2.840.113556.1.2.152' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-RTS-Recovery-Timeout' + lDAPDisplayName = 'rTSRecoveryTimeout' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RTS-Recovery-Timeout' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RTS-Recovery-Timeout' + OID = '1.2.840.113556.1.2.151' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-RTS-Window-Size' + lDAPDisplayName = 'rTSWindowSize' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-RTS-Window-Size' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-RTS-Window-Size' + OID = '1.2.840.113556.1.2.153' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Runs-On' + lDAPDisplayName = 'runsOn' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Runs-On' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Runs-On' + OID = '1.2.840.113556.1.2.185' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Security-Policy' + lDAPDisplayName = 'securityPolicy' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Security-Policy' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Security-Policy' + OID = '1.2.840.113556.1.2.589' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Security-Protocol' + lDAPDisplayName = 'securityProtocol' + oMSyntax = 4 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Security-Protocol' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Security-Protocol' + OID = '1.2.840.113556.1.2.82' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Send-EMail-Message' + lDAPDisplayName = 'sendEMailMessage' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Send-EMail-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Send-EMail-Message' + OID = '1.2.840.113556.1.2.566' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Send-TNEF' + lDAPDisplayName = 'sendTNEF' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Send-TNEF' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Send-TNEF' + OID = '1.2.840.113556.1.2.492' +} +@{ + AttributeSyntax = '2.5.5.5' + AdminDisplayName = 'Serial-Number' + LdapDisplayName = 'serialNumber' + OMSyntax = 19 + MayBeContainedIn = @( + 'ms-Exch-Exchange-Server' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Serial-Number' + Optional = $True + IsDefunct = $False + AdminDescription = 'Serial-Number' + OID = '2.5.4.5' + MustBeContainedIn = @( + ) +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'Server-Name' + OID = '1.2.840.113556.1.4.223' + Optional = $True + LdapDisplayName = 'serverName' + MustBeContainedIn = @( + ) + Name = 'Server-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Print-ConnectionPolicy' + 'ms-Exch-Conference-Site' + ) + AdminDisplayName = 'Server-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 0 +} +@{ + AttributeSyntax = '2.5.5.9' + AdminDisplayName = 'Server-Role' + LdapDisplayName = 'serverRole' + OMSyntax = 2 + MayBeContainedIn = @( + 'ms-Exch-Exchange-Server' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Server-Role' + Optional = $True + IsDefunct = $False + AdminDescription = 'Server-Role' + OID = '1.2.840.113556.1.4.157' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Service-Action-First' + lDAPDisplayName = 'serviceActionFirst' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Action-First' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Action-First' + OID = '1.2.840.113556.1.2.161' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Service-Action-Other' + lDAPDisplayName = 'serviceActionOther' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Action-Other' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Action-Other' + OID = '1.2.840.113556.1.2.59' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Service-Action-Second' + lDAPDisplayName = 'serviceActionSecond' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Action-Second' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Action-Second' + OID = '1.2.840.113556.1.2.60' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Service-Restart-Delay' + lDAPDisplayName = 'serviceRestartDelay' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Restart-Delay' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Restart-Delay' + OID = '1.2.840.113556.1.2.162' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Service-Restart-Message' + lDAPDisplayName = 'serviceRestartMessage' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Service-Restart-Message' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Service-Restart-Message' + OID = '1.2.840.113556.1.2.58' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Session-Disconnect-Timer' + lDAPDisplayName = 'sessionDisconnectTimer' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Session-Disconnect-Timer' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Session-Disconnect-Timer' + OID = '1.2.840.113556.1.2.154' +} +@{ + AttributeSyntax = '2.5.5.1' + AdminDisplayName = 'Show-In-Address-Book' + LdapDisplayName = 'showInAddressBook' + OMSyntax = 127 + MayBeContainedIn = @( + 'ms-Exch-Base-Class' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Show-In-Address-Book' + Optional = $True + IsDefunct = $False + AdminDescription = 'Show-In-Address-Book' + OID = '1.2.840.113556.1.4.644' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Site-Folder-GUID' + lDAPDisplayName = 'siteFolderGUID' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Site-Folder-GUID' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Site-Folder-GUID' + OID = '1.2.840.113556.1.2.456' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Site-Folder-Server' + lDAPDisplayName = 'siteFolderServer' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Site-Folder-Server' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Site-Folder-Server' + OID = '1.2.840.113556.1.2.457' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Site-Proxy-Space' + lDAPDisplayName = 'siteProxySpace' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Site-Proxy-Space' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Site-Proxy-Space' + OID = '1.2.840.113556.1.2.385' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMIME-Alg-List-NA' + lDAPDisplayName = 'sMIMEAlgListNA' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMIME-Alg-List-NA' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-SMIME-Alg-List-NA' + OID = '1.2.840.113556.1.2.568' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMIME-Alg-List-Other' + lDAPDisplayName = 'sMIMEAlgListOther' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMIME-Alg-List-Other' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-SMIME-Alg-List-Other' + OID = '1.2.840.113556.1.2.569' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMIME-Alg-Selected-NA' + lDAPDisplayName = 'sMIMEAlgSelectedNA' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMIME-Alg-Selected-NA' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMIME-Alg-Selected-NA' + OID = '1.2.840.113556.1.2.570' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-SMIME-Alg-Selected-Other' + lDAPDisplayName = 'sMIMEAlgSelectedOther' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-SMIME-Alg-Selected-Other' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-SMIME-Alg-Selected-Other' + OID = '1.2.840.113556.1.2.571' +} +@{ + attributeSyntax = '2.5.5.11' + adminDisplayName = 'ms-Exch-Space-Last-Computed' + lDAPDisplayName = 'spaceLastComputed' + oMSyntax = 23 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Space-Last-Computed' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Space-Last-Computed' + OID = '1.2.840.113556.1.2.386' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-S-Selector' + lDAPDisplayName = 'sSelector' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-S-Selector' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-S-Selector' + OID = '1.2.840.113556.1.2.284' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-S-Selector-Inbound' + lDAPDisplayName = 'sSelectorInbound' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-S-Selector-Inbound' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-S-Selector-Inbound' + OID = '1.2.840.113556.1.2.46' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.12' + AdminDescription = 'State-Or-Province-Name' + OID = '2.5.4.8' + Optional = $True + LdapDisplayName = 'st' + MustBeContainedIn = @( + ) + Name = 'State-Or-Province-Name' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-Public-Folder' + ) + AdminDisplayName = 'State-Or-Province-Name' + IsDefunct = $False + OMSyntax = 64 + SearchFlags = 17 +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Submission-Cont-Length' + lDAPDisplayName = 'submissionContLength' + oMSyntax = 2 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Submission-Cont-Length' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Submission-Cont-Length' + OID = '1.2.840.113556.1.2.280' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Supported-Algorithms' + lDAPDisplayName = 'supportedAlgorithms' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Supported-Algorithms' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Supported-Algorithms' + OID = '1.2.840.113556.1.2.597' +} +@{ + AttributeSyntax = '2.5.5.10' + AdminDisplayName = 'Supported-Application-Context' + LdapDisplayName = 'supportedApplicationContext' + OMSyntax = 4 + MayBeContainedIn = @( + 'ms-Exch-Mail-Gateway' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Supported-Application-Context' + Optional = $True + IsDefunct = $False + AdminDescription = 'Supported-Application-Context' + OID = '2.5.4.30' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supporting-Stack' + lDAPDisplayName = 'supportingStack' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supporting-Stack' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supporting-Stack' + OID = '1.2.840.113556.1.2.28' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Supporting-Stack-BL' + lDAPDisplayName = 'supportingStackBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Supporting-Stack-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Supporting-Stack-BL' + OID = '1.2.840.113556.1.2.357' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Support-SMIME-Signatures' + lDAPDisplayName = 'supportSMIMESignatures' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Support-SMIME-Signatures' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Support-SMIME-Signatures' + OID = '1.2.840.113556.1.2.590' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Target-Address' + lDAPDisplayName = 'targetAddress' + oMSyntax = 64 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Target-Address' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Target-Address' + OID = '1.2.840.113556.1.2.352' +} +@{ + attributeSyntax = '2.5.5.4' + adminDisplayName = 'ms-Exch-Target-MTAs' + lDAPDisplayName = 'targetMTAs' + oMSyntax = 20 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Target-MTAs' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Target-MTAs' + OID = '1.2.840.113556.1.2.259' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Telephone-Assistant' + lDAPDisplayName = 'telephoneAssistant' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Telephone-Assistant' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Telephone-Assistant' + OID = '1.2.840.113556.1.2.79' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Temp-Assoc-Threshold' + lDAPDisplayName = 'tempAssocThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Temp-Assoc-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Temp-Assoc-Threshold' + OID = '1.2.840.113556.1.2.329' +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Text-Encoded-OR-Address' + LdapDisplayName = 'textEncodedORAddress' + OMSyntax = 64 + MayBeContainedIn = @( + ) + SearchFlags = 1 + AdvancedView = $True + Name = 'Text-Encoded-OR-Address' + Optional = $True + IsDefunct = $False + AdminDescription = 'Text-Encoded-OR-Address' + OID = '0.9.2342.19200300.100.1.2' + MustBeContainedIn = @( + ) +} +@{ + AttributeSyntax = '2.5.5.10' + AdminDisplayName = 'Picture' + LdapDisplayName = 'thumbnailPhoto' + OMSyntax = 4 + MayBeContainedIn = @( + 'Group' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Picture' + Optional = $True + IsDefunct = $False + AdminDescription = 'Picture' + OID = '2.16.840.1.113730.3.1.35' + MustBeContainedIn = @( + ) +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'Title' + LdapDisplayName = 'title' + OMSyntax = 64 + MayBeContainedIn = @( + 'ms-Exch-Public-Folder' + ) + SearchFlags = 16 + AdvancedView = $True + Name = 'Title' + Optional = $True + IsDefunct = $False + AdminDescription = 'Title' + OID = '2.5.4.12' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Tracking-Log-Path-Name' + lDAPDisplayName = 'trackingLogPathName' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Tracking-Log-Path-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Tracking-Log-Path-Name' + OID = '1.2.840.113556.1.2.347' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transfer-Retry-Interval' + lDAPDisplayName = 'transferRetryInterval' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transfer-Retry-Interval' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transfer-Retry-Interval' + OID = '1.2.840.113556.1.2.133' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transfer-Timeout-Non-Urgent' + lDAPDisplayName = 'transferTimeoutNonUrgent' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transfer-Timeout-Non-Urgent' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transfer-Timeout-Non-Urgent' + OID = '1.2.840.113556.1.2.136' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transfer-Timeout-Normal' + lDAPDisplayName = 'transferTimeoutNormal' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transfer-Timeout-Normal' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transfer-Timeout-Normal' + OID = '1.2.840.113556.1.2.137' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Transfer-Timeout-Urgent' + lDAPDisplayName = 'transferTimeoutUrgent' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transfer-Timeout-Urgent' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transfer-Timeout-Urgent' + OID = '1.2.840.113556.1.2.142' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Translation-Table-Used' + lDAPDisplayName = 'translationTableUsed' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Translation-Table-Used' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Translation-Table-Used' + OID = '1.2.840.113556.1.2.396' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Transport-Expedited-Data' + lDAPDisplayName = 'transportExpeditedData' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Transport-Expedited-Data' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Transport-Expedited-Data' + OID = '1.2.840.113556.1.2.150' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Trans-Retry-Mins' + lDAPDisplayName = 'transRetryMins' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trans-Retry-Mins' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Trans-Retry-Mins' + OID = '1.2.840.113556.1.2.219' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Trans-Timeout-Mins' + lDAPDisplayName = 'transTimeoutMins' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trans-Timeout-Mins' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Trans-Timeout-Mins' + OID = '1.2.840.113556.1.2.220' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Trust-Level' + lDAPDisplayName = 'trustLevel' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Trust-Level' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Trust-Level' + OID = '1.2.840.113556.1.2.70' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-T-Selector' + lDAPDisplayName = 'tSelector' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-T-Selector' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-T-Selector' + OID = '1.2.840.113556.1.2.283' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-Turn-Request-Threshold' + lDAPDisplayName = 'turnRequestThreshold' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Turn-Request-Threshold' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Turn-Request-Threshold' + OID = '1.2.840.113556.1.2.38' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Two-Way-Alternate-Facility' + lDAPDisplayName = 'twoWayAlternateFacility' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Two-Way-Alternate-Facility' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Two-Way-Alternate-Facility' + OID = '1.2.840.113556.1.2.40' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-Type' + lDAPDisplayName = 'type' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Type' + OID = '1.2.840.113556.1.2.573' +} +@{ + attributeSyntax = '2.5.5.7' + adminDisplayName = 'ms-Exch-Unauth-Orig' + lDAPDisplayName = 'unauthOrig' + oMSyntax = 127 + Optional = $True + searchFlags = 16 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Unauth-Orig' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Unauth-Orig' + OID = '1.2.840.113556.1.2.221' +} +@{ + attributeSyntax = '2.5.5.1' + adminDisplayName = 'ms-Exch-Unauth-Orig-BL' + lDAPDisplayName = 'unauthOrigBL' + oMSyntax = 127 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $True + AdvancedView = $True + Name = 'ms-Exch-Unauth-Orig-BL' + IsDefunct = $False + SingleValued = $False + adminDescription = 'ms-Exch-Unauth-Orig-BL' + OID = '1.2.840.113556.1.2.292' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-Unmerged-Atts' + lDAPDisplayName = 'unmergedAtts' + oMSyntax = 4 + Optional = $True + searchFlags = 1 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Unmerged-Atts' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Unmerged-Atts' + OID = '1.2.840.113556.1.4.7000.102.48' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-Usenet-Site-Name' + lDAPDisplayName = 'usenetSiteName' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Usenet-Site-Name' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Usenet-Site-Name' + OID = '1.2.840.113556.1.2.484' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.10' + Optional = $True + AdminDescription = 'User-Cert' + AdminDisplayName = 'User-Cert' + OID = '1.2.840.113556.1.4.645' + LdapDisplayName = 'userCert' + IsDefunct = $False + Name = 'User-Cert' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'ms-Exch-Certificate-Information' + ) + MustBeContainedIn = @( + ) + OMSyntax = 4 + SearchFlags = 0 +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.10' + AdminDescription = 'X509-Cert' + OID = '2.5.4.36' + Optional = $True + LdapDisplayName = 'userCertificate' + MustBeContainedIn = @( + ) + Name = 'X509-Cert' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'inetOrgPerson' + 'ms-Exch-Certificate-Information' + ) + AdminDisplayName = 'X509-Cert' + IsDefunct = $False + OMSyntax = 4 + SearchFlags = 0 +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.10' + AdminDescription = 'User-SMIME-Certificate' + OID = '2.16.840.1.113730.3.140' + Optional = $True + LdapDisplayName = 'userSMIMECertificate' + MustBeContainedIn = @( + ) + Name = 'User-SMIME-Certificate' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'inetOrgPerson' + 'Mail-Recipient' + 'User' + 'ms-Exch-Certificate-Information' + ) + AdminDisplayName = 'User-SMIME-Certificate' + IsDefunct = $False + OMSyntax = 4 + SearchFlags = 0 +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-Use-Site-Values' + lDAPDisplayName = 'useSiteValues' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-Use-Site-Values' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-Use-Site-Values' + OID = '1.2.840.113556.1.2.478' +} +@{ + AdvancedView = $True + AttributeSyntax = '2.5.5.9' + AdminDescription = 'Version-Number' + OID = '1.2.840.113556.1.4.141' + Optional = $True + LdapDisplayName = 'versionNumber' + MustBeContainedIn = @( + ) + Name = 'Version-Number' + PartialAttributeSet = $True + MayBeContainedIn = @( + 'Application-Version' + 'Mail-Recipient' + 'ms-Exch-Active-Directory-Connector' + 'ms-Exch-Connection-Agreement' + 'ms-Exch-Schema-Map-Policy' + 'ms-Exch-DXA-Site-Server' + 'ms-Exch-Remote-DXA' + 'ms-Exch-Exchange-Server' + 'ms-Exch-Connector' + 'ms-Exch-Protocol-Cfg-SMTP-Container' + 'ms-Exch-Domain-Content-Config' + 'ms-Exch-SMTP-Turf-List' + 'ms-Exch-Country-List' + 'ms-Exch-Protocol-Cfg-SIP-FE-Server' + 'ms-Exch-MSO-Forward-Sync-Cookie' + ) + AdminDisplayName = 'Version-Number' + IsDefunct = $False + OMSyntax = 2 + SearchFlags = 8 +} +@{ + AttributeSyntax = '2.5.5.9' + AdminDisplayName = 'Version-Number-Hi' + LdapDisplayName = 'versionNumberHi' + OMSyntax = 2 + MayBeContainedIn = @( + 'Application-Version' + 'ms-Exch-Active-Directory-Connector' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'Version-Number-Hi' + Optional = $True + IsDefunct = $False + AdminDescription = 'Version-Number-Hi' + OID = '1.2.840.113556.1.4.328' + MustBeContainedIn = @( + ) +} +@{ + AttributeSyntax = '2.5.5.12' + AdminDisplayName = 'WWW-Home-Page' + LdapDisplayName = 'wWWHomePage' + OMSyntax = 64 + MayBeContainedIn = @( + 'ms-Exch-Conference-Site' + ) + SearchFlags = 0 + AdvancedView = $True + Name = 'WWW-Home-Page' + Optional = $True + IsDefunct = $False + AdminDescription = 'WWW-Home-Page' + OID = '1.2.840.113556.1.2.464' + MustBeContainedIn = @( + ) +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X25-Call-User-Data-Incoming' + lDAPDisplayName = 'x25CallUserDataIncoming' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Call-User-Data-Incoming' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Call-User-Data-Incoming' + OID = '1.2.840.113556.1.2.316' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X25-Call-User-Data-Outgoing' + lDAPDisplayName = 'x25CallUserDataOutgoing' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Call-User-Data-Outgoing' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Call-User-Data-Outgoing' + OID = '1.2.840.113556.1.2.317' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X25-Facilities-Data-Incoming' + lDAPDisplayName = 'x25FacilitiesDataIncoming' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Facilities-Data-Incoming' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Facilities-Data-Incoming' + OID = '1.2.840.113556.1.2.318' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X25-Facilities-Data-Outgoing' + lDAPDisplayName = 'x25FacilitiesDataOutgoing' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Facilities-Data-Outgoing' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Facilities-Data-Outgoing' + OID = '1.2.840.113556.1.2.319' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X25-Leased-Line-Port' + lDAPDisplayName = 'x25LeasedLinePort' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Leased-Line-Port' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Leased-Line-Port' + OID = '1.2.840.113556.1.2.321' +} +@{ + attributeSyntax = '2.5.5.8' + adminDisplayName = 'ms-Exch-X25-Leased-Or-Switched' + lDAPDisplayName = 'x25LeasedOrSwitched' + oMSyntax = 1 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Leased-Or-Switched' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Leased-Or-Switched' + OID = '1.2.840.113556.1.2.372' +} +@{ + attributeSyntax = '2.5.5.5' + adminDisplayName = 'ms-Exch-X25-Remote-MTA-Phone' + lDAPDisplayName = 'x25RemoteMTAPhone' + oMSyntax = 19 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X25-Remote-MTA-Phone' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X25-Remote-MTA-Phone' + OID = '1.2.840.113556.1.2.373' +} +@{ + attributeSyntax = '2.5.5.10' + adminDisplayName = 'ms-Exch-X400-Attachment-Type' + lDAPDisplayName = 'x400AttachmentType' + oMSyntax = 4 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X400-Attachment-Type' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X400-Attachment-Type' + OID = '1.2.840.113556.1.2.99' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-X400-Selector-Syntax' + lDAPDisplayName = 'x400SelectorSyntax' + oMSyntax = 10 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X400-Selector-Syntax' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X400-Selector-Syntax' + OID = '1.2.840.113556.1.2.443' +} +@{ + attributeSyntax = '2.5.5.12' + adminDisplayName = 'ms-Exch-X500-RDN' + lDAPDisplayName = 'x500RDN' + oMSyntax = 64 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-X500-RDN' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-X500-RDN' + OID = '1.2.840.113556.1.2.508' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-XMIT-Timeout-Non-Urgent' + lDAPDisplayName = 'xMITTimeoutNonUrgent' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-XMIT-Timeout-Non-Urgent' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-XMIT-Timeout-Non-Urgent' + OID = '1.2.840.113556.1.2.84' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-XMIT-Timeout-Normal' + lDAPDisplayName = 'xMITTimeoutNormal' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-XMIT-Timeout-Normal' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-XMIT-Timeout-Normal' + OID = '1.2.840.113556.1.2.67' +} +@{ + attributeSyntax = '2.5.5.9' + adminDisplayName = 'ms-Exch-XMIT-Timeout-Urgent' + lDAPDisplayName = 'xMITTimeoutUrgent' + oMSyntax = 2 + Optional = $True + searchFlags = 0 + PartialAttributeSet = $False + AdvancedView = $True + Name = 'ms-Exch-XMIT-Timeout-Urgent' + IsDefunct = $False + SingleValued = $True + adminDescription = 'ms-Exch-XMIT-Timeout-Urgent' + OID = '1.2.840.113556.1.2.53' +} \ No newline at end of file diff --git a/ADMF/internal/data/forestDefaults/schema/addefault_attributes.json b/ADMF/internal/data/forestDefaults/schema/addefault_attributes.json index b758043..1714f6f 100644 --- a/ADMF/internal/data/forestDefaults/schema/addefault_attributes.json +++ b/ADMF/internal/data/forestDefaults/schema/addefault_attributes.json @@ -6,7 +6,7 @@ "Name": "FRS-Extensions", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Extensions", "SearchFlags": 0, "AdvancedView": true, @@ -21,7 +21,7 @@ "Name": "ms-DS-Resultant-PSO", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Resultant password settings object applied to this object", "SearchFlags": 0, "AdvancedView": true, @@ -36,7 +36,7 @@ "Name": "ms-WMI-QueryLanguage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-QueryLanguage", "SearchFlags": 0, "AdvancedView": false, @@ -51,7 +51,7 @@ "Name": "Public-Key-Policy", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Public-Key-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -66,7 +66,7 @@ "Name": "ms-TS-Reconnection-Action", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Reconnection Action specifies whether to allow reconnection to a disconnected Terminal Services session from any client computer. The value is 1 if reconnection is allowed from the original client computer only, and 0 if reconnection from any client computer is allowed.", "SearchFlags": 0, "AdvancedView": true, @@ -81,7 +81,7 @@ "Name": "FRS-Fault-Condition", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Fault-Condition", "SearchFlags": 0, "AdvancedView": true, @@ -96,7 +96,7 @@ "Name": "ms-DS-Password-Settings-Precedence", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Password Settings Precedence", "SearchFlags": 0, "AdvancedView": true, @@ -111,7 +111,7 @@ "Name": "ms-WMI-ScopeGuid", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-ScopeGuid", "SearchFlags": 0, "AdvancedView": true, @@ -126,7 +126,7 @@ "Name": "Purported-Search", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Purported-Search", "SearchFlags": 0, "AdvancedView": true, @@ -141,7 +141,7 @@ "Name": "ms-TS-Broken-Connection-Action", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Broken Connection Action specifies the action to take when a Terminal Services session limit is reached. The value is 1 if the client session should be terminated, and 0 if the client session should be disconnected.", "SearchFlags": 0, "AdvancedView": true, @@ -156,7 +156,7 @@ "Name": "FRS-File-Filter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-File-Filter", "SearchFlags": 0, "AdvancedView": true, @@ -171,7 +171,7 @@ "Name": "ms-DS-Max-Values", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Max values allowed.", "SearchFlags": 0, "AdvancedView": true, @@ -186,7 +186,7 @@ "Name": "ms-WMI-SourceOrganization", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-SourceOrganization", "SearchFlags": 0, "AdvancedView": false, @@ -201,7 +201,7 @@ "Name": "Pwd-History-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pwd-History-Length", "SearchFlags": 0, "AdvancedView": true, @@ -216,7 +216,7 @@ "Name": "ms-TS-Connect-Client-Drives", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Connect Client Drives At Logon specifies whether to reconnect to mapped client drives at logon. The value is 1 if reconnection is enabled, and 0 if reconnection is disabled.", "SearchFlags": 0, "AdvancedView": true, @@ -231,7 +231,7 @@ "Name": "FRS-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -246,7 +246,7 @@ "Name": "ms-DS-Members-For-Az-Role", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of member application groups or users linked to Az-Role", "SearchFlags": 0, "AdvancedView": true, @@ -261,7 +261,7 @@ "Name": "ms-WMI-stringDefault", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-stringDefault", "SearchFlags": 0, "AdvancedView": false, @@ -276,7 +276,7 @@ "Name": "Pwd-Last-Set", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pwd-Last-Set", "SearchFlags": 0, "AdvancedView": true, @@ -291,7 +291,7 @@ "Name": "ms-TS-Connect-Printer-Drives", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Connect Printer Drives At Logon specifies whether to reconnect to mapped client printers at logon. The value is 1 if reconnection is enabled, and 0 if reconnection is disabled.", "SearchFlags": 0, "AdvancedView": true, @@ -306,7 +306,7 @@ "Name": "FRS-Level-Limit", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Level-Limit", "SearchFlags": 0, "AdvancedView": true, @@ -321,7 +321,7 @@ "Name": "ms-DS-Members-For-Az-Role-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back-link from member application group or user to Az-Role object(s) linking to it", "SearchFlags": 0, "AdvancedView": true, @@ -336,7 +336,7 @@ "Name": "ms-WMI-stringValidValues", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-WMI-stringValidValues", "SearchFlags": 0, "AdvancedView": false, @@ -351,7 +351,7 @@ "Name": "Pwd-Properties", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pwd-Properties", "SearchFlags": 0, "AdvancedView": true, @@ -366,7 +366,7 @@ "Name": "ms-TS-Default-To-Main-Printer", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Default To Main Printer specifies whether to print automatically to the client's default printer. The value is 1 if printing to the client's default printer is enabled, and 0 if it is disabled.", "SearchFlags": 0, "AdvancedView": true, @@ -381,7 +381,7 @@ "Name": "FRS-Member-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Member-Reference", "SearchFlags": 0, "PartialAttributeSet": true, @@ -397,7 +397,7 @@ "Name": "ms-DS-NC-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A bit field that maintains information about aspects of a NC replica that are relevant to replication.", "SearchFlags": 0, "AdvancedView": true, @@ -412,7 +412,7 @@ "Name": "ms-WMI-TargetClass", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-TargetClass", "SearchFlags": 0, "AdvancedView": false, @@ -427,7 +427,7 @@ "Name": "Quality-Of-Service", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Quality-Of-Service", "SearchFlags": 0, "AdvancedView": true, @@ -442,7 +442,7 @@ "Name": "ms-TS-Work-Directory", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Work Directory specifies the working directory path for the user. To set an initial application to start when the user logs on to the Terminal Server, you must first set the TerminalServicesInitialProgram property, and then set this property.", "SearchFlags": 0, "AdvancedView": true, @@ -457,7 +457,7 @@ "Name": "FRS-Member-Reference-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "FRS-Member-Reference-BL", "SearchFlags": 0, "AdvancedView": true, @@ -472,7 +472,7 @@ "Name": "ms-DS-Non-Members", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Non-Members", "SearchFlags": 0, "AdvancedView": true, @@ -487,7 +487,7 @@ "Name": "ms-WMI-TargetNameSpace", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-TargetNameSpace", "SearchFlags": 0, "AdvancedView": false, @@ -502,7 +502,7 @@ "Name": "Query-Filter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Query-Filter", "SearchFlags": 0, "AdvancedView": true, @@ -517,7 +517,7 @@ "Name": "ms-TS-Initial-Program", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Initial Program specifies the Path and file name of the application that the user wants to start automatically when the user logs on to the Terminal Server. To set an initial application to start when the user logs on, you must first set this property and then set the TerminalServicesWorkDirectory property. If you set only the TerminalServicesInitialProgram property, the application starts in the user's session in the default user directory.", "SearchFlags": 0, "AdvancedView": true, @@ -532,7 +532,7 @@ "Name": "FRS-Partner-Auth-Level", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Partner-Auth-Level", "SearchFlags": 0, "AdvancedView": true, @@ -547,7 +547,7 @@ "Name": "ms-DS-Non-Members-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MS-DS-Non-Members-BL", "SearchFlags": 0, "AdvancedView": true, @@ -562,7 +562,7 @@ "Name": "ms-WMI-TargetObject", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-WMI-TargetObject", "SearchFlags": 0, "AdvancedView": false, @@ -577,7 +577,7 @@ "Name": "Query-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Query-Policy-BL", "SearchFlags": 0, "AdvancedView": true, @@ -592,7 +592,7 @@ "Name": "ms-TS-Endpoint-Data", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute represents the VM Name for machine in TSV deployment.", "SearchFlags": 0, "AdvancedView": true, @@ -607,7 +607,7 @@ "Name": "FRS-Primary-Member", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Primary-Member", "SearchFlags": 0, "AdvancedView": true, @@ -622,7 +622,7 @@ "Name": "ms-DS-Phonetic-First-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the phonetic given name or first name of the person.", "SearchFlags": 5, "PartialAttributeSet": true, @@ -640,7 +640,7 @@ "Name": "ms-WMI-TargetPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-TargetPath", "SearchFlags": 0, "AdvancedView": false, @@ -655,7 +655,7 @@ "Name": "Query-Policy-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Query-Policy-Object", "SearchFlags": 0, "AdvancedView": true, @@ -670,7 +670,7 @@ "Name": "ms-TS-Endpoint-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute defines if the machine is a physical machine or a virtual machine.", "SearchFlags": 0, "AdvancedView": true, @@ -685,7 +685,7 @@ "Name": "FRS-Replica-Set-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Replica-Set-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -700,7 +700,7 @@ "Name": "ms-DS-Phonetic-Last-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the phonetic last name of the person.", "SearchFlags": 5, "PartialAttributeSet": true, @@ -718,7 +718,7 @@ "Name": "ms-WMI-TargetType", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-TargetType", "SearchFlags": 0, "AdvancedView": false, @@ -733,7 +733,7 @@ "Name": "QueryPoint", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "QueryPoint", "SearchFlags": 0, "AdvancedView": true, @@ -748,7 +748,7 @@ "Name": "ms-TS-Endpoint-Plugin", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute represents the name of the plugin which handles the orchestration.", "SearchFlags": 0, "AdvancedView": true, @@ -763,7 +763,7 @@ "Name": "FRS-Replica-Set-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Replica-Set-Type", "SearchFlags": 0, "AdvancedView": true, @@ -778,7 +778,7 @@ "Name": "ms-DS-Phonetic-Department", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the phonetic department name where the person works.", "SearchFlags": 5, "PartialAttributeSet": true, @@ -796,7 +796,7 @@ "Name": "Mscope-Id", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Mscope-Id", "SearchFlags": 0, "AdvancedView": true, @@ -811,7 +811,7 @@ "Name": "Range-Lower", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Range-Lower", "SearchFlags": 0, "PartialAttributeSet": true, @@ -827,7 +827,7 @@ "Name": "ms-TS-Primary-Desktop", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute represents the forward link to user's primary desktop.", "SearchFlags": 0, "AdvancedView": true, @@ -842,7 +842,7 @@ "Name": "FRS-Root-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Root-Path", "SearchFlags": 0, "AdvancedView": true, @@ -857,7 +857,7 @@ "Name": "ms-DS-Phonetic-Company-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the phonetic company name where the person works.", "SearchFlags": 5, "PartialAttributeSet": true, @@ -875,7 +875,7 @@ "Name": "Msi-File-List", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Msi-File-List", "SearchFlags": 0, "AdvancedView": true, @@ -890,7 +890,7 @@ "Name": "Range-Upper", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Range-Upper", "SearchFlags": 0, "PartialAttributeSet": true, @@ -906,7 +906,7 @@ "Name": "ms-TS-Secondary-Desktops", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute represents the array of forward links to user's secondary desktops.", "SearchFlags": 0, "AdvancedView": true, @@ -921,7 +921,7 @@ "Name": "FRS-Root-Security", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Root-Security", "SearchFlags": 0, "AdvancedView": true, @@ -936,7 +936,7 @@ "Name": "ms-DS-Phonetic-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The phonetic display name of an object. In the absence of a phonetic display name the existing display name is used.", "SearchFlags": 5, "PartialAttributeSet": true, @@ -955,7 +955,7 @@ "Name": "Msi-Script", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Msi-Script", "SearchFlags": 0, "AdvancedView": true, @@ -970,7 +970,7 @@ "Name": "RDN", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RDN", "SearchFlags": 13, "PartialAttributeSet": true, @@ -986,7 +986,7 @@ "Name": "ms-TS-Primary-Desktop-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute represents the backward link to user.", "SearchFlags": 0, "AdvancedView": true, @@ -1001,7 +1001,7 @@ "Name": "Account-Expires", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Account-Expires", "SearchFlags": 16, "AdvancedView": true, @@ -1016,7 +1016,7 @@ "Name": "FRS-Service-Command", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Service-Command", "SearchFlags": 0, "AdvancedView": true, @@ -1031,7 +1031,7 @@ "Name": "ms-DS-HAB-Seniority-Index", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the seniority index as applied by the organization where the person works.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -1049,7 +1049,7 @@ "Name": "Msi-Script-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Msi-Script-Name", "SearchFlags": 0, "AdvancedView": true, @@ -1064,7 +1064,7 @@ "Name": "RDN-Att-ID", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RDN-Att-ID", "SearchFlags": 0, "AdvancedView": true, @@ -1079,7 +1079,7 @@ "Name": "ms-TS-Secondary-Desktop-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute represents the backward link to user.", "SearchFlags": 0, "AdvancedView": true, @@ -1094,7 +1094,7 @@ "Name": "FRS-Service-Command-Status", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Service-Command-Status", "SearchFlags": 0, "AdvancedView": true, @@ -1109,7 +1109,7 @@ "Name": "ms-DS-Promotion-Settings", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Computer, contains a XML string to be used for delegated DSA promotion", "SearchFlags": 0, "AdvancedView": true, @@ -1124,7 +1124,7 @@ "Name": "Msi-Script-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Msi-Script-Path", "SearchFlags": 0, "AdvancedView": true, @@ -1139,7 +1139,7 @@ "Name": "Registered-Address", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Registered-Address", "SearchFlags": 0, "AdvancedView": true, @@ -1156,7 +1156,7 @@ "Name": "MS-TS-Property01", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Placeholder Terminal Server Property 01", "SearchFlags": 1, "AdvancedView": true, @@ -1171,7 +1171,7 @@ "Name": "Account-Name-History", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Account-Name-History", "SearchFlags": 0, "AdvancedView": true, @@ -1186,7 +1186,7 @@ "Name": "FRS-Staging-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Staging-Path", "SearchFlags": 0, "AdvancedView": true, @@ -1201,7 +1201,7 @@ "Name": "ms-DS-SiteName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Directory instance (DSA), Identifies the site name that contains the DSA", "SearchFlags": 0, "AdvancedView": true, @@ -1216,7 +1216,7 @@ "Name": "Msi-Script-Size", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Msi-Script-Size", "SearchFlags": 0, "AdvancedView": true, @@ -1231,7 +1231,7 @@ "Name": "Remote-Server-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Remote-Server-Name", "SearchFlags": 0, "AdvancedView": true, @@ -1246,7 +1246,7 @@ "Name": "MS-TS-Property02", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Placeholder Terminal Server Property 02", "SearchFlags": 1, "AdvancedView": true, @@ -1261,7 +1261,7 @@ "Name": "ACS-Aggregate-Token-Rate-Per-User", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Aggregate-Token-Rate-Per-User", "SearchFlags": 0, "AdvancedView": true, @@ -1276,7 +1276,7 @@ "Name": "FRS-Time-Last-Command", "OMSyntax": 23, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Time-Last-Command", "SearchFlags": 0, "AdvancedView": true, @@ -1291,7 +1291,7 @@ "Name": "ms-DS-Supported-Encryption-Types", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The encryption algorithms supported by user, computer or trust accounts. The KDC uses this information while generating a service ticket for this account. Services/Computers may automatically update this attribute on their respective accounts in Active Directory, and therefore need write access to this attribute.", "SearchFlags": 0, "AdvancedView": true, @@ -1306,7 +1306,7 @@ "Name": "MSMQ-Authenticate", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Authenticate", "SearchFlags": 0, "PartialAttributeSet": true, @@ -1322,7 +1322,7 @@ "Name": "Remote-Source", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Remote-Source", "SearchFlags": 0, "AdvancedView": true, @@ -1337,7 +1337,7 @@ "Name": "MS-TS-ExpireDate", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "TS Expiration Date", "SearchFlags": 1, "AdvancedView": true, @@ -1352,7 +1352,7 @@ "Name": "ACS-Allocable-RSVP-Bandwidth", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Allocable-RSVP-Bandwidth", "SearchFlags": 0, "AdvancedView": true, @@ -1367,7 +1367,7 @@ "Name": "FRS-Time-Last-Config-Change", "OMSyntax": 23, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Time-Last-Config-Change", "SearchFlags": 0, "AdvancedView": true, @@ -1382,7 +1382,7 @@ "Name": "ms-DS-Trust-Forest-Trust-Info", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Trust-Forest-Trust-Info", "SearchFlags": 0, "PartialAttributeSet": true, @@ -1398,7 +1398,7 @@ "Name": "MSMQ-Base-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Base-Priority", "SearchFlags": 0, "PartialAttributeSet": true, @@ -1414,7 +1414,7 @@ "Name": "Remote-Source-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Remote-Source-Type", "SearchFlags": 0, "AdvancedView": true, @@ -1429,7 +1429,7 @@ "Name": "MS-TS-ExpireDate2", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Expiration date of the second TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1444,7 +1444,7 @@ "Name": "ACS-Cache-Timeout", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Cache-Timeout", "SearchFlags": 0, "AdvancedView": true, @@ -1459,7 +1459,7 @@ "Name": "FRS-Update-Timeout", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Update-Timeout", "SearchFlags": 0, "AdvancedView": true, @@ -1474,7 +1474,7 @@ "Name": "ms-DS-Tombstone-Quota-Factor", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The percentage factor by which tombstone object count should be reduced for the purpose of quota accounting.", "SearchFlags": 0, "AdvancedView": true, @@ -1489,7 +1489,7 @@ "Name": "MSMQ-Computer-Type", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Computer-Type", "SearchFlags": 0, "AdvancedView": true, @@ -1504,7 +1504,7 @@ "Name": "Remote-Storage-GUID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Remote-Storage-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -1519,7 +1519,7 @@ "Name": "MS-TS-ExpireDate3", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Expiration date of the third TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1534,7 +1534,7 @@ "Name": "ACS-Direction", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Direction", "SearchFlags": 0, "AdvancedView": true, @@ -1549,7 +1549,7 @@ "Name": "FRS-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Version", "SearchFlags": 0, "AdvancedView": true, @@ -1564,7 +1564,7 @@ "Name": "ms-DS-Top-Quota-Usage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The list of top quota users ordered by decreasing quota usage currently in the directory database.", "SearchFlags": 0, "AdvancedView": true, @@ -1579,7 +1579,7 @@ "Name": "MSMQ-Computer-Type-Ex", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Computer-Type-Ex", "SearchFlags": 0, "AdvancedView": true, @@ -1594,7 +1594,7 @@ "Name": "Repl-Property-Meta-Data", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Repl-Property-Meta-Data", "SearchFlags": 8, "PartialAttributeSet": true, @@ -1610,7 +1610,7 @@ "Name": "MS-TS-ExpireDate4", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Expiration date of the fourth TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1625,7 +1625,7 @@ "Name": "ACS-DSBM-DeadTime", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-DSBM-DeadTime", "SearchFlags": 0, "AdvancedView": true, @@ -1640,7 +1640,7 @@ "Name": "FRS-Version-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Version-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -1655,7 +1655,7 @@ "Name": "MS-DS-Machine-Account-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-DS-Machine-Account-Quota", "SearchFlags": 0, "AdvancedView": true, @@ -1670,7 +1670,7 @@ "Name": "MSMQ-Cost", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Cost", "SearchFlags": 0, "AdvancedView": true, @@ -1685,7 +1685,7 @@ "Name": "Repl-Topology-Stay-Of-Execution", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Repl-Topology-Stay-Of-Execution", "SearchFlags": 0, "AdvancedView": true, @@ -1700,7 +1700,7 @@ "Name": "MS-TS-LicenseVersion", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "TS License Version", "SearchFlags": 1, "AdvancedView": true, @@ -1715,7 +1715,7 @@ "Name": "ACS-DSBM-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-DSBM-Priority", "SearchFlags": 0, "AdvancedView": true, @@ -1730,7 +1730,7 @@ "Name": "FRS-Working-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Working-Path", "SearchFlags": 0, "AdvancedView": true, @@ -1745,7 +1745,7 @@ "Name": "ms-DS-Object-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A link to the object that uses the data stored in the object that contains this attribute.", "SearchFlags": 0, "AdvancedView": false, @@ -1764,7 +1764,7 @@ "Name": "MSMQ-CSP-Name", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-CSP-Name", "SearchFlags": 0, "AdvancedView": true, @@ -1779,7 +1779,7 @@ "Name": "Repl-UpToDate-Vector", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Repl-UpToDate-Vector", "SearchFlags": 0, "PartialAttributeSet": true, @@ -1795,7 +1795,7 @@ "Name": "MS-TS-LicenseVersion2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version of the second TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1810,7 +1810,7 @@ "Name": "ACS-DSBM-Refresh", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-DSBM-Refresh", "SearchFlags": 0, "AdvancedView": true, @@ -1825,7 +1825,7 @@ "Name": "FSMO-Role-Owner", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FSMO-Role-Owner", "SearchFlags": 1, "AdvancedView": true, @@ -1840,7 +1840,7 @@ "Name": "ms-DS-Object-Reference-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back link for ms-DS-Object-Reference.", "SearchFlags": 0, "AdvancedView": false, @@ -1857,7 +1857,7 @@ "Name": "MSMQ-Dependent-Client-Service", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Dependent-Client-Service", "SearchFlags": 0, "AdvancedView": true, @@ -1872,7 +1872,7 @@ "Name": "Replica-Source", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Replica-Source", "SearchFlags": 0, "AdvancedView": true, @@ -1887,7 +1887,7 @@ "Name": "MS-TS-LicenseVersion3", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version of the third TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1902,7 +1902,7 @@ "Name": "ACS-Enable-ACS-Service", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Enable-ACS-Service", "SearchFlags": 0, "AdvancedView": true, @@ -1917,7 +1917,7 @@ "Name": "Garbage-Coll-Period", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Garbage-Coll-Period", "SearchFlags": 0, "AdvancedView": true, @@ -1932,7 +1932,7 @@ "Name": "ms-DS-Operations-For-Az-Role", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of operations linked to Az-Role", "SearchFlags": 0, "AdvancedView": true, @@ -1947,7 +1947,7 @@ "Name": "MSMQ-Dependent-Client-Services", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Dependent-Client-Services", "SearchFlags": 0, "PartialAttributeSet": true, @@ -1963,7 +1963,7 @@ "Name": "Reports", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Reports", "SearchFlags": 0, "AdvancedView": true, @@ -1978,7 +1978,7 @@ "Name": "MS-TS-LicenseVersion4", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version of the fourth TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -1993,7 +1993,7 @@ "Name": "ACS-Enable-RSVP-Accounting", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Enable-RSVP-Accounting", "SearchFlags": 0, "AdvancedView": true, @@ -2008,7 +2008,7 @@ "Name": "Generated-Connection", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Generated-Connection", "SearchFlags": 0, "AdvancedView": true, @@ -2023,7 +2023,7 @@ "Name": "ms-DS-Operations-For-Az-Role-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back-link from Az-Operation to Az-Role object(s) linking to it", "SearchFlags": 0, "AdvancedView": true, @@ -2038,7 +2038,7 @@ "Name": "MSMQ-Digests", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Digests", "SearchFlags": 1, "PartialAttributeSet": true, @@ -2054,7 +2054,7 @@ "Name": "Repl-Interval", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Repl-Interval", "SearchFlags": 0, "AdvancedView": true, @@ -2069,7 +2069,7 @@ "Name": "MS-TS-ManagingLS", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "TS Managing License Server", "SearchFlags": 1, "AdvancedView": true, @@ -2084,7 +2084,7 @@ "Name": "ACS-Enable-RSVP-Message-Logging", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Enable-RSVP-Message-Logging", "SearchFlags": 0, "AdvancedView": true, @@ -2099,7 +2099,7 @@ "Name": "Generation-Qualifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Generation-Qualifier", "SearchFlags": 0, "AdvancedView": true, @@ -2114,7 +2114,7 @@ "Name": "ms-DS-Operations-For-Az-Task", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of operations linked to Az-Task", "SearchFlags": 0, "AdvancedView": true, @@ -2129,7 +2129,7 @@ "Name": "MSMQ-Digests-Mig", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Digests-Mig", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2145,7 +2145,7 @@ "Name": "Reps-From", "OMSyntax": 127, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Reps-From", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2161,7 +2161,7 @@ "Name": "MS-TS-ManagingLS2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Issuer name of the second TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -2176,7 +2176,7 @@ "Name": "ACS-Event-Log-Level", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Event-Log-Level", "SearchFlags": 0, "AdvancedView": true, @@ -2191,7 +2191,7 @@ "Name": "Given-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Given-Name", "SearchFlags": 5, "PartialAttributeSet": true, @@ -2210,7 +2210,7 @@ "Name": "ms-DS-Operations-For-Az-Task-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back-link from Az-Operation to Az-Task object(s) linking to it", "SearchFlags": 0, "AdvancedView": true, @@ -2225,7 +2225,7 @@ "Name": "MSMQ-Ds-Service", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Ds-Service", "SearchFlags": 0, "AdvancedView": true, @@ -2240,7 +2240,7 @@ "Name": "Reps-To", "OMSyntax": 127, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Reps-To", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2256,7 +2256,7 @@ "Name": "MS-TS-ManagingLS3", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Issuer name of the third TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -2271,7 +2271,7 @@ "Name": "ACS-Identity-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ACS-Identity-Name", "SearchFlags": 0, "AdvancedView": true, @@ -2286,7 +2286,7 @@ "Name": "Global-Address-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Global-Address-List", "SearchFlags": 0, "AdvancedView": true, @@ -2301,7 +2301,7 @@ "Name": "ms-DS-Other-Settings", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Other-Settings", "SearchFlags": 0, "AdvancedView": true, @@ -2316,7 +2316,7 @@ "Name": "MSMQ-Ds-Services", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Ds-Services", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2332,7 +2332,7 @@ "Name": "Required-Categories", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Required-Categories", "SearchFlags": 1, "AdvancedView": true, @@ -2347,7 +2347,7 @@ "Name": "MS-TS-ManagingLS4", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Issuer name of the fourth TS per user CAL.", "SearchFlags": 1, "AdvancedView": true, @@ -2362,7 +2362,7 @@ "Name": "ACS-Max-Aggregate-Peak-Rate-Per-User", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Aggregate-Peak-Rate-Per-User", "SearchFlags": 0, "AdvancedView": true, @@ -2377,7 +2377,7 @@ "Name": "Governs-ID", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Governs-ID", "SearchFlags": 8, "AdvancedView": true, @@ -2392,7 +2392,7 @@ "Name": "ms-DS-Principal-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Account name for the security principal (constructed)", "SearchFlags": 0, "AdvancedView": true, @@ -2407,7 +2407,7 @@ "Name": "MSMQ-Encrypt-Key", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Encrypt-Key", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2423,7 +2423,7 @@ "Name": "Retired-Repl-DSA-Signatures", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Retired-Repl-DSA-Signatures", "SearchFlags": 0, "AdvancedView": true, @@ -2438,7 +2438,7 @@ "Name": "MS-TSLS-Property01", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Placeholder Terminal Server License Server Property 01", "SearchFlags": 1, "AdvancedView": true, @@ -2453,7 +2453,7 @@ "Name": "ACS-Max-Duration-Per-Flow", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Duration-Per-Flow", "SearchFlags": 0, "AdvancedView": true, @@ -2468,7 +2468,7 @@ "Name": "GP-Link", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GP-Link", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2484,7 +2484,7 @@ "Name": "ms-DS-Quota-Amount", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The assigned quota in terms of number of objects owned in the database.", "SearchFlags": 0, "AdvancedView": true, @@ -2499,7 +2499,7 @@ "Name": "MSMQ-Foreign", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Foreign", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2515,7 +2515,7 @@ "Name": "Token-Groups", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Token-Groups", "SearchFlags": 0, "AdvancedView": true, @@ -2530,7 +2530,7 @@ "Name": "MS-TSLS-Property02", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Placeholder Terminal Server License Server Property 02", "SearchFlags": 1, "AdvancedView": true, @@ -2545,7 +2545,7 @@ "Name": "ACS-Max-No-Of-Account-Files", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-No-Of-Account-Files", "SearchFlags": 0, "AdvancedView": true, @@ -2560,7 +2560,7 @@ "Name": "GP-Options", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GP-Options", "SearchFlags": 0, "AdvancedView": true, @@ -2575,7 +2575,7 @@ "Name": "ms-DS-Quota-Effective", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The effective quota for a security principal computed from the assigned quotas for a directory partition.", "SearchFlags": 0, "AdvancedView": true, @@ -2590,7 +2590,7 @@ "Name": "MSMQ-In-Routing-Servers", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-In-Routing-Servers", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2606,7 +2606,7 @@ "Name": "Token-Groups-Global-And-Universal", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Token-Groups-Global-And-Universal", "SearchFlags": 0, "AdvancedView": true, @@ -2621,7 +2621,7 @@ "Name": "ms-DFSR-DisablePacketPrivacy", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Disable packet privacy on a connection", "SearchFlags": 0, "AdvancedView": true, @@ -2638,7 +2638,7 @@ "Name": "ACS-Max-No-Of-Log-Files", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-No-Of-Log-Files", "SearchFlags": 0, "AdvancedView": true, @@ -2653,7 +2653,7 @@ "Name": "GPC-File-Sys-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GPC-File-Sys-Path", "SearchFlags": 0, "AdvancedView": true, @@ -2668,7 +2668,7 @@ "Name": "ms-DS-Quota-Trustee", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The SID of the security principal for which quota is being assigned.", "SearchFlags": 0, "AdvancedView": true, @@ -2683,7 +2683,7 @@ "Name": "MSMQ-Interval1", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Interval1", "SearchFlags": 0, "AdvancedView": true, @@ -2698,7 +2698,7 @@ "Name": "Token-Groups-No-GC-Acceptable", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Token-Groups-No-GC-Acceptable", "SearchFlags": 0, "AdvancedView": true, @@ -2713,7 +2713,7 @@ "Name": "ms-DFSR-DefaultCompressionExclusionFilter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Filter string containing extensions of file types not to be compressed", "SearchFlags": 0, "AdvancedView": true, @@ -2731,7 +2731,7 @@ "Name": "ACS-Max-Peak-Bandwidth", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Peak-Bandwidth", "SearchFlags": 0, "AdvancedView": true, @@ -2746,7 +2746,7 @@ "Name": "GPC-Functionality-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GPC-Functionality-Version", "SearchFlags": 0, "AdvancedView": true, @@ -2761,7 +2761,7 @@ "Name": "ms-DS-Quota-Used", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The current quota consumed by a security principal in the directory database.", "SearchFlags": 0, "AdvancedView": true, @@ -2776,7 +2776,7 @@ "Name": "MSMQ-Interval2", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Interval2", "SearchFlags": 0, "AdvancedView": true, @@ -2791,7 +2791,7 @@ "Name": "Revision", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Revision", "SearchFlags": 0, "AdvancedView": true, @@ -2806,7 +2806,7 @@ "Name": "ms-DFSR-OnDemandExclusionFileFilter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Filter string applied to on demand replication files", "SearchFlags": 0, "AdvancedView": true, @@ -2825,7 +2825,7 @@ "Name": "ACS-Max-Peak-Bandwidth-Per-Flow", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Peak-Bandwidth-Per-Flow", "SearchFlags": 0, "AdvancedView": true, @@ -2840,7 +2840,7 @@ "Name": "GPC-Machine-Extension-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GPC-Machine-Extension-Names", "SearchFlags": 0, "AdvancedView": true, @@ -2855,7 +2855,7 @@ "Name": "ms-DS-NC-Repl-Cursors", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-NC-Repl-Cursors", "SearchFlags": 0, "AdvancedView": true, @@ -2870,7 +2870,7 @@ "Name": "MSMQ-Journal", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Journal", "SearchFlags": 0, "PartialAttributeSet": true, @@ -2886,7 +2886,7 @@ "Name": "Rid", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Rid", "SearchFlags": 0, "AdvancedView": true, @@ -2901,7 +2901,7 @@ "Name": "ms-DFSR-OnDemandExclusionDirectoryFilter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Filter string applied to on demand replication directories", "SearchFlags": 0, "AdvancedView": true, @@ -2920,7 +2920,7 @@ "Name": "ACS-Max-Size-Of-RSVP-Account-File", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Size-Of-RSVP-Account-File", "SearchFlags": 0, "AdvancedView": true, @@ -2935,7 +2935,7 @@ "Name": "GPC-User-Extension-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GPC-User-Extension-Names", "SearchFlags": 0, "AdvancedView": true, @@ -2950,7 +2950,7 @@ "Name": "ms-DS-NC-Repl-Inbound-Neighbors", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-NC-Repl-Inbound-Neighbors", "SearchFlags": 0, "AdvancedView": true, @@ -2965,7 +2965,7 @@ "Name": "MSMQ-Journal-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Journal-Quota", "SearchFlags": 0, "AdvancedView": true, @@ -2980,7 +2980,7 @@ "Name": "RID-Allocation-Pool", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Allocation-Pool", "SearchFlags": 0, "AdvancedView": true, @@ -2995,7 +2995,7 @@ "Name": "ms-DFSR-Options2", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object Options2", "SearchFlags": 0, "AdvancedView": true, @@ -3021,7 +3021,7 @@ "Name": "ACS-Max-Size-Of-RSVP-Log-File", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Size-Of-RSVP-Log-File", "SearchFlags": 0, "AdvancedView": true, @@ -3036,7 +3036,7 @@ "Name": "GPC-WQL-Filter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GPC-WQL-Filter", "SearchFlags": 0, "AdvancedView": true, @@ -3051,7 +3051,7 @@ "Name": "ms-DS-NC-Repl-Outbound-Neighbors", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-NC-Repl-Outbound-Neighbors", "SearchFlags": 0, "AdvancedView": true, @@ -3066,7 +3066,7 @@ "Name": "MSMQ-Label", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Label", "SearchFlags": 1, "PartialAttributeSet": true, @@ -3082,7 +3082,7 @@ "Name": "RID-Available-Pool", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Available-Pool", "SearchFlags": 0, "AdvancedView": true, @@ -3097,7 +3097,7 @@ "Name": "ms-DFSR-CommonStagingPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of the common staging directory", "SearchFlags": 0, "AdvancedView": true, @@ -3114,7 +3114,7 @@ "Name": "ACS-Max-Token-Bucket-Per-Flow", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Token-Bucket-Per-Flow", "SearchFlags": 0, "AdvancedView": true, @@ -3129,7 +3129,7 @@ "Name": "Group-Attributes", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Group-Attributes", "SearchFlags": 1, "AdvancedView": true, @@ -3144,7 +3144,7 @@ "Name": "ms-DS-NC-Replica-Locations", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This is a list of servers that are the replica set for the corresponding Non-Domain Naming Context.", "SearchFlags": 0, "AdvancedView": true, @@ -3159,7 +3159,7 @@ "Name": "MSMQ-Label-Ex", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Label-Ex", "SearchFlags": 1, "PartialAttributeSet": true, @@ -3175,7 +3175,7 @@ "Name": "RID-Manager-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Manager-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -3190,7 +3190,7 @@ "Name": "ms-DFSR-CommonStagingSizeInMb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Size of the common staging directory in MB", "SearchFlags": 0, "AdvancedView": true, @@ -3207,7 +3207,7 @@ "Name": "ACS-Max-Token-Rate-Per-Flow", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Max-Token-Rate-Per-Flow", "SearchFlags": 0, "AdvancedView": true, @@ -3222,7 +3222,7 @@ "Name": "Group-Membership-SAM", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Group-Membership-SAM", "SearchFlags": 0, "AdvancedView": true, @@ -3237,7 +3237,7 @@ "Name": "ms-DS-NC-RO-Replica-Locations", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "a linked attribute on a cross ref object for a partition. This attribute lists the DSA instances which should host the partition in a readonly manner.", "SearchFlags": 0, "AdvancedView": true, @@ -3252,7 +3252,7 @@ "Name": "MSMQ-Long-Lived", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Long-Lived", "SearchFlags": 0, "AdvancedView": true, @@ -3267,7 +3267,7 @@ "Name": "RID-Next-RID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Next-RID", "SearchFlags": 0, "AdvancedView": true, @@ -3282,7 +3282,7 @@ "Name": "ms-DFSR-StagingCleanupTriggerInPercent", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Staging cleanup trigger in percent of free disk space", "SearchFlags": 0, "AdvancedView": true, @@ -3300,7 +3300,7 @@ "Name": "ACS-Maximum-SDU-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Maximum-SDU-Size", "SearchFlags": 0, "AdvancedView": true, @@ -3315,7 +3315,7 @@ "Name": "Group-Priority", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Group-Priority", "SearchFlags": 0, "AdvancedView": true, @@ -3330,7 +3330,7 @@ "Name": "ms-DS-NC-RO-Replica-Locations-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "backlink attribute for ms-DS-NC-RO-Replica-Locations.", "SearchFlags": 0, "AdvancedView": true, @@ -3345,7 +3345,7 @@ "Name": "MSMQ-Migrated", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Migrated", "SearchFlags": 0, "AdvancedView": true, @@ -3360,7 +3360,7 @@ "Name": "RID-Previous-Allocation-Pool", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Previous-Allocation-Pool", "SearchFlags": 0, "AdvancedView": true, @@ -3375,7 +3375,7 @@ "Name": "ms-DFS-Comment-v2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Comment associated with DFS root/link.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3391,7 +3391,7 @@ "Name": "ACS-Minimum-Delay-Variation", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Minimum-Delay-Variation", "SearchFlags": 0, "AdvancedView": true, @@ -3406,7 +3406,7 @@ "Name": "Group-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Group-Type", "SearchFlags": 9, "PartialAttributeSet": true, @@ -3422,7 +3422,7 @@ "Name": "ms-DS-Non-Security-Group-Extra-Classes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Non-Security-Group-Extra-Classes", "SearchFlags": 0, "AdvancedView": true, @@ -3437,7 +3437,7 @@ "Name": "MSMQ-Multicast-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Multicast-Address", "SearchFlags": 0, "PartialAttributeSet": true, @@ -3453,7 +3453,7 @@ "Name": "RID-Set-References", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "RID-Set-References", "SearchFlags": 8, "AdvancedView": true, @@ -3468,7 +3468,7 @@ "Name": "ms-DFS-Generation-GUID-v2", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "To be updated each time the entry containing this attribute is modified.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3484,7 +3484,7 @@ "Name": "ACS-Minimum-Latency", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Minimum-Latency", "SearchFlags": 0, "AdvancedView": true, @@ -3499,7 +3499,7 @@ "Name": "Groups-to-Ignore", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Groups-to-Ignore", "SearchFlags": 0, "AdvancedView": true, @@ -3514,7 +3514,7 @@ "Name": "MS-DS-Per-User-Trust-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Used to enforce a per-user quota for creating Trusted-Domain objects authorized by the control access right, \"Create inbound Forest trust\". This attribute limits the number of Trusted-Domain objects that can be created by a single non-admin user in the domain.", "SearchFlags": 0, "AdvancedView": true, @@ -3529,7 +3529,7 @@ "Name": "MSMQ-Name-Style", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Name-Style", "SearchFlags": 0, "AdvancedView": true, @@ -3544,7 +3544,7 @@ "Name": "RID-Used-Pool", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "RID-Used-Pool", "SearchFlags": 0, "AdvancedView": true, @@ -3559,7 +3559,7 @@ "Name": "ms-DFS-Last-Modified-v2", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "To be updated on each write to the entry containing the attribute.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3575,7 +3575,7 @@ "Name": "ACS-Minimum-Policed-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Minimum-Policed-Size", "SearchFlags": 0, "AdvancedView": true, @@ -3590,7 +3590,7 @@ "Name": "Has-Master-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Has-Master-NCs", "SearchFlags": 0, "AdvancedView": true, @@ -3605,7 +3605,7 @@ "Name": "MS-DS-Per-User-Trust-Tombstones-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Used to enforce a per-user quota for deleting Trusted-Domain objects when authorization is based on matching the user's SID to the value of MS-DS-Creator-SID on the Trusted-Domain object.", "SearchFlags": 0, "AdvancedView": true, @@ -3620,7 +3620,7 @@ "Name": "MSMQ-Nt4-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Nt4-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -3635,7 +3635,7 @@ "Name": "Rights-Guid", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Rights-Guid", "SearchFlags": 0, "AdvancedView": true, @@ -3650,7 +3650,7 @@ "Name": "ms-DFS-Link-Identity-GUID-v2", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "To be set only when the link is created. Stable across rename/move as long as link is not replaced by another link having same name.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3666,7 +3666,7 @@ "Name": "ACS-Non-Reserved-Max-SDU-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Max-SDU-Size", "SearchFlags": 0, "AdvancedView": true, @@ -3681,7 +3681,7 @@ "Name": "Has-Partial-Replica-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Has-Partial-Replica-NCs", "SearchFlags": 0, "AdvancedView": true, @@ -3696,7 +3696,7 @@ "Name": "ms-DS-Preferred-GC-Site", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Prefered-GC-Site", "SearchFlags": 0, "AdvancedView": true, @@ -3711,7 +3711,7 @@ "Name": "MSMQ-Nt4-Stub", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Nt4-Stub", "SearchFlags": 0, "AdvancedView": true, @@ -3726,7 +3726,7 @@ "Name": "Role-Occupant", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Role-Occupant", "SearchFlags": 0, "AdvancedView": true, @@ -3741,7 +3741,7 @@ "Name": "ms-DFS-Link-Path-v2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFS link path relative to the DFS root target share (i.e. without the server/domain and DFS namespace name components). Use forward slashes (/) instead of backslashes so that LDAP searches can be done without having to use escapes.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3757,7 +3757,7 @@ "Name": "ACS-Non-Reserved-Min-Policed-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Min-Policed-Size", "SearchFlags": 0, "AdvancedView": true, @@ -3772,7 +3772,7 @@ "Name": "Help-Data16", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Help-Data16", "SearchFlags": 0, "AdvancedView": true, @@ -3787,7 +3787,7 @@ "Name": "ms-DS-Repl-Attribute-Meta-Data", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Repl-Attribute-Meta-Data", "SearchFlags": 0, "AdvancedView": true, @@ -3802,7 +3802,7 @@ "Name": "MSMQ-OS-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-OS-Type", "SearchFlags": 0, "PartialAttributeSet": true, @@ -3818,7 +3818,7 @@ "Name": "roomNumber", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The room number of an object.", "SearchFlags": 0, "AdvancedView": false, @@ -3837,7 +3837,7 @@ "Name": "ms-DFS-Link-Security-Descriptor-v2", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Security descriptor of the DFS links's reparse point on the filesystem.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3853,7 +3853,7 @@ "Name": "ACS-Non-Reserved-Peak-Rate", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Peak-Rate", "SearchFlags": 0, "AdvancedView": true, @@ -3868,7 +3868,7 @@ "Name": "Help-Data32", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Help-Data32", "SearchFlags": 0, "AdvancedView": true, @@ -3883,7 +3883,7 @@ "Name": "ms-DS-Repl-Value-Meta-Data", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Repl-Value-Meta-Data", "SearchFlags": 0, "AdvancedView": true, @@ -3898,7 +3898,7 @@ "Name": "MSMQ-Out-Routing-Servers", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Out-Routing-Servers", "SearchFlags": 0, "PartialAttributeSet": true, @@ -3914,7 +3914,7 @@ "Name": "Root-Trust", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Root-Trust", "SearchFlags": 0, "AdvancedView": true, @@ -3929,7 +3929,7 @@ "Name": "ms-DFS-Namespace-Identity-GUID-v2", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "To be set only when the namespace is created. Stable across rename/move as long as namespace is not replaced by another namespace having same name.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -3945,7 +3945,7 @@ "Name": "ACS-Non-Reserved-Token-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Token-Size", "SearchFlags": 0, "AdvancedView": true, @@ -3960,7 +3960,7 @@ "Name": "Help-File-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Help-File-Name", "SearchFlags": 0, "AdvancedView": true, @@ -3975,7 +3975,7 @@ "Name": "MS-DS-Replicates-NC-Reason", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MS-DS-Replicates-NC-Reason", "SearchFlags": 0, "AdvancedView": true, @@ -3990,7 +3990,7 @@ "Name": "MSMQ-Owner-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Owner-ID", "SearchFlags": 9, "PartialAttributeSet": true, @@ -4006,7 +4006,7 @@ "Name": "rpc-Ns-Annotation", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "rpc-Ns-Annotation", "SearchFlags": 0, "AdvancedView": true, @@ -4021,7 +4021,7 @@ "Name": "ms-DFS-Properties-v2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Properties associated with DFS root/link.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4037,7 +4037,7 @@ "Name": "ACS-Non-Reserved-Tx-Limit", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Tx-Limit", "SearchFlags": 0, "AdvancedView": true, @@ -4052,7 +4052,7 @@ "Name": "Hide-From-AB", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Hide-From-AB", "SearchFlags": 0, "AdvancedView": true, @@ -4067,7 +4067,7 @@ "Name": "ms-DS-Replication-Notify-First-DSA-Delay", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute controls the delay between changes to the DS, and notification of the first replica partner for an NC.", "SearchFlags": 0, "AdvancedView": true, @@ -4082,7 +4082,7 @@ "Name": "MSMQ-Prev-Site-Gates", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Prev-Site-Gates", "SearchFlags": 0, "AdvancedView": true, @@ -4097,7 +4097,7 @@ "Name": "rpc-Ns-Bindings", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc-Ns-Bindings", "SearchFlags": 0, "AdvancedView": true, @@ -4112,7 +4112,7 @@ "Name": "ms-DFS-Schema-Major-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Major version of schema of DFS metadata.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4128,7 +4128,7 @@ "Name": "ACS-Non-Reserved-Tx-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Non-Reserved-Tx-Size", "SearchFlags": 0, "AdvancedView": true, @@ -4143,7 +4143,7 @@ "Name": "Home-Directory", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Home-Directory", "SearchFlags": 16, "AdvancedView": true, @@ -4160,7 +4160,7 @@ "Name": "ms-DS-Replication-Notify-Subsequent-DSA-Delay", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute controls the delay between notification of each subsequent replica partner for an NC.", "SearchFlags": 0, "AdvancedView": true, @@ -4175,7 +4175,7 @@ "Name": "MSMQ-Privacy-Level", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Privacy-Level", "SearchFlags": 0, "PartialAttributeSet": true, @@ -4191,7 +4191,7 @@ "Name": "rpc-Ns-Codeset", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc-Ns-Codeset", "SearchFlags": 0, "AdvancedView": true, @@ -4206,7 +4206,7 @@ "Name": "ms-DFS-Schema-Minor-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minor version of schema of DFS metadata.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4222,7 +4222,7 @@ "Name": "ACS-Permission-Bits", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Permission-Bits", "SearchFlags": 0, "AdvancedView": true, @@ -4237,7 +4237,7 @@ "Name": "Home-Drive", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Home-Drive", "SearchFlags": 16, "AdvancedView": true, @@ -4252,7 +4252,7 @@ "Name": "ms-DS-ReplicationEpoch", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-ReplicationEpoch", "SearchFlags": 0, "AdvancedView": true, @@ -4267,7 +4267,7 @@ "Name": "MSMQ-QM-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-QM-ID", "SearchFlags": 0, "AdvancedView": true, @@ -4282,7 +4282,7 @@ "Name": "rpc-Ns-Entry-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "rpc-Ns-Entry-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -4297,7 +4297,7 @@ "Name": "ms-DFS-Short-Name-Link-Path-v2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Shortname DFS link path relative to the DFS root target share (i.e. without the server/domain and DFS namespace name components). Use forward slashes (/) instead of backslashes so that LDAP searches can be done without having to use escapes.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4313,7 +4313,7 @@ "Name": "ACS-Policy-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Policy-Name", "SearchFlags": 0, "AdvancedView": true, @@ -4328,7 +4328,7 @@ "Name": "houseIdentifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The houseIdentifier attribute type specifies a linguistic construct used to identify a particular building, for example a house number or house name relative to a street, avenue, town or city, etc.", "SearchFlags": 0, "AdvancedView": true, @@ -4345,7 +4345,7 @@ "Name": "ms-DS-Retired-Repl-NC-Signatures", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Information about naming contexts that are no longer held on this computer", "SearchFlags": 0, "AdvancedView": true, @@ -4360,7 +4360,7 @@ "Name": "MSMQ-Queue-Journal-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Queue-Journal-Quota", "SearchFlags": 0, "PartialAttributeSet": true, @@ -4376,7 +4376,7 @@ "Name": "rpc-Ns-Group", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc-Ns-Group", "SearchFlags": 0, "AdvancedView": true, @@ -4391,7 +4391,7 @@ "Name": "ms-DFS-Target-List-v2", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Targets corresponding to DFS root/link.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4407,7 +4407,7 @@ "Name": "ACS-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Priority", "SearchFlags": 0, "AdvancedView": true, @@ -4422,7 +4422,7 @@ "Name": "host", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The host attribute type specifies a host computer.", "SearchFlags": 0, "AdvancedView": true, @@ -4439,7 +4439,7 @@ "Name": "ms-ds-Schema-Extensions", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-ds-Schema-Extensions", "SearchFlags": 0, "AdvancedView": true, @@ -4454,7 +4454,7 @@ "Name": "MSMQ-Queue-Name-Ext", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Queue-Name-Ext", "SearchFlags": 0, "PartialAttributeSet": true, @@ -4470,7 +4470,7 @@ "Name": "rpc-Ns-Interface-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "rpc-Ns-Interface-ID", "SearchFlags": 1, "AdvancedView": true, @@ -4485,7 +4485,7 @@ "Name": "ms-DFS-Ttl-v2", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "TTL associated with DFS root/link. For use at DFS referral time.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -4501,7 +4501,7 @@ "Name": "ACS-RSVP-Account-Files-Location", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-RSVP-Account-Files-Location", "SearchFlags": 0, "AdvancedView": true, @@ -4516,7 +4516,7 @@ "Name": "Icon-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Icon-Path", "SearchFlags": 0, "AdvancedView": true, @@ -4531,7 +4531,7 @@ "Name": "ms-DS-SD-Reference-Domain", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The domain to be used for default security descriptor translation for a Non-Domain Naming Context.", "SearchFlags": 0, "AdvancedView": true, @@ -4546,7 +4546,7 @@ "Name": "MSMQ-Queue-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Queue-Quota", "SearchFlags": 0, "PartialAttributeSet": true, @@ -4562,7 +4562,7 @@ "Name": "rpc-Ns-Object-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc-Ns-Object-ID", "SearchFlags": 1, "AdvancedView": true, @@ -4577,7 +4577,7 @@ "Name": "ms-DS-BridgeHead-Servers-Used", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of bridge head servers used by KCC in the previous run.", "SearchFlags": 0, "AdvancedView": true, @@ -4592,7 +4592,7 @@ "Name": "ACS-RSVP-Log-Files-Location", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-RSVP-Log-Files-Location", "SearchFlags": 0, "AdvancedView": true, @@ -4607,7 +4607,7 @@ "Name": "Implemented-Categories", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Implemented-Categories", "SearchFlags": 1, "AdvancedView": true, @@ -4622,7 +4622,7 @@ "Name": "ms-DS-Security-Group-Extra-Classes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Security-Group-Extra-Classes", "SearchFlags": 0, "AdvancedView": true, @@ -4637,7 +4637,7 @@ "Name": "MSMQ-Queue-Type", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Queue-Type", "SearchFlags": 1, "PartialAttributeSet": true, @@ -4653,7 +4653,7 @@ "Name": "rpc-Ns-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc-Ns-Priority", "SearchFlags": 0, "AdvancedView": true, @@ -4668,7 +4668,7 @@ "Name": "ms-DS-Is-Used-As-Resource-Security-Attribute", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a resource property, this attribute indicates whether it is being used as a secure attribute.", "SearchFlags": 0, "AdvancedView": true, @@ -4683,7 +4683,7 @@ "Name": "ACS-Service-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Service-Type", "SearchFlags": 0, "AdvancedView": true, @@ -4698,7 +4698,7 @@ "Name": "IndexedScopes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "IndexedScopes", "SearchFlags": 0, "AdvancedView": true, @@ -4713,7 +4713,7 @@ "Name": "ms-DS-Settings", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Settings", "SearchFlags": 0, "AdvancedView": true, @@ -4728,7 +4728,7 @@ "Name": "MSMQ-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Quota", "SearchFlags": 0, "AdvancedView": true, @@ -4743,7 +4743,7 @@ "Name": "rpc-Ns-Profile-Entry", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "rpc-Ns-Profile-Entry", "SearchFlags": 0, "AdvancedView": true, @@ -4758,7 +4758,7 @@ "Name": "ms-DS-Claim-Possible-Values", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type or resource property object, this attribute describes the values suggested to a user when the he/she use the claim type or resource property in applications.", "SearchFlags": 0, "AdvancedView": true, @@ -4773,7 +4773,7 @@ "Name": "ACS-Time-Of-Day", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Time-Of-Day", "SearchFlags": 0, "AdvancedView": true, @@ -4788,7 +4788,7 @@ "Name": "Initial-Auth-Incoming", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Initial-Auth-Incoming", "SearchFlags": 0, "AdvancedView": true, @@ -4803,7 +4803,7 @@ "Name": "ms-DS-Site-Affinity", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Site-Affinity", "SearchFlags": 1, "AdvancedView": true, @@ -4818,7 +4818,7 @@ "Name": "MSMQ-Recipient-FormatName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Recipient-FormatName", "SearchFlags": 0, "AdvancedView": true, @@ -4833,7 +4833,7 @@ "Name": "rpc-Ns-Transfer-Syntax", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "rpc-Ns-Transfer-Syntax", "SearchFlags": 1, "AdvancedView": true, @@ -4848,7 +4848,7 @@ "Name": "ms-DS-Claim-Value-Type", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type object, specifies the value type of the claims issued.", "SearchFlags": 0, "AdvancedView": true, @@ -4863,7 +4863,7 @@ "Name": "ACS-Total-No-Of-Flows", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ACS-Total-No-Of-Flows", "SearchFlags": 0, "AdvancedView": true, @@ -4878,7 +4878,7 @@ "Name": "Initial-Auth-Outgoing", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Initial-Auth-Outgoing", "SearchFlags": 0, "AdvancedView": true, @@ -4893,7 +4893,7 @@ "Name": "ms-DS-SPN-Suffixes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-SPN-Suffixes", "SearchFlags": 0, "AdvancedView": true, @@ -4908,7 +4908,7 @@ "Name": "MSMQ-Routing-Service", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Routing-Service", "SearchFlags": 0, "AdvancedView": true, @@ -4923,7 +4923,7 @@ "Name": "SAM-Account-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "SAM-Account-Name", "SearchFlags": 13, "PartialAttributeSet": true, @@ -4939,7 +4939,7 @@ "Name": "ms-DS-Claim-Attribute-Source", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type object, this attribute points to the attribute that will be used as the source for the claim type.", "SearchFlags": 0, "AdvancedView": true, @@ -4954,7 +4954,7 @@ "Name": "ACS-Server-List", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ACS-Server-List", "SearchFlags": 0, "AdvancedView": true, @@ -4969,7 +4969,7 @@ "Name": "Initials", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Initials", "SearchFlags": 0, "AdvancedView": true, @@ -4986,7 +4986,7 @@ "Name": "ms-DS-Tasks-For-Az-Role", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of tasks for Az-Role", "SearchFlags": 0, "AdvancedView": true, @@ -5001,7 +5001,7 @@ "Name": "MSMQ-Routing-Services", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Routing-Services", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5017,7 +5017,7 @@ "Name": "SAM-Account-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "SAM-Account-Type", "SearchFlags": 1, "PartialAttributeSet": true, @@ -5033,7 +5033,7 @@ "Name": "ms-DS-Claim-Type-Applies-To-Class", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a claim type object, this linked attribute points to the AD security principal classes that for which claims should be issued. (For example, a link to the user class).", "SearchFlags": 0, "AdvancedView": true, @@ -5048,7 +5048,7 @@ "Name": "Additional-Information", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Additional-Information", "SearchFlags": 0, "AdvancedView": true, @@ -5063,7 +5063,7 @@ "Name": "Install-Ui-Level", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Install-Ui-Level", "SearchFlags": 0, "AdvancedView": true, @@ -5078,7 +5078,7 @@ "Name": "ms-DS-Tasks-For-Az-Role-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back-link from Az-Task to Az-Role object(s) linking to it", "SearchFlags": 0, "AdvancedView": true, @@ -5093,7 +5093,7 @@ "Name": "MSMQ-Secured-Source", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Secured-Source", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5109,7 +5109,7 @@ "Name": "SAM-Domain-Updates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains a bitmask of performed SAM operations on active directory", "SearchFlags": 0, "AdvancedView": true, @@ -5124,7 +5124,7 @@ "Name": "ms-DS-Claim-Shares-Possible-Values-With", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a resource property object, this attribute indicates that the suggested values of the claims issued are defined on the object that this linked attribute points to. Overrides ms-DS-Claim-Possible-Values on itself, if populated.", "SearchFlags": 0, "AdvancedView": true, @@ -5139,7 +5139,7 @@ "Name": "Additional-Trusted-Service-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Additional-Trusted-Service-Names", "SearchFlags": 0, "AdvancedView": true, @@ -5154,7 +5154,7 @@ "Name": "Instance-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Instance-Type", "SearchFlags": 8, "PartialAttributeSet": true, @@ -5170,7 +5170,7 @@ "Name": "ms-DS-Tasks-For-Az-Task", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "List of tasks linked to Az-Task", "SearchFlags": 0, "AdvancedView": true, @@ -5185,7 +5185,7 @@ "Name": "MSMQ-Service-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Service-Type", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5201,7 +5201,7 @@ "Name": "Schedule", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schedule", "SearchFlags": 0, "AdvancedView": true, @@ -5216,7 +5216,7 @@ "Name": "ms-DS-Claim-Shares-Possible-Values-With-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a claim type object, this attribute indicates that the possible values described in ms-DS-Claim-Possible-Values are being referenced by other claim type objects.", "SearchFlags": 0, "AdvancedView": true, @@ -5231,7 +5231,7 @@ "Name": "Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address", "SearchFlags": 0, "AdvancedView": true, @@ -5246,7 +5246,7 @@ "Name": "Inter-Site-Topology-Failover", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Inter-Site-Topology-Failover", "SearchFlags": 0, "AdvancedView": true, @@ -5261,7 +5261,7 @@ "Name": "ms-DS-Tasks-For-Az-Task-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back-link from Az-Task to the Az-Task object(s) linking to it", "SearchFlags": 0, "AdvancedView": true, @@ -5276,7 +5276,7 @@ "Name": "MSMQ-Services", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Services", "SearchFlags": 0, "AdvancedView": true, @@ -5291,7 +5291,7 @@ "Name": "Schema-Flags-Ex", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schema-Flags-Ex", "SearchFlags": 0, "AdvancedView": true, @@ -5306,7 +5306,7 @@ "Name": "ms-DS-Members-Of-Resource-Property-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a resource property list object, this multi-valued link attribute points to one or more resource property objects.", "SearchFlags": 0, "AdvancedView": true, @@ -5321,7 +5321,7 @@ "Name": "Address-Book-Roots", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Address-Book-Roots", "SearchFlags": 0, "AdvancedView": true, @@ -5336,7 +5336,7 @@ "Name": "Inter-Site-Topology-Generator", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Inter-Site-Topology-Generator", "SearchFlags": 0, "AdvancedView": true, @@ -5351,7 +5351,7 @@ "Name": "ms-DS-User-Account-Control-Computed", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-User-Account-Control-Computed", "SearchFlags": 0, "AdvancedView": true, @@ -5366,7 +5366,7 @@ "Name": "MSMQ-Sign-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Sign-Certificates", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5382,7 +5382,7 @@ "Name": "Schema-ID-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schema-ID-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -5397,7 +5397,7 @@ "Name": "ms-DS-Members-Of-Resource-Property-List-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-Members-Of-Resource-Property-List. For a resource property object, this attribute references the resource property list object that it is a member of.", "SearchFlags": 0, "AdvancedView": true, @@ -5412,7 +5412,7 @@ "Name": "Address-Entry-Display-Table", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address-Entry-Display-Table", "SearchFlags": 0, "AdvancedView": true, @@ -5427,7 +5427,7 @@ "Name": "Inter-Site-Topology-Renew", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Inter-Site-Topology-Renew", "SearchFlags": 0, "AdvancedView": true, @@ -5442,7 +5442,7 @@ "Name": "ms-DS-User-Password-Expiry-Time-Computed", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the expiry time for the user's current password", "SearchFlags": 0, "AdvancedView": true, @@ -5457,7 +5457,7 @@ "Name": "MSMQ-Sign-Certificates-Mig", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Sign-Certificates-Mig", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5473,7 +5473,7 @@ "Name": "Schema-Info", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Schema-Info", "SearchFlags": 0, "AdvancedView": true, @@ -5488,7 +5488,7 @@ "Name": "ms-SPP-CSVLK-Pid", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ID of CSVLK product-key used to create the Activation Object", "SearchFlags": 0, "AdvancedView": true, @@ -5503,7 +5503,7 @@ "Name": "Address-Entry-Display-Table-MSDOS", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address-Entry-Display-Table-MSDOS", "SearchFlags": 0, "AdvancedView": true, @@ -5518,7 +5518,7 @@ "Name": "International-ISDN-Number", "OMSyntax": 18, "AttributeSyntax": "2.5.5.6", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "International-ISDN-Number", "SearchFlags": 0, "AdvancedView": true, @@ -5535,7 +5535,7 @@ "Name": "ms-DS-UpdateScript", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-UpdateScript", "SearchFlags": 0, "AdvancedView": true, @@ -5550,7 +5550,7 @@ "Name": "MSMQ-Sign-Key", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Sign-Key", "SearchFlags": 0, "PartialAttributeSet": true, @@ -5566,7 +5566,7 @@ "Name": "Schema-Update", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schema-Update", "SearchFlags": 0, "AdvancedView": true, @@ -5581,7 +5581,7 @@ "Name": "ms-SPP-CSVLK-Partial-Product-Key", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last 5 characters of CSVLK product-key used to create the Activation Object", "SearchFlags": 0, "AdvancedView": true, @@ -5596,7 +5596,7 @@ "Name": "Address-Home", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address-Home", "SearchFlags": 0, "AdvancedView": true, @@ -5615,7 +5615,7 @@ "Name": "Invocation-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Invocation-Id", "SearchFlags": 1, "AdvancedView": true, @@ -5630,7 +5630,7 @@ "Name": "ms-DS-Source-Object-DN", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The string representation of the DN of the object in another forest that corresponds to this object.", "SearchFlags": 0, "AdvancedView": true, @@ -5648,7 +5648,7 @@ "Name": "MSMQ-Site-1", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Site-1", "SearchFlags": 0, "AdvancedView": true, @@ -5663,7 +5663,7 @@ "Name": "Schema-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Schema-Version", "SearchFlags": 0, "AdvancedView": true, @@ -5678,7 +5678,7 @@ "Name": "ms-SPP-CSVLK-Sku-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "SKU ID of CSVLK product-key used to create the Activation Object", "SearchFlags": 0, "AdvancedView": true, @@ -5693,7 +5693,7 @@ "Name": "Address-Syntax", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address-Syntax", "SearchFlags": 0, "AdvancedView": true, @@ -5708,7 +5708,7 @@ "Name": "Ipsec-Data", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-Data", "SearchFlags": 0, "AdvancedView": true, @@ -5723,7 +5723,7 @@ "Name": "ms-DS-KrbTgt-Link", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a computer, Identifies the user object (krbtgt), acting as the domain or secondary domain master secret. Depends on which domain or secondary domain the computer resides in.", "SearchFlags": 0, "AdvancedView": true, @@ -5738,7 +5738,7 @@ "Name": "MSMQ-Site-2", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Site-2", "SearchFlags": 0, "AdvancedView": true, @@ -5753,7 +5753,7 @@ "Name": "Scope-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Scope-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -5768,7 +5768,7 @@ "Name": "ms-SPP-KMS-Ids", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "KMS IDs enabled by the Activation Object", "SearchFlags": 1, "AdvancedView": true, @@ -5783,7 +5783,7 @@ "Name": "Address-Type", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Address-Type", "SearchFlags": 0, "AdvancedView": true, @@ -5798,7 +5798,7 @@ "Name": "Ipsec-Data-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-Data-Type", "SearchFlags": 0, "AdvancedView": true, @@ -5813,7 +5813,7 @@ "Name": "ms-DS-Revealed-Users", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a Directory instance (DSA), Identifies the user objects whose secrets have been disclosed to that instance", "SearchFlags": 0, "AdvancedView": true, @@ -5828,7 +5828,7 @@ "Name": "MSMQ-Site-Foreign", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Site-Foreign", "SearchFlags": 0, "AdvancedView": true, @@ -5843,7 +5843,7 @@ "Name": "Script-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Script-Path", "SearchFlags": 16, "AdvancedView": true, @@ -5858,7 +5858,7 @@ "Name": "ms-SPP-Installation-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Installation ID (IID) used for phone activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -5873,7 +5873,7 @@ "Name": "Admin-Context-Menu", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Admin-Context-Menu", "SearchFlags": 0, "AdvancedView": true, @@ -5888,7 +5888,7 @@ "Name": "Ipsec-Filter-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Ipsec-Filter-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -5903,7 +5903,7 @@ "Name": "ms-DS-Has-Full-Replica-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a Directory instance (DSA), identifies the partitions held as full replicas", "SearchFlags": 0, "AdvancedView": true, @@ -5918,7 +5918,7 @@ "Name": "MSMQ-Site-Gates", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Site-Gates", "SearchFlags": 0, "AdvancedView": true, @@ -5933,7 +5933,7 @@ "Name": "SD-Rights-Effective", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "SD-Rights-Effective", "SearchFlags": 0, "AdvancedView": true, @@ -5948,7 +5948,7 @@ "Name": "ms-SPP-Confirmation-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Confirmation ID (CID) used for phone activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -5963,7 +5963,7 @@ "Name": "Admin-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Admin-Count", "SearchFlags": 0, "AdvancedView": true, @@ -5978,7 +5978,7 @@ "Name": "Ipsec-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-ID", "SearchFlags": 0, "AdvancedView": true, @@ -5993,7 +5993,7 @@ "Name": "ms-DS-Never-Reveal-Group", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a Directory instance (DSA), identifies the security group whose users will never have their secrets disclosed to that instance", "SearchFlags": 0, "AdvancedView": true, @@ -6008,7 +6008,7 @@ "Name": "MSMQ-Site-Gates-Mig", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Site-Gates-Mig", "SearchFlags": 0, "AdvancedView": true, @@ -6023,7 +6023,7 @@ "Name": "Search-Flags", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Search-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -6038,7 +6038,7 @@ "Name": "ms-SPP-Online-License", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "License used during online activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -6053,7 +6053,7 @@ "Name": "Admin-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Admin-Description", "SearchFlags": 0, "AdvancedView": true, @@ -6068,7 +6068,7 @@ "Name": "Ipsec-ISAKMP-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-ISAKMP-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6083,7 +6083,7 @@ "Name": "ms-DS-Reveal-OnDemand-Group", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a Directory instance (DSA), identifies the security group whose users may have their secrets disclosed to that instance", "SearchFlags": 0, "AdvancedView": true, @@ -6098,7 +6098,7 @@ "Name": "MSMQ-Site-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Site-ID", "SearchFlags": 0, "AdvancedView": true, @@ -6113,7 +6113,7 @@ "Name": "Search-Guide", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Search-Guide", "SearchFlags": 0, "AdvancedView": true, @@ -6128,7 +6128,7 @@ "Name": "ms-SPP-Phone-License", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "License used during phone activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -6143,7 +6143,7 @@ "Name": "Admin-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Admin-Display-Name", "SearchFlags": 0, "AdvancedView": true, @@ -6158,7 +6158,7 @@ "Name": "Ipsec-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-Name", "SearchFlags": 0, "AdvancedView": true, @@ -6173,7 +6173,7 @@ "Name": "ms-DS-Secondary-KrbTgt-Number", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a user object (krbtgt), acting as a secondary domain master secret, identifies the protocol identification number associated with the secondary domain.", "SearchFlags": 1, "AdvancedView": true, @@ -6188,7 +6188,7 @@ "Name": "MSMQ-Site-Name", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Site-Name", "SearchFlags": 0, "AdvancedView": true, @@ -6203,7 +6203,7 @@ "Name": "secretary", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Specifies the secretary of a person.", "SearchFlags": 0, "AdvancedView": false, @@ -6222,7 +6222,7 @@ "Name": "ms-SPP-Config-License", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Product-key configuration license used during online/phone activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -6237,7 +6237,7 @@ "Name": "Admin-Multiselect-Property-Pages", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Admin-Multiselect-Property-Pages", "SearchFlags": 0, "AdvancedView": true, @@ -6252,7 +6252,7 @@ "Name": "IPSEC-Negotiation-Policy-Action", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "IPSEC-Negotiation-Policy-Action", "SearchFlags": 0, "AdvancedView": true, @@ -6267,7 +6267,7 @@ "Name": "ms-DS-Revealed-DSAs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-Revealed-Users; for a user, identifies which Directory instances (DSA) hold that user's secret", "SearchFlags": 0, "AdvancedView": true, @@ -6282,7 +6282,7 @@ "Name": "MSMQ-Site-Name-Ex", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Site-Name-Ex", "SearchFlags": 0, "AdvancedView": true, @@ -6297,7 +6297,7 @@ "Name": "Security-Identifier", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Security-Identifier", "SearchFlags": 0, "PartialAttributeSet": true, @@ -6313,7 +6313,7 @@ "Name": "ms-SPP-Issuance-License", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Issuance license used during online/phone activation of the Active Directory forest", "SearchFlags": 0, "AdvancedView": true, @@ -6328,7 +6328,7 @@ "Name": "Admin-Property-Pages", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Admin-Property-Pages", "SearchFlags": 0, "AdvancedView": true, @@ -6343,7 +6343,7 @@ "Name": "Ipsec-Negotiation-Policy-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-Negotiation-Policy-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6358,7 +6358,7 @@ "Name": "ms-DS-KrbTgt-Link-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-KrbTgt-Link; for a user object (krbtgt) acting as a domain or secondary domain master secret, identifies which computers are in that domain or secondary domain", "SearchFlags": 0, "AdvancedView": true, @@ -6373,7 +6373,7 @@ "Name": "MSMQ-Sites", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MSMQ-Sites", "SearchFlags": 0, "PartialAttributeSet": true, @@ -6389,7 +6389,7 @@ "Name": "See-Also", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "See-Also", "SearchFlags": 0, "AdvancedView": true, @@ -6411,7 +6411,7 @@ "Name": "ms-TPM-Srk-Pub-Thumbprint", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains the thumbprint of the SrkPub corresponding to a particular TPM. This helps to index the TPM devices in the directory.", "SearchFlags": 11, "AdvancedView": true, @@ -6426,7 +6426,7 @@ "Name": "Allowed-Attributes", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed-Attributes", "SearchFlags": 0, "AdvancedView": true, @@ -6441,7 +6441,7 @@ "Name": "IPSEC-Negotiation-Policy-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "IPSEC-Negotiation-Policy-Type", "SearchFlags": 0, "AdvancedView": true, @@ -6456,7 +6456,7 @@ "Name": "ms-DS-Is-Full-Replica-For", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-Ds-Has-Full-Replica-NCs; for a partition root object, identifies which Directory instances (DSA) hold that partition as a full replica", "SearchFlags": 0, "AdvancedView": true, @@ -6471,7 +6471,7 @@ "Name": "MSMQ-Transactional", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Transactional", "SearchFlags": 0, "PartialAttributeSet": true, @@ -6487,7 +6487,7 @@ "Name": "Seq-Notification", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Seq-Notification", "SearchFlags": 0, "AdvancedView": true, @@ -6502,7 +6502,7 @@ "Name": "ms-TPM-Owner-Information-Temp", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains temporary owner information for a particular TPM.", "SearchFlags": 640, "AdvancedView": true, @@ -6517,7 +6517,7 @@ "Name": "Allowed-Attributes-Effective", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed-Attributes-Effective", "SearchFlags": 0, "AdvancedView": true, @@ -6532,7 +6532,7 @@ "Name": "Ipsec-NFA-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Ipsec-NFA-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6547,7 +6547,7 @@ "Name": "ms-DS-Is-Domain-For", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-Has-Domain-NCs; for a partition root object, identifies which Directory instances (DSA) hold that partition as their primary domain", "SearchFlags": 0, "AdvancedView": true, @@ -6562,7 +6562,7 @@ "Name": "MSMQ-User-Sid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-User-Sid", "SearchFlags": 0, "PartialAttributeSet": true, @@ -6578,7 +6578,7 @@ "Name": "Serial-Number", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Serial-Number", "SearchFlags": 0, "AdvancedView": true, @@ -6593,7 +6593,7 @@ "Name": "ms-TPM-Tpm-Information-For-Computer", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute links a Computer object to a TPM object.", "SearchFlags": 16, "AdvancedView": true, @@ -6608,7 +6608,7 @@ "Name": "Allowed-Child-Classes", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed-Child-Classes", "SearchFlags": 0, "AdvancedView": true, @@ -6623,7 +6623,7 @@ "Name": "Ipsec-Owners-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Ipsec-Owners-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6638,7 +6638,7 @@ "Name": "ms-DS-Is-Partial-Replica-For", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for has-Partial-Replica-NCs; for a partition root object, identifies which Directory instances (DSA) hold that partition as a partial replica", "SearchFlags": 0, "AdvancedView": true, @@ -6653,7 +6653,7 @@ "Name": "MSMQ-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MSMQ-Version", "SearchFlags": 0, "AdvancedView": true, @@ -6668,7 +6668,7 @@ "Name": "Server-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Server-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -6686,7 +6686,7 @@ "Name": "ms-TPM-Tpm-Information-For-Computer-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute links a TPM object to the Computer objects associated with it.", "SearchFlags": 0, "AdvancedView": true, @@ -6701,7 +6701,7 @@ "Name": "Allowed-Child-Classes-Effective", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed-Child-Classes-Effective", "SearchFlags": 0, "AdvancedView": true, @@ -6716,7 +6716,7 @@ "Name": "Ipsec-Policy-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Ipsec-Policy-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6731,7 +6731,7 @@ "Name": "ms-DS-Is-User-Cachable-At-Rodc", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Read-Only Directory instance (DSA), Identifies whether the specified user's secrets are cachable.", "SearchFlags": 0, "AdvancedView": true, @@ -6746,7 +6746,7 @@ "Name": "msNPAllowDialin", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msNPAllowDialin", "SearchFlags": 16, "AdvancedView": true, @@ -6761,7 +6761,7 @@ "Name": "Server-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Server-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -6778,7 +6778,7 @@ "Name": "ms-DNS-Keymaster-Zones", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A list of Active Directory-integrated zones for which the DNS server is the keymaster.", "SearchFlags": 0, "AdvancedView": true, @@ -6793,7 +6793,7 @@ "Name": "Alt-Security-Identities", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Alt-Security-Identities", "SearchFlags": 1, "PartialAttributeSet": true, @@ -6809,7 +6809,7 @@ "Name": "Is-Critical-System-Object", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Critical-System-Object", "SearchFlags": 0, "AdvancedView": true, @@ -6824,7 +6824,7 @@ "Name": "ms-DS-Revealed-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.14", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a Directory instance (DSA), Identifies the user objects whose secrets have been disclosed to that instance", "SearchFlags": 0, "AdvancedView": true, @@ -6839,7 +6839,7 @@ "Name": "msNPCalledStationID", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msNPCalledStationID", "SearchFlags": 0, "AdvancedView": true, @@ -6854,7 +6854,7 @@ "Name": "Server-Reference-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Server-Reference-BL", "SearchFlags": 0, "AdvancedView": true, @@ -6869,7 +6869,7 @@ "Name": "ms-DNS-Is-Signed", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define whether or not the DNS zone is signed.", "SearchFlags": 8, "AdvancedView": true, @@ -6884,7 +6884,7 @@ "Name": "ANR", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ANR", "SearchFlags": 0, "AdvancedView": true, @@ -6899,7 +6899,7 @@ "Name": "Is-Defunct", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Defunct", "SearchFlags": 0, "AdvancedView": true, @@ -6914,7 +6914,7 @@ "Name": "ms-DS-Revealed-List-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "backlink attribute for ms-DS-Revealed-List.", "SearchFlags": 0, "AdvancedView": true, @@ -6929,7 +6929,7 @@ "Name": "msNPCallingStationID", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msNPCallingStationID", "SearchFlags": 16, "AdvancedView": true, @@ -6944,7 +6944,7 @@ "Name": "Server-Role", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Server-Role", "SearchFlags": 0, "AdvancedView": true, @@ -6959,7 +6959,7 @@ "Name": "ms-DNS-Sign-With-NSEC3", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define whether or not the DNS zone is signed with NSEC3.", "SearchFlags": 8, "AdvancedView": true, @@ -6974,7 +6974,7 @@ "Name": "App-Schema-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "App-Schema-Version", "SearchFlags": 0, "AdvancedView": true, @@ -6991,7 +6991,7 @@ "Name": "Is-Deleted", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Deleted", "SearchFlags": 0, "PartialAttributeSet": true, @@ -7007,7 +7007,7 @@ "Name": "ms-DS-Last-Successful-Interactive-Logon-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The time that the correct password was presented during a C-A-D logon.", "SearchFlags": 0, "AdvancedView": true, @@ -7022,7 +7022,7 @@ "Name": "msNPSavedCallingStationID", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msNPSavedCallingStationID", "SearchFlags": 16, "AdvancedView": true, @@ -7037,7 +7037,7 @@ "Name": "Server-State", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Server-State", "SearchFlags": 0, "AdvancedView": true, @@ -7052,7 +7052,7 @@ "Name": "ms-DNS-NSEC3-OptOut", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define whether or not the DNS zone should be signed using NSEC opt-out.", "SearchFlags": 8, "AdvancedView": true, @@ -7067,7 +7067,7 @@ "Name": "Application-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Application-Name", "SearchFlags": 0, "AdvancedView": true, @@ -7082,7 +7082,7 @@ "Name": "Is-Ephemeral", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Ephemeral", "SearchFlags": 0, "AdvancedView": true, @@ -7097,7 +7097,7 @@ "Name": "ms-DS-Last-Failed-Interactive-Logon-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The time that an incorrect password was presented during a C-A-D logon.", "SearchFlags": 0, "AdvancedView": true, @@ -7112,7 +7112,7 @@ "Name": "msRADIUSCallbackNumber", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msRADIUSCallbackNumber", "SearchFlags": 16, "AdvancedView": true, @@ -7127,7 +7127,7 @@ "Name": "Service-Binding-Information", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Service-Binding-Information", "SearchFlags": 0, "PartialAttributeSet": true, @@ -7143,7 +7143,7 @@ "Name": "ms-DNS-Maintain-Trust-Anchor", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define the type of trust anchor to automatically publish in the forest-wide trust anchor store when the DNS zone is signed.", "SearchFlags": 8, "AdvancedView": true, @@ -7158,7 +7158,7 @@ "Name": "Applies-To", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Applies-To", "SearchFlags": 0, "AdvancedView": true, @@ -7173,7 +7173,7 @@ "Name": "Is-Member-Of-DL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Is-Member-Of-DL", "SearchFlags": 16, "AdvancedView": true, @@ -7188,7 +7188,7 @@ "Name": "ms-DS-Failed-Interactive-Logon-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The total number of failed interactive logons since this feature was turned on.", "SearchFlags": 0, "AdvancedView": true, @@ -7203,7 +7203,7 @@ "Name": "msRADIUSFramedIPAddress", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msRADIUSFramedIPAddress", "SearchFlags": 16, "AdvancedView": true, @@ -7218,7 +7218,7 @@ "Name": "Service-Class-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Service-Class-ID", "SearchFlags": 0, "PartialAttributeSet": true, @@ -7234,7 +7234,7 @@ "Name": "ms-DNS-DS-Record-Algorithms", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define the algorithms used when writing the dsset file during zone signing.", "SearchFlags": 8, "AdvancedView": true, @@ -7249,7 +7249,7 @@ "Name": "Asset-Number", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Asset-Number", "SearchFlags": 0, "AdvancedView": true, @@ -7264,7 +7264,7 @@ "Name": "Is-Member-Of-Partial-Attribute-Set", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Member-Of-Partial-Attribute-Set", "SearchFlags": 0, "AdvancedView": true, @@ -7279,7 +7279,7 @@ "Name": "ms-DS-Failed-Interactive-Logon-Count-At-Last-Successful-Logon", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The total number of failed interactive logons up until the last successful C-A-D logon.", "SearchFlags": 0, "AdvancedView": true, @@ -7294,7 +7294,7 @@ "Name": "msRADIUSFramedRoute", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msRADIUSFramedRoute", "SearchFlags": 16, "AdvancedView": true, @@ -7309,7 +7309,7 @@ "Name": "Service-Class-Info", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Service-Class-Info", "SearchFlags": 0, "PartialAttributeSet": true, @@ -7325,7 +7325,7 @@ "Name": "ms-DNS-RFC5011-Key-Rollovers", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines whether or not the DNS zone should be maintained using key rollover procedures defined in RFC 5011.", "SearchFlags": 8, "AdvancedView": true, @@ -7340,7 +7340,7 @@ "Name": "Assistant", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Assistant", "SearchFlags": 16, "AdvancedView": true, @@ -7355,7 +7355,7 @@ "Name": "Is-Privilege-Holder", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Is-Privilege-Holder", "SearchFlags": 0, "AdvancedView": true, @@ -7370,7 +7370,7 @@ "Name": "ms-DS-USN-Last-Sync-Success", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The USN at which the last successful replication synchronization occurred.", "SearchFlags": 0, "AdvancedView": true, @@ -7385,7 +7385,7 @@ "Name": "msRADIUSServiceType", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msRADIUSServiceType", "SearchFlags": 16, "AdvancedView": true, @@ -7400,7 +7400,7 @@ "Name": "Service-Class-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Service-Class-Name", "SearchFlags": 1, "AdvancedView": true, @@ -7415,7 +7415,7 @@ "Name": "ms-DNS-NSEC3-Hash-Algorithm", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines the NSEC3 hash algorithm to use when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7430,7 +7430,7 @@ "Name": "Assoc-NT-Account", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Assoc-NT-Account", "SearchFlags": 0, "AdvancedView": true, @@ -7445,7 +7445,7 @@ "Name": "Is-Recycled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is the object recycled.", "SearchFlags": 8, "PartialAttributeSet": true, @@ -7461,7 +7461,7 @@ "Name": "ms-DS-Value-Type-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to link a resource property object to its value type.", "SearchFlags": 0, "AdvancedView": true, @@ -7476,7 +7476,7 @@ "Name": "msRASSavedCallbackNumber", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msRASSavedCallbackNumber", "SearchFlags": 16, "AdvancedView": true, @@ -7491,7 +7491,7 @@ "Name": "Service-DNS-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Service-DNS-Name", "SearchFlags": 0, "AdvancedView": true, @@ -7506,7 +7506,7 @@ "Name": "ms-DNS-NSEC3-Random-Salt-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines the length in bytes of the random salt used when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7521,7 +7521,7 @@ "Name": "associatedDomain", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The associatedDomain attribute type specifies a DNS domain which is associated with an object.", "SearchFlags": 0, "AdvancedView": true, @@ -7538,7 +7538,7 @@ "Name": "Is-Single-Valued", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Is-Single-Valued", "SearchFlags": 0, "AdvancedView": true, @@ -7553,7 +7553,7 @@ "Name": "ms-DS-Value-Type-Reference-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This is the back link for ms-DS-Value-Type-Reference. It links a value type object back to resource properties.", "SearchFlags": 0, "AdvancedView": true, @@ -7568,7 +7568,7 @@ "Name": "msRASSavedFramedIPAddress", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msRASSavedFramedIPAddress", "SearchFlags": 16, "AdvancedView": true, @@ -7583,7 +7583,7 @@ "Name": "Service-DNS-Name-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Service-DNS-Name-Type", "SearchFlags": 0, "AdvancedView": true, @@ -7598,7 +7598,7 @@ "Name": "ms-DNS-NSEC3-Iterations", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines how many NSEC3 hash iterations to perform when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7613,7 +7613,7 @@ "Name": "associatedName", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The associatedName attribute type specifies an entry in the organizational DIT associated with a DNS domain.", "SearchFlags": 0, "AdvancedView": true, @@ -7628,7 +7628,7 @@ "Name": "jpegPhoto", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Used to store one or more images of a person using the JPEG File Interchange Format [JFIF].", "SearchFlags": 0, "AdvancedView": false, @@ -7646,7 +7646,7 @@ "Name": "ms-DS-Optional-Feature-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An integer value that contains flags that define behavior of an optional feature in Active Directory.", "SearchFlags": 0, "AdvancedView": true, @@ -7661,7 +7661,7 @@ "Name": "msRASSavedFramedRoute", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msRASSavedFramedRoute", "SearchFlags": 16, "AdvancedView": true, @@ -7676,7 +7676,7 @@ "Name": "Service-Instance-Version", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Service-Instance-Version", "SearchFlags": 0, "PartialAttributeSet": true, @@ -7692,7 +7692,7 @@ "Name": "ms-DNS-DNSKEY-Record-Set-TTL", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines the time-to-live (TTL) value assigned to DNSKEY records when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7707,7 +7707,7 @@ "Name": "attributeCertificateAttribute", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A digitally signed or certified identity and set of attributes. Used to bind authorization information to an identity. X.509", "SearchFlags": 0, "AdvancedView": true, @@ -7724,7 +7724,7 @@ "Name": "Keywords", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Keywords", "SearchFlags": 1, "PartialAttributeSet": true, @@ -7744,7 +7744,7 @@ "Name": "ms-DS-Token-Group-Names", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The distinguished names of security groups the principal is directly or indirectly a member of.", "SearchFlags": 2048, "AdvancedView": true, @@ -7759,7 +7759,7 @@ "Name": "Must-Contain", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Must-Contain", "SearchFlags": 0, "AdvancedView": true, @@ -7774,7 +7774,7 @@ "Name": "Service-Principal-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Service-Principal-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -7790,7 +7790,7 @@ "Name": "ms-DNS-DS-Record-Set-TTL", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines the time-to-live (TTL) value assigned to DS records when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7805,7 +7805,7 @@ "Name": "Attribute-Display-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Attribute-Display-Names", "SearchFlags": 0, "AdvancedView": true, @@ -7820,7 +7820,7 @@ "Name": "Knowledge-Information", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Knowledge-Information", "SearchFlags": 0, "AdvancedView": true, @@ -7835,7 +7835,7 @@ "Name": "ms-DS-Token-Group-Names-Global-And-Universal", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The distinguished names of global and universal security groups the principal is directly or indirectly a member of.", "SearchFlags": 2048, "AdvancedView": true, @@ -7850,7 +7850,7 @@ "Name": "Name-Service-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Name-Service-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -7865,7 +7865,7 @@ "Name": "Setup-Command", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Setup-Command", "SearchFlags": 0, "AdvancedView": true, @@ -7880,7 +7880,7 @@ "Name": "ms-DNS-Signature-Inception-Offset", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines in seconds how far in the past DNSSEC signature validity periods should begin when signing the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -7895,7 +7895,7 @@ "Name": "Attribute-ID", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Attribute-ID", "SearchFlags": 8, "AdvancedView": true, @@ -7910,7 +7910,7 @@ "Name": "labeledURI", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A Uniform Resource Identifier followed by a label. The label is used to describe the resource to which the URI points, and is intended as a friendly name fit for human consumption.", "SearchFlags": 0, "AdvancedView": false, @@ -7929,7 +7929,7 @@ "Name": "ms-DS-Token-Group-Names-No-GC-Acceptable", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The distinguished names of security groups the principal is directly or indirectly a member of as reported by the local DC.", "SearchFlags": 2048, "AdvancedView": true, @@ -7944,7 +7944,7 @@ "Name": "NC-Name", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "NC-Name", "SearchFlags": 8, "AdvancedView": true, @@ -7959,7 +7959,7 @@ "Name": "Shell-Context-Menu", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Shell-Context-Menu", "SearchFlags": 0, "AdvancedView": true, @@ -7974,7 +7974,7 @@ "Name": "ms-DNS-Secure-Delegation-Polling-Period", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines in seconds the time between polling attempts for child zone key rollovers.", "SearchFlags": 8, "AdvancedView": true, @@ -7989,7 +7989,7 @@ "Name": "Attribute-Security-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Attribute-Security-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -8004,7 +8004,7 @@ "Name": "Last-Backup-Restoration-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Backup-Restoration-Time", "SearchFlags": 0, "AdvancedView": true, @@ -8019,7 +8019,7 @@ "Name": "ms-Exch-Assistant-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-Exch-Assistant-Name", "SearchFlags": 0, "IsDefunct": false, @@ -8035,7 +8035,7 @@ "Name": "NETBIOS-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "NETBIOS-Name", "SearchFlags": 1, "AdvancedView": true, @@ -8050,7 +8050,7 @@ "Name": "Shell-Property-Pages", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Shell-Property-Pages", "SearchFlags": 0, "AdvancedView": true, @@ -8065,7 +8065,7 @@ "Name": "ms-DNS-Signing-Key-Descriptors", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute that contains the set of DNSSEC Signing Key Descriptors (SKDs) used by the DNS server to generate keys and sign the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -8080,7 +8080,7 @@ "Name": "Attribute-Syntax", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Attribute-Syntax", "SearchFlags": 8, "AdvancedView": true, @@ -8095,7 +8095,7 @@ "Name": "Last-Content-Indexed", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Content-Indexed", "SearchFlags": 0, "AdvancedView": true, @@ -8110,7 +8110,7 @@ "Name": "ms-Exch-House-Identifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-Exch-House-Identifier", "SearchFlags": 0, "IsDefunct": false, @@ -8126,7 +8126,7 @@ "Name": "netboot-Allow-New-Clients", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Allow-New-Clients", "SearchFlags": 0, "AdvancedView": true, @@ -8141,7 +8141,7 @@ "Name": "Short-Server-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Short-Server-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -8157,7 +8157,7 @@ "Name": "ms-DNS-Signing-Keys", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute that contains the set of encrypted DNSSEC signing keys used by the DNS server to sign the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -8172,7 +8172,7 @@ "Name": "Attribute-Types", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Attribute-Types", "SearchFlags": 0, "AdvancedView": true, @@ -8187,7 +8187,7 @@ "Name": "Last-Known-Parent", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Known-Parent", "SearchFlags": 0, "AdvancedView": true, @@ -8202,7 +8202,7 @@ "Name": "ms-Exch-LabeledURI", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-Exch-LabeledURI", "SearchFlags": 0, "IsDefunct": false, @@ -8218,7 +8218,7 @@ "Name": "netboot-Answer-Only-Valid-Clients", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Answer-Only-Valid-Clients", "SearchFlags": 0, "AdvancedView": true, @@ -8233,7 +8233,7 @@ "Name": "Show-In-Address-Book", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Show-In-Address-Book", "SearchFlags": 16, "AdvancedView": true, @@ -8248,7 +8248,7 @@ "Name": "ms-DNS-DNSKEY-Records", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute that contains the DNSKEY record set for the root of the DNS zone and the root key signing key signature records.", "SearchFlags": 8, "AdvancedView": true, @@ -8263,7 +8263,7 @@ "Name": "audio", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The Audio attribute type allows the storing of sounds in the Directory.", "SearchFlags": 0, "AdvancedView": false, @@ -8281,7 +8281,7 @@ "Name": "Last-Logoff", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Logoff", "SearchFlags": 0, "AdvancedView": true, @@ -8296,7 +8296,7 @@ "Name": "ms-Exch-Owner-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-Exch-Owner-BL", "SearchFlags": 0, "AdvancedView": true, @@ -8311,7 +8311,7 @@ "Name": "netboot-Answer-Requests", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Answer-Requests", "SearchFlags": 0, "AdvancedView": true, @@ -8326,7 +8326,7 @@ "Name": "Show-In-Advanced-View-Only", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Show-In-Advanced-View-Only", "SearchFlags": 17, "AdvancedView": true, @@ -8341,7 +8341,7 @@ "Name": "ms-DNS-Parent-Has-Secure-Delegation", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define whether the parental delegation to the DNS zone is secure.", "SearchFlags": 8, "AdvancedView": true, @@ -8356,7 +8356,7 @@ "Name": "Auditing-Policy", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Auditing-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -8371,7 +8371,7 @@ "Name": "Last-Logon", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Logon", "SearchFlags": 0, "AdvancedView": true, @@ -8386,7 +8386,7 @@ "Name": "ms-FRS-Hub-Member", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-FRS-Hub-Member", "SearchFlags": 0, "AdvancedView": true, @@ -8401,7 +8401,7 @@ "Name": "netboot-Current-Client-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Current-Client-Count", "SearchFlags": 0, "AdvancedView": true, @@ -8416,7 +8416,7 @@ "Name": "SID-History", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "SID-History", "SearchFlags": 1, "PartialAttributeSet": true, @@ -8432,7 +8432,7 @@ "Name": "ms-DNS-Propagation-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to define in seconds the expected time required to propagate zone changes through Active Directory.", "SearchFlags": 8, "AdvancedView": true, @@ -8447,7 +8447,7 @@ "Name": "Authentication-Options", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Authentication-Options", "SearchFlags": 0, "AdvancedView": true, @@ -8462,7 +8462,7 @@ "Name": "Last-Logon-Timestamp", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Logon-Timestamp", "SearchFlags": 1, "PartialAttributeSet": true, @@ -8478,7 +8478,7 @@ "Name": "ms-FRS-Topology-Pref", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-FRS-Topology-Pref", "SearchFlags": 0, "AdvancedView": true, @@ -8493,7 +8493,7 @@ "Name": "Netboot-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Netboot-GUID", "SearchFlags": 1, "PartialAttributeSet": true, @@ -8509,7 +8509,7 @@ "Name": "Signature-Algorithms", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Signature-Algorithms", "SearchFlags": 0, "PartialAttributeSet": true, @@ -8525,7 +8525,7 @@ "Name": "ms-DNS-NSEC3-User-Salt", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines a user-specified NSEC3 salt string to use when signing the DNS zone. If empty, random salt will be used.", "SearchFlags": 8, "AdvancedView": true, @@ -8540,7 +8540,7 @@ "Name": "Authority-Revocation-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Authority-Revocation-List", "SearchFlags": 0, "AdvancedView": true, @@ -8555,7 +8555,7 @@ "Name": "Last-Set-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Set-Time", "SearchFlags": 0, "AdvancedView": true, @@ -8570,7 +8570,7 @@ "Name": "ms-DFSR-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR version number", "SearchFlags": 0, "AdvancedView": true, @@ -8588,7 +8588,7 @@ "Name": "Netboot-DUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Netboot-DUID", "SearchFlags": 1, "PartialAttributeSet": true, @@ -8604,7 +8604,7 @@ "Name": "Site-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Site-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -8619,7 +8619,7 @@ "Name": "ms-DNS-NSEC3-Current-Salt", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute that defines the current NSEC3 salt string being used to sign the DNS zone.", "SearchFlags": 8, "AdvancedView": true, @@ -8634,7 +8634,7 @@ "Name": "Auxiliary-Class", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Auxiliary-Class", "SearchFlags": 0, "AdvancedView": true, @@ -8649,7 +8649,7 @@ "Name": "Last-Update-Sequence", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last-Update-Sequence", "SearchFlags": 0, "AdvancedView": true, @@ -8664,7 +8664,7 @@ "Name": "ms-DFSR-Extension", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR Extension attribute", "SearchFlags": 0, "AdvancedView": true, @@ -8690,7 +8690,7 @@ "Name": "Netboot-Initialization", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Netboot-Initialization", "SearchFlags": 0, "AdvancedView": true, @@ -8705,7 +8705,7 @@ "Name": "Site-Link-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Site-Link-List", "SearchFlags": 0, "AdvancedView": true, @@ -8720,7 +8720,7 @@ "Name": "ms-Authz-Effective-Security-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a central access rule, this attribute defines the permission that is applying to the target resources on the central access rule.", "SearchFlags": 0, "AdvancedView": true, @@ -8735,7 +8735,7 @@ "Name": "Bad-Password-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Bad-Password-Time", "SearchFlags": 0, "AdvancedView": true, @@ -8750,7 +8750,7 @@ "Name": "LDAP-Admin-Limits", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "LDAP-Admin-Limits", "SearchFlags": 0, "AdvancedView": true, @@ -8765,7 +8765,7 @@ "Name": "ms-DFSR-RootPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of the root directory", "SearchFlags": 0, "AdvancedView": true, @@ -8782,7 +8782,7 @@ "Name": "netboot-IntelliMirror-OSes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "netboot-IntelliMirror-OSes", "SearchFlags": 0, "AdvancedView": true, @@ -8797,7 +8797,7 @@ "Name": "Site-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Site-List", "SearchFlags": 0, "AdvancedView": true, @@ -8812,7 +8812,7 @@ "Name": "ms-Authz-Proposed-Security-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Central Access Policy Entry, defines the proposed security policy of the objects the CAPE is applied to.", "SearchFlags": 0, "AdvancedView": true, @@ -8827,7 +8827,7 @@ "Name": "Bad-Pwd-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Bad-Pwd-Count", "SearchFlags": 0, "AdvancedView": true, @@ -8842,7 +8842,7 @@ "Name": "LDAP-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "LDAP-Display-Name", "SearchFlags": 9, "PartialAttributeSet": true, @@ -8858,7 +8858,7 @@ "Name": "ms-DFSR-RootSizeInMb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Size of the root directory in MB", "SearchFlags": 0, "AdvancedView": true, @@ -8877,7 +8877,7 @@ "Name": "netboot-Limit-Clients", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Limit-Clients", "SearchFlags": 0, "AdvancedView": true, @@ -8892,7 +8892,7 @@ "Name": "Site-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Site-Object", "SearchFlags": 0, "AdvancedView": true, @@ -8907,7 +8907,7 @@ "Name": "ms-Authz-Last-Effective-Security-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a central access rule, this attribute defines the permission that was last applied to the objects the Central Access Rule is applied to.", "SearchFlags": 0, "AdvancedView": true, @@ -8922,7 +8922,7 @@ "Name": "Birth-Location", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Birth-Location", "SearchFlags": 1, "AdvancedView": true, @@ -8937,7 +8937,7 @@ "Name": "LDAP-IPDeny-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "LDAP-IPDeny-List", "SearchFlags": 0, "AdvancedView": true, @@ -8952,7 +8952,7 @@ "Name": "ms-DFSR-StagingPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of the staging directory", "SearchFlags": 0, "AdvancedView": true, @@ -8969,7 +8969,7 @@ "Name": "netboot-Locally-Installed-OSes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "netboot-Locally-Installed-OSes", "SearchFlags": 0, "AdvancedView": true, @@ -8984,7 +8984,7 @@ "Name": "Site-Object-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Site-Object-BL", "SearchFlags": 0, "AdvancedView": true, @@ -8999,7 +8999,7 @@ "Name": "ms-Authz-Resource-Condition", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a central access rule, this attribute is an expression that identifies the scope of the target resource to which the policy applies.", "SearchFlags": 0, "AdvancedView": true, @@ -9014,7 +9014,7 @@ "Name": "Bridgehead-Server-List-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Bridgehead-Server-List-BL", "SearchFlags": 0, "AdvancedView": true, @@ -9029,7 +9029,7 @@ "Name": "Legacy-Exchange-DN", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Legacy-Exchange-DN", "SearchFlags": 13, "PartialAttributeSet": true, @@ -9045,7 +9045,7 @@ "Name": "ms-DFSR-StagingSizeInMb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Size of the staging directory in MB", "SearchFlags": 0, "AdvancedView": true, @@ -9064,7 +9064,7 @@ "Name": "Netboot-Machine-File-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Netboot-Machine-File-Path", "SearchFlags": 0, "PartialAttributeSet": true, @@ -9080,7 +9080,7 @@ "Name": "Site-Server", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Site-Server", "SearchFlags": 0, "AdvancedView": true, @@ -9095,7 +9095,7 @@ "Name": "ms-Authz-Central-Access-Policy-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Central Access Policy, this attribute defines a GUID that can be used to identify the set of policies when applied to a resource.", "SearchFlags": 0, "AdvancedView": true, @@ -9110,7 +9110,7 @@ "Name": "Bridgehead-Transport-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Bridgehead-Transport-List", "SearchFlags": 0, "AdvancedView": true, @@ -9125,7 +9125,7 @@ "Name": "Link-ID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Link-ID", "SearchFlags": 0, "AdvancedView": true, @@ -9140,7 +9140,7 @@ "Name": "ms-DFSR-ConflictPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of the conflict directory", "SearchFlags": 0, "AdvancedView": true, @@ -9157,7 +9157,7 @@ "Name": "netboot-Max-Clients", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Max-Clients", "SearchFlags": 0, "AdvancedView": true, @@ -9172,7 +9172,7 @@ "Name": "SMTP-Mail-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "SMTP-Mail-Address", "SearchFlags": 0, "AdvancedView": true, @@ -9187,7 +9187,7 @@ "Name": "ms-Authz-Member-Rules-In-Central-Access-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a central access policy, this attribute identifies the central access rules that comprise the policy.", "SearchFlags": 0, "AdvancedView": true, @@ -9202,7 +9202,7 @@ "Name": "buildingName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The buildingName attribute type specifies the name of the building where an organization or organizational unit is based.", "SearchFlags": 0, "AdvancedView": true, @@ -9217,7 +9217,7 @@ "Name": "Link-Track-Secret", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Link-Track-Secret", "SearchFlags": 0, "AdvancedView": true, @@ -9232,7 +9232,7 @@ "Name": "ms-DFSR-ConflictSizeInMb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Size of the Conflict directory in MB", "SearchFlags": 0, "AdvancedView": true, @@ -9251,7 +9251,7 @@ "Name": "Netboot-Mirror-Data-File", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Netboot-Mirror-Data-File", "SearchFlags": 0, "AdvancedView": true, @@ -9266,7 +9266,7 @@ "Name": "SPN-Mappings", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "SPN-Mappings", "SearchFlags": 0, "AdvancedView": true, @@ -9281,7 +9281,7 @@ "Name": "ms-Authz-Member-Rules-In-Central-Access-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-Authz-Member-Rules-In-Central-Access-Policy. For a central access rule object, this attribute references one or more central access policies that point to it.", "SearchFlags": 0, "AdvancedView": true, @@ -9296,7 +9296,7 @@ "Name": "Builtin-Creation-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Builtin-Creation-Time", "SearchFlags": 0, "AdvancedView": true, @@ -9311,7 +9311,7 @@ "Name": "Lm-Pwd-History", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Lm-Pwd-History", "SearchFlags": 0, "AdvancedView": true, @@ -9326,7 +9326,7 @@ "Name": "ms-DFSR-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Specify if the object enabled", "SearchFlags": 0, "AdvancedView": true, @@ -9344,7 +9344,7 @@ "Name": "netboot-New-Machine-Naming-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "netboot-New-Machine-Naming-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -9359,7 +9359,7 @@ "Name": "State-Or-Province-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "State-Or-Province-Name", "SearchFlags": 16, "PartialAttributeSet": true, @@ -9375,7 +9375,7 @@ "Name": "ms-DS-Claim-Source", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type, this attribute indicates the source of the claim type. For example, the source can be certificate.", "SearchFlags": 0, "AdvancedView": true, @@ -9390,7 +9390,7 @@ "Name": "Builtin-Modified-Count", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Builtin-Modified-Count", "SearchFlags": 0, "AdvancedView": true, @@ -9405,7 +9405,7 @@ "Name": "Local-Policy-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Local-Policy-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -9420,7 +9420,7 @@ "Name": "ms-DFSR-ReplicationGroupType", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Type of Replication Group", "SearchFlags": 0, "AdvancedView": true, @@ -9437,7 +9437,7 @@ "Name": "netboot-New-Machine-OU", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-New-Machine-OU", "SearchFlags": 0, "AdvancedView": true, @@ -9452,7 +9452,7 @@ "Name": "Street-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Street-Address", "SearchFlags": 16, "PartialAttributeSet": true, @@ -9470,7 +9470,7 @@ "Name": "ms-DS-Claim-Source-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a security principal claim type, lists the type of store the issued claim is sourced from", "SearchFlags": 0, "AdvancedView": true, @@ -9485,7 +9485,7 @@ "Name": "Business-Category", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Business-Category", "SearchFlags": 0, "AdvancedView": true, @@ -9503,7 +9503,7 @@ "Name": "Local-Policy-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Local-Policy-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -9518,7 +9518,7 @@ "Name": "ms-DFSR-TombstoneExpiryInMin", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Tombstone record lifetime in minutes", "SearchFlags": 0, "AdvancedView": true, @@ -9535,7 +9535,7 @@ "Name": "netboot-SCP-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "netboot-SCP-BL", "SearchFlags": 0, "AdvancedView": true, @@ -9550,7 +9550,7 @@ "Name": "Structural-Object-Class", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The class hierarchy without auxiliary classes", "SearchFlags": 0, "AdvancedView": true, @@ -9565,7 +9565,7 @@ "Name": "ms-DS-Claim-Is-Value-Space-Restricted", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type, this attribute identifies whether a user can input values other than those described in the msDS-ClaimPossibleValues in applications.", "SearchFlags": 0, "AdvancedView": true, @@ -9580,7 +9580,7 @@ "Name": "Bytes-Per-Minute", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Bytes-Per-Minute", "SearchFlags": 0, "AdvancedView": true, @@ -9595,7 +9595,7 @@ "Name": "Locale-ID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Locale-ID", "SearchFlags": 16, "AdvancedView": true, @@ -9610,7 +9610,7 @@ "Name": "ms-DFSR-FileFilter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Filter string applied to files", "SearchFlags": 0, "AdvancedView": true, @@ -9628,7 +9628,7 @@ "Name": "netboot-Server", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "netboot-Server", "SearchFlags": 0, "AdvancedView": true, @@ -9643,7 +9643,7 @@ "Name": "Sub-Class-Of", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Sub-Class-Of", "SearchFlags": 8, "AdvancedView": true, @@ -9658,7 +9658,7 @@ "Name": "ms-DS-Claim-Is-Single-Valued", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a claim type object, this attribute identifies if the claim type or resource property can only contain single value.", "SearchFlags": 0, "AdvancedView": true, @@ -9673,7 +9673,7 @@ "Name": "CA-Certificate", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "CA-Certificate", "SearchFlags": 0, "PartialAttributeSet": true, @@ -9689,7 +9689,7 @@ "Name": "Locality-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Locality-Name", "SearchFlags": 17, "PartialAttributeSet": true, @@ -9711,7 +9711,7 @@ "Name": "ms-DFSR-DirectoryFilter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Filter string applied to directories", "SearchFlags": 0, "AdvancedView": true, @@ -9729,7 +9729,7 @@ "Name": "Netboot-SIF-File", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Netboot-SIF-File", "SearchFlags": 0, "AdvancedView": true, @@ -9744,7 +9744,7 @@ "Name": "Sub-Refs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Sub-Refs", "SearchFlags": 0, "PartialAttributeSet": true, @@ -9760,7 +9760,7 @@ "Name": "ms-DS-Generation-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For virtual machine snapshot resuming detection. This attribute represents the VM Generation ID.", "SearchFlags": 0, "AdvancedView": true, @@ -9775,7 +9775,7 @@ "Name": "CA-Certificate-DN", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "CA-Certificate-DN", "SearchFlags": 0, "PartialAttributeSet": true, @@ -9791,7 +9791,7 @@ "Name": "Localized-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Localized-Description", "SearchFlags": 0, "AdvancedView": true, @@ -9806,7 +9806,7 @@ "Name": "ms-DFSR-Schedule", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR Replication schedule", "SearchFlags": 0, "AdvancedView": true, @@ -9824,7 +9824,7 @@ "Name": "netboot-Tools", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "netboot-Tools", "SearchFlags": 0, "AdvancedView": true, @@ -9839,7 +9839,7 @@ "Name": "SubSchemaSubEntry", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "SubSchemaSubEntry", "SearchFlags": 0, "AdvancedView": true, @@ -9854,7 +9854,7 @@ "Name": "ms-DS-Primary-Computer", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a user or group object, identifies the primary computers.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -9870,7 +9870,7 @@ "Name": "CA-Connect", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "CA-Connect", "SearchFlags": 0, "AdvancedView": true, @@ -9885,7 +9885,7 @@ "Name": "Localization-Display-Id", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Localization-Display-Id", "SearchFlags": 0, "AdvancedView": true, @@ -9900,7 +9900,7 @@ "Name": "ms-DFSR-Keywords", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User defined keywords", "SearchFlags": 0, "AdvancedView": true, @@ -9918,7 +9918,7 @@ "Name": "Network-Address", "OMSyntax": 20, "AttributeSyntax": "2.5.5.4", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Network-Address", "SearchFlags": 0, "AdvancedView": true, @@ -9933,7 +9933,7 @@ "Name": "Super-Scope-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Super-Scope-Description", "SearchFlags": 0, "AdvancedView": true, @@ -9948,7 +9948,7 @@ "Name": "ms-DS-Is-Primary-Computer-For", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink atribute for msDS-IsPrimaryComputer.", "SearchFlags": 0, "AdvancedView": true, @@ -9963,7 +9963,7 @@ "Name": "CA-Usages", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "CA-Usages", "SearchFlags": 0, "AdvancedView": true, @@ -9978,7 +9978,7 @@ "Name": "Location", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Location", "SearchFlags": 1, "PartialAttributeSet": true, @@ -9996,7 +9996,7 @@ "Name": "ms-DFSR-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR Object Flags", "SearchFlags": 0, "AdvancedView": true, @@ -10022,7 +10022,7 @@ "Name": "Next-Level-Store", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Next-Level-Store", "SearchFlags": 0, "AdvancedView": true, @@ -10037,7 +10037,7 @@ "Name": "Super-Scopes", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Super-Scopes", "SearchFlags": 0, "AdvancedView": true, @@ -10052,7 +10052,7 @@ "Name": "ms-Kds-KDF-AlgorithmID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The algorithm name of the key derivation function used to compute keys.", "SearchFlags": 640, "AdvancedView": true, @@ -10067,7 +10067,7 @@ "Name": "CA-WEB-URL", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "CA-WEB-URL", "SearchFlags": 0, "AdvancedView": true, @@ -10082,7 +10082,7 @@ "Name": "Lock-Out-Observation-Window", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lock-Out-Observation-Window", "SearchFlags": 0, "AdvancedView": true, @@ -10097,7 +10097,7 @@ "Name": "ms-DFSR-Options", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR object options", "SearchFlags": 0, "AdvancedView": true, @@ -10123,7 +10123,7 @@ "Name": "Next-Rid", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Next-Rid", "SearchFlags": 0, "AdvancedView": true, @@ -10138,7 +10138,7 @@ "Name": "Superior-DNS-Root", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Superior-DNS-Root", "SearchFlags": 0, "AdvancedView": true, @@ -10153,7 +10153,7 @@ "Name": "ms-Kds-KDF-Param", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Parameters for the key derivation algorithm.", "SearchFlags": 640, "AdvancedView": true, @@ -10168,7 +10168,7 @@ "Name": "Can-Upgrade-Script", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Can-Upgrade-Script", "SearchFlags": 0, "AdvancedView": true, @@ -10183,7 +10183,7 @@ "Name": "Lockout-Duration", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lockout-Duration", "SearchFlags": 0, "AdvancedView": true, @@ -10198,7 +10198,7 @@ "Name": "ms-DFSR-ContentSetGuid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DFSR Content set guid", "SearchFlags": 0, "AdvancedView": true, @@ -10215,7 +10215,7 @@ "Name": "Non-Security-Member", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Non-Security-Member", "SearchFlags": 0, "AdvancedView": true, @@ -10230,7 +10230,7 @@ "Name": "Supplemental-Credentials", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Supplemental-Credentials", "SearchFlags": 0, "AdvancedView": true, @@ -10245,7 +10245,7 @@ "Name": "ms-Kds-SecretAgreement-AlgorithmID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The name of the secret agreement algorithm to be used with public keys.", "SearchFlags": 640, "AdvancedView": true, @@ -10260,7 +10260,7 @@ "Name": "Canonical-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Canonical-Name", "SearchFlags": 0, "AdvancedView": true, @@ -10275,7 +10275,7 @@ "Name": "Lockout-Threshold", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lockout-Threshold", "SearchFlags": 0, "AdvancedView": true, @@ -10290,7 +10290,7 @@ "Name": "ms-DFSR-RdcEnabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Enable and disable RDC", "SearchFlags": 0, "AdvancedView": true, @@ -10307,7 +10307,7 @@ "Name": "Non-Security-Member-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Non-Security-Member-BL", "SearchFlags": 0, "AdvancedView": true, @@ -10322,7 +10322,7 @@ "Name": "Supported-Application-Context", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Supported-Application-Context", "SearchFlags": 0, "AdvancedView": true, @@ -10337,7 +10337,7 @@ "Name": "ms-Kds-SecretAgreement-Param", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The parameters for the secret agreement algorithm.", "SearchFlags": 640, "AdvancedView": true, @@ -10352,7 +10352,7 @@ "Name": "carLicense", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Vehicle license or registration plate.", "SearchFlags": 0, "AdvancedView": false, @@ -10370,7 +10370,7 @@ "Name": "Lockout-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lockout-Time", "SearchFlags": 0, "AdvancedView": true, @@ -10385,7 +10385,7 @@ "Name": "ms-DFSR-RdcMinFileSizeInKb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minimum file size to apply RDC", "SearchFlags": 0, "AdvancedView": true, @@ -10402,7 +10402,7 @@ "Name": "Notification-List", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Notification-List", "SearchFlags": 0, "AdvancedView": true, @@ -10417,7 +10417,7 @@ "Name": "Surname", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Surname", "SearchFlags": 5, "PartialAttributeSet": true, @@ -10435,7 +10435,7 @@ "Name": "ms-Kds-PublicKey-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The length of the secret agreement public key.", "SearchFlags": 640, "AdvancedView": true, @@ -10450,7 +10450,7 @@ "Name": "Catalogs", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Catalogs", "SearchFlags": 0, "AdvancedView": true, @@ -10465,7 +10465,7 @@ "Name": "Logo", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Logo", "SearchFlags": 0, "AdvancedView": true, @@ -10480,7 +10480,7 @@ "Name": "ms-DFSR-DfsPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of associated DFS link", "SearchFlags": 1, "AdvancedView": true, @@ -10497,7 +10497,7 @@ "Name": "NT-Group-Members", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "NT-Group-Members", "SearchFlags": 0, "AdvancedView": true, @@ -10512,7 +10512,7 @@ "Name": "Sync-Attributes", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Sync-Attributes", "SearchFlags": 0, "AdvancedView": true, @@ -10527,7 +10527,7 @@ "Name": "ms-Kds-PrivateKey-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The length of the secret agreement private key.", "SearchFlags": 640, "AdvancedView": true, @@ -10542,7 +10542,7 @@ "Name": "Categories", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Categories", "SearchFlags": 0, "AdvancedView": true, @@ -10557,7 +10557,7 @@ "Name": "Logon-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Logon-Count", "SearchFlags": 0, "AdvancedView": true, @@ -10572,7 +10572,7 @@ "Name": "ms-DFSR-RootFence", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Root directory fence value", "SearchFlags": 0, "AdvancedView": true, @@ -10589,7 +10589,7 @@ "Name": "NT-Mixed-Domain", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "NT-Mixed-Domain", "SearchFlags": 0, "AdvancedView": true, @@ -10604,7 +10604,7 @@ "Name": "Sync-Membership", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Sync-Membership", "SearchFlags": 0, "AdvancedView": true, @@ -10619,7 +10619,7 @@ "Name": "ms-Kds-RootKeyData", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Root key.", "SearchFlags": 640, "AdvancedView": true, @@ -10634,7 +10634,7 @@ "Name": "Category-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Category-Id", "SearchFlags": 0, "AdvancedView": true, @@ -10649,7 +10649,7 @@ "Name": "Logon-Hours", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Logon-Hours", "SearchFlags": 16, "AdvancedView": true, @@ -10664,7 +10664,7 @@ "Name": "ms-DFSR-ReplicationGroupGuid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Replication group guid", "SearchFlags": 1, "AdvancedView": true, @@ -10682,7 +10682,7 @@ "Name": "Nt-Pwd-History", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Nt-Pwd-History", "SearchFlags": 0, "AdvancedView": true, @@ -10697,7 +10697,7 @@ "Name": "Sync-With-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Sync-With-Object", "SearchFlags": 0, "AdvancedView": true, @@ -10712,7 +10712,7 @@ "Name": "ms-Kds-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version number of this root key.", "SearchFlags": 640, "AdvancedView": true, @@ -10727,7 +10727,7 @@ "Name": "Certificate-Authority-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Certificate-Authority-Object", "SearchFlags": 0, "AdvancedView": true, @@ -10742,7 +10742,7 @@ "Name": "Logon-Workstation", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Logon-Workstation", "SearchFlags": 16, "AdvancedView": true, @@ -10757,7 +10757,7 @@ "Name": "ms-DFSR-DfsLinkTarget", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Link target used for the subscription", "SearchFlags": 0, "AdvancedView": true, @@ -10774,7 +10774,7 @@ "Name": "NT-Security-Descriptor", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "NT-Security-Descriptor", "SearchFlags": 8, "PartialAttributeSet": true, @@ -10790,7 +10790,7 @@ "Name": "Sync-With-SID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Sync-With-SID", "SearchFlags": 0, "AdvancedView": true, @@ -10805,7 +10805,7 @@ "Name": "ms-Kds-DomainID", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Distinguished name of the Domain Controller which generated this root key.", "SearchFlags": 640, "AdvancedView": true, @@ -10820,7 +10820,7 @@ "Name": "Certificate-Revocation-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Certificate-Revocation-List", "SearchFlags": 0, "AdvancedView": true, @@ -10835,7 +10835,7 @@ "Name": "LSA-Creation-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "LSA-Creation-Time", "SearchFlags": 0, "AdvancedView": true, @@ -10850,7 +10850,7 @@ "Name": "ms-DFSR-MemberReference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Forward link to DFSR-Member object", "SearchFlags": 0, "AdvancedView": true, @@ -10867,7 +10867,7 @@ "Name": "Obj-Dist-Name", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Obj-Dist-Name", "SearchFlags": 8, "PartialAttributeSet": true, @@ -10883,7 +10883,7 @@ "Name": "System-Auxiliary-Class", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "System-Auxiliary-Class", "SearchFlags": 0, "AdvancedView": true, @@ -10898,7 +10898,7 @@ "Name": "ms-Kds-UseStartTime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The time after which this root key may be used.", "SearchFlags": 640, "AdvancedView": true, @@ -10913,7 +10913,7 @@ "Name": "Certificate-Templates", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Certificate-Templates", "SearchFlags": 0, "PartialAttributeSet": true, @@ -10929,7 +10929,7 @@ "Name": "LSA-Modified-Count", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "LSA-Modified-Count", "SearchFlags": 0, "AdvancedView": true, @@ -10944,7 +10944,7 @@ "Name": "ms-DFSR-ComputerReference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Forward link to Computer object", "SearchFlags": 0, "AdvancedView": true, @@ -10961,7 +10961,7 @@ "Name": "Object-Category", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Category", "SearchFlags": 1, "PartialAttributeSet": true, @@ -10977,7 +10977,7 @@ "Name": "System-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "System-Flags", "SearchFlags": 8, "AdvancedView": true, @@ -10992,7 +10992,7 @@ "Name": "ms-Kds-CreateTime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The time when this root key was created.", "SearchFlags": 640, "AdvancedView": true, @@ -11007,7 +11007,7 @@ "Name": "Class-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Class-Display-Name", "SearchFlags": 0, "AdvancedView": true, @@ -11022,7 +11022,7 @@ "Name": "Machine-Architecture", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Machine-Architecture", "SearchFlags": 0, "AdvancedView": true, @@ -11037,7 +11037,7 @@ "Name": "ms-DFSR-MemberReferenceBL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink attribute for ms-DFSR-MemberReference", "SearchFlags": 0, "AdvancedView": true, @@ -11054,7 +11054,7 @@ "Name": "Object-Class", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Object-Class", "SearchFlags": 9, "PartialAttributeSet": true, @@ -11070,7 +11070,7 @@ "Name": "System-May-Contain", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "System-May-Contain", "SearchFlags": 0, "AdvancedView": true, @@ -11085,7 +11085,7 @@ "Name": "ms-Imaging-Thumbprint-Hash", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains a hash of the security certificate for the Scan Repository/Secure Print Device.", "SearchFlags": 0, "AdvancedView": true, @@ -11100,7 +11100,7 @@ "Name": "Code-Page", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Code-Page", "SearchFlags": 16, "AdvancedView": true, @@ -11115,7 +11115,7 @@ "Name": "Machine-Password-Change-Interval", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Machine-Password-Change-Interval", "SearchFlags": 0, "AdvancedView": true, @@ -11130,7 +11130,7 @@ "Name": "ms-DFSR-ComputerReferenceBL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink attribute for ms-DFSR-ComputerReference", "SearchFlags": 0, "AdvancedView": true, @@ -11147,7 +11147,7 @@ "Name": "Object-Class-Category", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Class-Category", "SearchFlags": 0, "AdvancedView": true, @@ -11162,7 +11162,7 @@ "Name": "System-Must-Contain", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "System-Must-Contain", "SearchFlags": 0, "AdvancedView": true, @@ -11177,7 +11177,7 @@ "Name": "ms-Imaging-Hash-Algorithm", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the name of the hash algorithm used to create the Thumbprint Hash for the Scan Repository/Secure Print Device.", "SearchFlags": 0, "AdvancedView": true, @@ -11192,7 +11192,7 @@ "Name": "COM-ClassID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "COM-ClassID", "SearchFlags": 1, "AdvancedView": true, @@ -11207,7 +11207,7 @@ "Name": "Machine-Role", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Machine-Role", "SearchFlags": 0, "AdvancedView": true, @@ -11222,7 +11222,7 @@ "Name": "ms-DFSR-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Priority level", "SearchFlags": 0, "AdvancedView": true, @@ -11240,7 +11240,7 @@ "Name": "Object-Classes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Object-Classes", "SearchFlags": 0, "AdvancedView": true, @@ -11255,7 +11255,7 @@ "Name": "System-Only", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "System-Only", "SearchFlags": 0, "AdvancedView": true, @@ -11270,7 +11270,7 @@ "Name": "ms-DS-Allowed-To-Act-On-Behalf-Of-Other-Identity", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used for access checks to determine if a requestor has permission to act on the behalf of other identities to services running as this account.", "SearchFlags": 0, "AdvancedView": true, @@ -11285,7 +11285,7 @@ "Name": "COM-CLSID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "COM-CLSID", "SearchFlags": 0, "AdvancedView": true, @@ -11300,7 +11300,7 @@ "Name": "Machine-Wide-Policy", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Machine-Wide-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -11315,7 +11315,7 @@ "Name": "ms-DFSR-DeletedPath", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Full path of the Deleted directory", "SearchFlags": 0, "AdvancedView": true, @@ -11332,7 +11332,7 @@ "Name": "Object-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Count", "SearchFlags": 0, "AdvancedView": true, @@ -11347,7 +11347,7 @@ "Name": "System-Poss-Superiors", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "System-Poss-Superiors", "SearchFlags": 0, "PartialAttributeSet": true, @@ -11363,7 +11363,7 @@ "Name": "ms-DS-ManagedPassword", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is the managed password data for a group MSA.", "SearchFlags": 0, "AdvancedView": true, @@ -11378,7 +11378,7 @@ "Name": "COM-InterfaceID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "COM-InterfaceID", "SearchFlags": 0, "AdvancedView": true, @@ -11393,7 +11393,7 @@ "Name": "Managed-By", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Managed-By", "SearchFlags": 0, "AdvancedView": true, @@ -11412,7 +11412,7 @@ "Name": "ms-DFSR-DeletedSizeInMb", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Size of the Deleted directory in MB", "SearchFlags": 0, "AdvancedView": true, @@ -11431,7 +11431,7 @@ "Name": "Object-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Guid", "SearchFlags": 9, "PartialAttributeSet": true, @@ -11447,7 +11447,7 @@ "Name": "Telephone-Number", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Telephone-Number", "SearchFlags": 0, "PartialAttributeSet": true, @@ -11467,7 +11467,7 @@ "Name": "ms-DS-ManagedPasswordId", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is the identifier for the current managed password data for a group MSA.", "SearchFlags": 0, "AdvancedView": true, @@ -11482,7 +11482,7 @@ "Name": "COM-Other-Prog-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "COM-Other-Prog-Id", "SearchFlags": 0, "AdvancedView": true, @@ -11497,7 +11497,7 @@ "Name": "Managed-Objects", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Managed-Objects", "SearchFlags": 0, "AdvancedView": true, @@ -11512,7 +11512,7 @@ "Name": "ms-DFSR-ReadOnly", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Specify whether the content is read-only or read-write", "SearchFlags": 0, "AdvancedView": true, @@ -11529,7 +11529,7 @@ "Name": "Object-Sid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Sid", "SearchFlags": 9, "PartialAttributeSet": true, @@ -11545,7 +11545,7 @@ "Name": "Teletex-Terminal-Identifier", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Teletex-Terminal-Identifier", "SearchFlags": 0, "AdvancedView": true, @@ -11562,7 +11562,7 @@ "Name": "ms-DS-ManagedPasswordPreviousId", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is the identifier for the previous managed password data for a group MSA.", "SearchFlags": 0, "AdvancedView": true, @@ -11577,7 +11577,7 @@ "Name": "COM-ProgID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "COM-ProgID", "SearchFlags": 0, "AdvancedView": true, @@ -11592,7 +11592,7 @@ "Name": "Manager", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Manager", "SearchFlags": 16, "PartialAttributeSet": true, @@ -11612,7 +11612,7 @@ "Name": "ms-DFSR-CachePolicy", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "On-demand cache policy options", "SearchFlags": 0, "AdvancedView": true, @@ -11629,7 +11629,7 @@ "Name": "Object-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object-Version", "SearchFlags": 0, "AdvancedView": true, @@ -11644,7 +11644,7 @@ "Name": "Telex-Number", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Telex-Number", "SearchFlags": 0, "AdvancedView": true, @@ -11661,7 +11661,7 @@ "Name": "ms-DS-ManagedPasswordInterval", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to retrieve the number of days before a managed password is automatically changed for a group MSA.", "SearchFlags": 0, "AdvancedView": true, @@ -11676,7 +11676,7 @@ "Name": "COM-Treat-As-Class-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "COM-Treat-As-Class-Id", "SearchFlags": 0, "AdvancedView": true, @@ -11691,7 +11691,7 @@ "Name": "MAPI-ID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MAPI-ID", "SearchFlags": 0, "AdvancedView": true, @@ -11706,7 +11706,7 @@ "Name": "ms-DFSR-MinDurationCacheInMin", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minimum time in minutes before truncating files", "SearchFlags": 0, "AdvancedView": true, @@ -11723,7 +11723,7 @@ "Name": "OEM-Information", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "OEM-Information", "SearchFlags": 0, "AdvancedView": true, @@ -11738,7 +11738,7 @@ "Name": "Telex-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Telex-Primary", "SearchFlags": 0, "AdvancedView": true, @@ -11753,7 +11753,7 @@ "Name": "ms-DS-GroupMSAMembership", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used for access checks to determine if a requestor has permission to retrieve the password for a group MSA.", "SearchFlags": 0, "AdvancedView": true, @@ -11768,7 +11768,7 @@ "Name": "COM-Typelib-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "COM-Typelib-Id", "SearchFlags": 0, "AdvancedView": true, @@ -11783,7 +11783,7 @@ "Name": "Marshalled-Interface", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Marshalled-Interface", "SearchFlags": 0, "AdvancedView": true, @@ -11798,7 +11798,7 @@ "Name": "ms-DFSR-MaxAgeInCacheInMin", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Maximum time in minutes to keep files in full form", "SearchFlags": 0, "AdvancedView": true, @@ -11815,7 +11815,7 @@ "Name": "OM-Object-Class", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "OM-Object-Class", "SearchFlags": 0, "AdvancedView": true, @@ -11830,7 +11830,7 @@ "Name": "Template-Roots", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Template-Roots", "SearchFlags": 0, "AdvancedView": true, @@ -11845,7 +11845,7 @@ "Name": "ms-DS-GeoCoordinates-Altitude", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-GeoCoordinates-Altitude", "SearchFlags": 1, "AdvancedView": true, @@ -11862,7 +11862,7 @@ "Name": "COM-Unique-LIBID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "COM-Unique-LIBID", "SearchFlags": 0, "AdvancedView": true, @@ -11877,7 +11877,7 @@ "Name": "Mastered-By", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Mastered-By", "SearchFlags": 0, "AdvancedView": true, @@ -11892,7 +11892,7 @@ "Name": "ms-FVE-RecoveryPassword", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains a password that can recover a BitLocker-encrypted volume. Full Volume Encryption (FVE) was the pre-release name for BitLocker Drive Encryption.", "SearchFlags": 664, "AdvancedView": true, @@ -11907,7 +11907,7 @@ "Name": "OM-Syntax", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "OM-Syntax", "SearchFlags": 8, "AdvancedView": true, @@ -11922,7 +11922,7 @@ "Name": "Terminal-Server", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal-Server", "SearchFlags": 1, "AdvancedView": true, @@ -11937,7 +11937,7 @@ "Name": "ms-DS-GeoCoordinates-Latitude", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-GeoCoordinates-Latitude", "SearchFlags": 1, "AdvancedView": true, @@ -11954,7 +11954,7 @@ "Name": "Comment", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Comment", "SearchFlags": 0, "AdvancedView": true, @@ -11969,7 +11969,7 @@ "Name": "Max-Pwd-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Max-Pwd-Age", "SearchFlags": 0, "AdvancedView": true, @@ -11984,7 +11984,7 @@ "Name": "ms-FVE-VolumeGuid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains the GUID associated with a BitLocker-supported disk volume. Full Volume Encryption (FVE) was the pre-release name for BitLocker Drive Encryption.", "SearchFlags": 27, "PartialAttributeSet": true, @@ -12002,7 +12002,7 @@ "Name": "OMT-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "OMT-Guid", "SearchFlags": 0, "AdvancedView": true, @@ -12017,7 +12017,7 @@ "Name": "Text-Country", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Text-Country", "SearchFlags": 16, "AdvancedView": true, @@ -12034,7 +12034,7 @@ "Name": "ms-DS-GeoCoordinates-Longitude", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-GeoCoordinates-Longitude", "SearchFlags": 1, "AdvancedView": true, @@ -12051,7 +12051,7 @@ "Name": "Common-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Common-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -12087,7 +12087,7 @@ "Name": "Max-Renew-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Max-Renew-Age", "SearchFlags": 0, "AdvancedView": true, @@ -12102,7 +12102,7 @@ "Name": "ms-FVE-KeyPackage", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains a volume's BitLocker encryption key secured by the corresponding recovery password. Full Volume Encryption (FVE) was the pre-release name for BitLocker Drive Encryption.", "SearchFlags": 664, "AdvancedView": true, @@ -12119,7 +12119,7 @@ "Name": "OMT-Indx-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "OMT-Indx-Guid", "SearchFlags": 1, "AdvancedView": true, @@ -12134,7 +12134,7 @@ "Name": "Text-Encoded-OR-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Text-Encoded-OR-Address", "SearchFlags": 0, "AdvancedView": true, @@ -12149,7 +12149,7 @@ "Name": "ms-DS-Transformation-Rules", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Specifies the Transformation Rules for Cross-Forest Claims Transformation.", "SearchFlags": 0, "AdvancedView": true, @@ -12164,7 +12164,7 @@ "Name": "Company", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Company", "SearchFlags": 16, "AdvancedView": true, @@ -12179,7 +12179,7 @@ "Name": "Max-Storage", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Max-Storage", "SearchFlags": 16, "AdvancedView": true, @@ -12194,7 +12194,7 @@ "Name": "ms-FVE-RecoveryGuid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains the GUID associated with a BitLocker recovery password. Full Volume Encryption (FVE) was the pre-release name for BitLocker Drive Encryption.", "SearchFlags": 27, "PartialAttributeSet": true, @@ -12210,7 +12210,7 @@ "Name": "Operating-System", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Operating-System", "SearchFlags": 0, "AdvancedView": true, @@ -12225,7 +12225,7 @@ "Name": "Time-Refresh", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Time-Refresh", "SearchFlags": 0, "AdvancedView": true, @@ -12240,7 +12240,7 @@ "Name": "ms-DS-Ingress-Claims-Transformation-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is a link to a Claims Transformation Policy Object for the ingress claims (claims entering this forest) from the Trusted Domain. This is applicable only for an outgoing or bidirectional Cross-Forest Trust. If this link is absent, all the ingress claims are dropped.", "SearchFlags": 0, "AdvancedView": true, @@ -12255,7 +12255,7 @@ "Name": "Content-Indexing-Allowed", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Content-Indexing-Allowed", "SearchFlags": 0, "AdvancedView": true, @@ -12270,7 +12270,7 @@ "Name": "Max-Ticket-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Max-Ticket-Age", "SearchFlags": 0, "AdvancedView": true, @@ -12285,7 +12285,7 @@ "Name": "ms-TPM-OwnerInformation", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains the owner information of a particular TPM.", "SearchFlags": 664, "AdvancedView": true, @@ -12300,7 +12300,7 @@ "Name": "Operating-System-Hotfix", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Operating-System-Hotfix", "SearchFlags": 0, "AdvancedView": true, @@ -12315,7 +12315,7 @@ "Name": "Time-Vol-Change", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Time-Vol-Change", "SearchFlags": 1, "AdvancedView": true, @@ -12330,7 +12330,7 @@ "Name": "ms-DS-Egress-Claims-Transformation-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is a link to a Claims Transformation Policy Object for the egress claims (claims leaving this forest) to the Trusted Domain. This is applicable only for an incoming or bidirectional Cross-Forest Trust. When this link is not present, all claims are allowed to egress as-is.", "SearchFlags": 0, "AdvancedView": true, @@ -12345,7 +12345,7 @@ "Name": "Context-Menu", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Context-Menu", "SearchFlags": 0, "AdvancedView": true, @@ -12360,7 +12360,7 @@ "Name": "May-Contain", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "May-Contain", "SearchFlags": 0, "AdvancedView": true, @@ -12375,7 +12375,7 @@ "Name": "ms-ieee-80211-Data", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Stores list of preferred network configurations for Group Policy for Wireless", "SearchFlags": 0, "AdvancedView": true, @@ -12390,7 +12390,7 @@ "Name": "Operating-System-Service-Pack", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Operating-System-Service-Pack", "SearchFlags": 0, "AdvancedView": true, @@ -12405,7 +12405,7 @@ "Name": "Title", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Title", "SearchFlags": 0, "AdvancedView": true, @@ -12420,7 +12420,7 @@ "Name": "ms-DS-TDO-Egress-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink to TDO Egress rules link on object.", "SearchFlags": 0, "AdvancedView": true, @@ -12435,7 +12435,7 @@ "Name": "Control-Access-Rights", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Control-Access-Rights", "SearchFlags": 0, "AdvancedView": true, @@ -12450,7 +12450,7 @@ "Name": "meetingAdvertiseScope", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingAdvertiseScope", "SearchFlags": 0, "AdvancedView": true, @@ -12465,7 +12465,7 @@ "Name": "ms-ieee-80211-Data-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "internally used data type for msieee80211-Data blob", "SearchFlags": 0, "AdvancedView": true, @@ -12480,7 +12480,7 @@ "Name": "Operating-System-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Operating-System-Version", "SearchFlags": 0, "AdvancedView": true, @@ -12495,7 +12495,7 @@ "Name": "Tombstone-Lifetime", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Tombstone-Lifetime", "SearchFlags": 0, "AdvancedView": true, @@ -12510,7 +12510,7 @@ "Name": "ms-DS-TDO-Ingress-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink to TDO Ingress rules link on object.", "SearchFlags": 0, "AdvancedView": true, @@ -12525,7 +12525,7 @@ "Name": "Cost", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Cost", "SearchFlags": 0, "AdvancedView": true, @@ -12540,7 +12540,7 @@ "Name": "meetingApplication", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingApplication", "SearchFlags": 0, "AdvancedView": true, @@ -12555,7 +12555,7 @@ "Name": "ms-ieee-80211-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "an indentifier used for wireless policy object on AD", "SearchFlags": 0, "AdvancedView": true, @@ -12570,7 +12570,7 @@ "Name": "Operator-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Operator-Count", "SearchFlags": 0, "AdvancedView": true, @@ -12585,7 +12585,7 @@ "Name": "Transport-Address-Attribute", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Transport-Address-Attribute", "SearchFlags": 0, "AdvancedView": true, @@ -12600,7 +12600,7 @@ "Name": "ms-DS-Transformation-Rules-Compiled", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Blob containing compiled transformation rules.", "SearchFlags": 128, "AdvancedView": true, @@ -12615,7 +12615,7 @@ "Name": "Country-Code", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Country-Code", "SearchFlags": 16, "AdvancedView": true, @@ -12630,7 +12630,7 @@ "Name": "meetingBandwidth", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingBandwidth", "SearchFlags": 0, "AdvancedView": true, @@ -12645,7 +12645,7 @@ "Name": "ms-IIS-FTP-Dir", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Relative user directory on an FTP Root share.", "SearchFlags": 0, "AdvancedView": true, @@ -12660,7 +12660,7 @@ "Name": "Option-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Option-Description", "SearchFlags": 0, "AdvancedView": true, @@ -12675,7 +12675,7 @@ "Name": "Transport-DLL-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Transport-DLL-Name", "SearchFlags": 0, "AdvancedView": true, @@ -12690,7 +12690,7 @@ "Name": "ms-DS-Applies-To-Resource-Types", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "For a resource property, this attribute indicates what resource types this resource property applies to.", "SearchFlags": 0, "AdvancedView": true, @@ -12705,7 +12705,7 @@ "Name": "Country-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Country-Name", "SearchFlags": 16, "PartialAttributeSet": true, @@ -12721,7 +12721,7 @@ "Name": "meetingBlob", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingBlob", "SearchFlags": 0, "PartialAttributeSet": true, @@ -12737,7 +12737,7 @@ "Name": "ms-IIS-FTP-Root", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Virtual FTP Root where user home directory resides.", "SearchFlags": 0, "AdvancedView": true, @@ -12752,7 +12752,7 @@ "Name": "Options", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Options", "SearchFlags": 0, "AdvancedView": true, @@ -12767,7 +12767,7 @@ "Name": "Transport-Type", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Transport-Type", "SearchFlags": 0, "AdvancedView": true, @@ -12782,7 +12782,7 @@ "Name": "ms-DS-RID-Pool-Allocation-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute indicates whether RID pool allocation is enabled or not.", "SearchFlags": 0, "AdvancedView": true, @@ -12797,7 +12797,7 @@ "Name": "Create-Dialog", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Create-Dialog", "SearchFlags": 0, "AdvancedView": true, @@ -12812,7 +12812,7 @@ "Name": "meetingContactInfo", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingContactInfo", "SearchFlags": 0, "AdvancedView": true, @@ -12827,7 +12827,7 @@ "Name": "ms-Imaging-PSP-Identifier", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schema Attribute that contains the unique identifier for this PostScan Process.", "SearchFlags": 0, "AdvancedView": true, @@ -12842,7 +12842,7 @@ "Name": "Options-Location", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Options-Location", "SearchFlags": 0, "AdvancedView": true, @@ -12857,7 +12857,7 @@ "Name": "Treat-As-Leaf", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Treat-As-Leaf", "SearchFlags": 0, "AdvancedView": true, @@ -12872,7 +12872,7 @@ "Name": "ms-DS-cloudExtensionAttribute1", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -12890,7 +12890,7 @@ "Name": "Create-Time-Stamp", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Create-Time-Stamp", "SearchFlags": 0, "AdvancedView": true, @@ -12905,7 +12905,7 @@ "Name": "meetingDescription", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingDescription", "SearchFlags": 0, "PartialAttributeSet": true, @@ -12921,7 +12921,7 @@ "Name": "ms-Imaging-PSP-String", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Schema Attribute that contains the XML sequence for this PostScan Process.", "SearchFlags": 0, "AdvancedView": true, @@ -12936,7 +12936,7 @@ "Name": "Organization-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Organization-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -12958,7 +12958,7 @@ "Name": "Tree-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Tree-Name", "SearchFlags": 0, "AdvancedView": true, @@ -12973,7 +12973,7 @@ "Name": "ms-DS-cloudExtensionAttribute2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -12991,7 +12991,7 @@ "Name": "Create-Wizard-Ext", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Create-Wizard-Ext", "SearchFlags": 0, "AdvancedView": true, @@ -13006,7 +13006,7 @@ "Name": "meetingEndTime", "OMSyntax": 23, "AttributeSyntax": "2.5.5.11", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingEndTime", "SearchFlags": 0, "AdvancedView": true, @@ -13021,7 +13021,7 @@ "Name": "ms-net-ieee-80211-GP-PolicyGUID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains a GUID which identifies a specific 802.11 group policy object on the domain.", "SearchFlags": 0, "AdvancedView": true, @@ -13036,7 +13036,7 @@ "Name": "Organizational-Unit-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Organizational-Unit-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13057,7 +13057,7 @@ "Name": "Trust-Attributes", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Attributes", "SearchFlags": 0, "PartialAttributeSet": true, @@ -13073,7 +13073,7 @@ "Name": "ms-DS-cloudExtensionAttribute3", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13091,7 +13091,7 @@ "Name": "Creation-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Creation-Time", "SearchFlags": 0, "AdvancedView": true, @@ -13106,7 +13106,7 @@ "Name": "meetingID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingID", "SearchFlags": 0, "AdvancedView": true, @@ -13121,7 +13121,7 @@ "Name": "ms-net-ieee-80211-GP-PolicyData", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains all of the settings and data which comprise a group policy configuration for 802.11 wireless networks.", "SearchFlags": 0, "AdvancedView": true, @@ -13136,7 +13136,7 @@ "Name": "organizationalStatus", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The organizationalStatus attribute type specifies a category by which a person is often referred to in an organization.", "SearchFlags": 0, "AdvancedView": true, @@ -13151,7 +13151,7 @@ "Name": "Trust-Auth-Incoming", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Auth-Incoming", "SearchFlags": 0, "AdvancedView": true, @@ -13166,7 +13166,7 @@ "Name": "ms-DS-cloudExtensionAttribute4", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13184,7 +13184,7 @@ "Name": "Creation-Wizard", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Creation-Wizard", "SearchFlags": 0, "AdvancedView": true, @@ -13199,7 +13199,7 @@ "Name": "meetingIP", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingIP", "SearchFlags": 0, "AdvancedView": true, @@ -13214,7 +13214,7 @@ "Name": "ms-net-ieee-80211-GP-PolicyReserved", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Reserved for future use", "SearchFlags": 0, "AdvancedView": true, @@ -13229,7 +13229,7 @@ "Name": "Original-Display-Table", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Original-Display-Table", "SearchFlags": 0, "AdvancedView": true, @@ -13244,7 +13244,7 @@ "Name": "Trust-Auth-Outgoing", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Auth-Outgoing", "SearchFlags": 0, "AdvancedView": true, @@ -13259,7 +13259,7 @@ "Name": "ms-DS-cloudExtensionAttribute5", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13277,7 +13277,7 @@ "Name": "Creator", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Creator", "SearchFlags": 0, "AdvancedView": true, @@ -13292,7 +13292,7 @@ "Name": "meetingIsEncrypted", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingIsEncrypted", "SearchFlags": 0, "AdvancedView": true, @@ -13307,7 +13307,7 @@ "Name": "ms-net-ieee-8023-GP-PolicyGUID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains a GUID which identifies a specific 802.3 group policy object on the domain.", "SearchFlags": 0, "AdvancedView": true, @@ -13322,7 +13322,7 @@ "Name": "Original-Display-Table-MSDOS", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Original-Display-Table-MSDOS", "SearchFlags": 0, "AdvancedView": true, @@ -13337,7 +13337,7 @@ "Name": "Trust-Direction", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Direction", "SearchFlags": 0, "PartialAttributeSet": true, @@ -13353,7 +13353,7 @@ "Name": "ms-DS-cloudExtensionAttribute6", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13371,7 +13371,7 @@ "Name": "CRL-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "CRL-Object", "SearchFlags": 0, "AdvancedView": true, @@ -13386,7 +13386,7 @@ "Name": "meetingKeyword", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingKeyword", "SearchFlags": 0, "AdvancedView": true, @@ -13401,7 +13401,7 @@ "Name": "ms-net-ieee-8023-GP-PolicyData", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains all of the settings and data which comprise a group policy configuration for 802.3 wired networks.", "SearchFlags": 0, "AdvancedView": true, @@ -13416,7 +13416,7 @@ "Name": "Other-Login-Workstations", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Other-Login-Workstations", "SearchFlags": 16, "AdvancedView": true, @@ -13431,7 +13431,7 @@ "Name": "Trust-Parent", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Parent", "SearchFlags": 0, "AdvancedView": true, @@ -13446,7 +13446,7 @@ "Name": "ms-DS-cloudExtensionAttribute7", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13464,7 +13464,7 @@ "Name": "CRL-Partitioned-Revocation-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "CRL-Partitioned-Revocation-List", "SearchFlags": 0, "AdvancedView": true, @@ -13479,7 +13479,7 @@ "Name": "meetingLanguage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingLanguage", "SearchFlags": 0, "AdvancedView": true, @@ -13494,7 +13494,7 @@ "Name": "ms-net-ieee-8023-GP-PolicyReserved", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Reserved for future use", "SearchFlags": 0, "AdvancedView": true, @@ -13509,7 +13509,7 @@ "Name": "Other-Mailbox", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Other-Mailbox", "SearchFlags": 0, "AdvancedView": true, @@ -13524,7 +13524,7 @@ "Name": "Trust-Partner", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Partner", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13540,7 +13540,7 @@ "Name": "ms-DS-cloudExtensionAttribute8", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13558,7 +13558,7 @@ "Name": "Cross-Certificate-Pair", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Cross-Certificate-Pair", "SearchFlags": 0, "AdvancedView": true, @@ -13573,7 +13573,7 @@ "Name": "meetingLocation", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingLocation", "SearchFlags": 0, "AdvancedView": true, @@ -13588,7 +13588,7 @@ "Name": "ms-PKI-Cert-Template-OID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Cert-Template-OID", "SearchFlags": 1, "AdvancedView": true, @@ -13603,7 +13603,7 @@ "Name": "Other-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Other-Name", "SearchFlags": 0, "AdvancedView": true, @@ -13618,7 +13618,7 @@ "Name": "Trust-Posix-Offset", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Posix-Offset", "SearchFlags": 0, "AdvancedView": true, @@ -13633,7 +13633,7 @@ "Name": "ms-DS-cloudExtensionAttribute9", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13651,7 +13651,7 @@ "Name": "Curr-Machine-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Curr-Machine-Id", "SearchFlags": 0, "AdvancedView": true, @@ -13666,7 +13666,7 @@ "Name": "meetingMaxParticipants", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingMaxParticipants", "SearchFlags": 0, "AdvancedView": true, @@ -13681,7 +13681,7 @@ "Name": "ms-PKI-Certificate-Application-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-Certificate-Application-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -13696,7 +13696,7 @@ "Name": "Other-Well-Known-Objects", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Other-Well-Known-Objects", "SearchFlags": 0, "AdvancedView": true, @@ -13711,7 +13711,7 @@ "Name": "Trust-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Trust-Type", "SearchFlags": 0, "PartialAttributeSet": true, @@ -13727,7 +13727,7 @@ "Name": "ms-DS-cloudExtensionAttribute10", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13745,7 +13745,7 @@ "Name": "Current-Location", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Current-Location", "SearchFlags": 0, "AdvancedView": true, @@ -13760,7 +13760,7 @@ "Name": "meetingName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingName", "SearchFlags": 0, "PartialAttributeSet": true, @@ -13776,7 +13776,7 @@ "Name": "ms-PKI-Certificate-Name-Flag", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Certificate-Name-Flag", "SearchFlags": 0, "AdvancedView": true, @@ -13791,7 +13791,7 @@ "Name": "Owner", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Owner", "SearchFlags": 0, "AdvancedView": true, @@ -13811,7 +13811,7 @@ "Name": "UAS-Compat", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "UAS-Compat", "SearchFlags": 0, "AdvancedView": true, @@ -13826,7 +13826,7 @@ "Name": "ms-DS-cloudExtensionAttribute11", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13844,7 +13844,7 @@ "Name": "Current-Parent-CA", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Current-Parent-CA", "SearchFlags": 0, "AdvancedView": true, @@ -13859,7 +13859,7 @@ "Name": "meetingOriginator", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingOriginator", "SearchFlags": 0, "AdvancedView": true, @@ -13874,7 +13874,7 @@ "Name": "ms-PKI-Certificate-Policy", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-Certificate-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -13889,7 +13889,7 @@ "Name": "Package-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Package-Flags", "SearchFlags": 1, "AdvancedView": true, @@ -13904,7 +13904,7 @@ "Name": "uid", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A user ID.", "SearchFlags": 8, "AdvancedView": false, @@ -13927,7 +13927,7 @@ "Name": "ms-DS-cloudExtensionAttribute12", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -13945,7 +13945,7 @@ "Name": "Current-Value", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Current-Value", "SearchFlags": 0, "AdvancedView": true, @@ -13960,7 +13960,7 @@ "Name": "meetingOwner", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingOwner", "SearchFlags": 0, "AdvancedView": true, @@ -13975,7 +13975,7 @@ "Name": "ms-PKI-Credential-Roaming-Tokens", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Storage of encrypted user credential token blobs for roaming.", "SearchFlags": 128, "AdvancedView": true, @@ -13990,7 +13990,7 @@ "Name": "Package-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Package-Name", "SearchFlags": 0, "AdvancedView": true, @@ -14005,7 +14005,7 @@ "Name": "UNC-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "UNC-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14023,7 +14023,7 @@ "Name": "ms-DS-cloudExtensionAttribute13", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14041,7 +14041,7 @@ "Name": "DBCS-Pwd", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DBCS-Pwd", "SearchFlags": 0, "AdvancedView": true, @@ -14056,7 +14056,7 @@ "Name": "meetingProtocol", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingProtocol", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14072,7 +14072,7 @@ "Name": "ms-PKI-Enrollment-Flag", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Enrollment-Flag", "SearchFlags": 0, "AdvancedView": true, @@ -14087,7 +14087,7 @@ "Name": "Package-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Package-Type", "SearchFlags": 0, "AdvancedView": true, @@ -14102,7 +14102,7 @@ "Name": "Unicode-Pwd", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Unicode-Pwd", "SearchFlags": 0, "AdvancedView": true, @@ -14117,7 +14117,7 @@ "Name": "ms-DS-cloudExtensionAttribute14", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14135,7 +14135,7 @@ "Name": "Default-Class-Store", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Default-Class-Store", "SearchFlags": 0, "AdvancedView": true, @@ -14150,7 +14150,7 @@ "Name": "meetingRating", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingRating", "SearchFlags": 0, "AdvancedView": true, @@ -14165,7 +14165,7 @@ "Name": "ms-PKI-Enrollment-Servers", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Priority, authentication type, and URI of each certificate enrollment web service.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14181,7 +14181,7 @@ "Name": "Parent-CA", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Parent-CA", "SearchFlags": 0, "AdvancedView": true, @@ -14196,7 +14196,7 @@ "Name": "uniqueIdentifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The uniqueIdentifier attribute type specifies a \"unique identifier\" for an object represented in the Directory.", "SearchFlags": 0, "AdvancedView": true, @@ -14211,7 +14211,7 @@ "Name": "ms-DS-cloudExtensionAttribute15", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14229,7 +14229,7 @@ "Name": "Default-Group", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Group", "SearchFlags": 0, "AdvancedView": true, @@ -14244,7 +14244,7 @@ "Name": "meetingRecurrence", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingRecurrence", "SearchFlags": 0, "AdvancedView": true, @@ -14259,7 +14259,7 @@ "Name": "ms-PKI-Minimal-Key-Size", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Minimal-Key-Size", "SearchFlags": 0, "AdvancedView": true, @@ -14274,7 +14274,7 @@ "Name": "Parent-CA-Certificate-Chain", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Parent-CA-Certificate-Chain", "SearchFlags": 0, "AdvancedView": true, @@ -14289,7 +14289,7 @@ "Name": "uniqueMember", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The distinguished name for the member of a group. Used by groupOfUniqueNames.", "SearchFlags": 0, "AdvancedView": false, @@ -14306,7 +14306,7 @@ "Name": "ms-DS-cloudExtensionAttribute16", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14324,7 +14324,7 @@ "Name": "Default-Hiding-Value", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Hiding-Value", "SearchFlags": 0, "AdvancedView": true, @@ -14339,7 +14339,7 @@ "Name": "meetingScope", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingScope", "SearchFlags": 0, "AdvancedView": true, @@ -14354,7 +14354,7 @@ "Name": "ms-PKI-OID-Attribute", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-OID-Attribute", "SearchFlags": 0, "AdvancedView": true, @@ -14369,7 +14369,7 @@ "Name": "Parent-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Parent-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -14384,7 +14384,7 @@ "Name": "unstructuredAddress", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The IP address of the router. For example, 100.11.22.33. PKCS #9", "SearchFlags": 0, "AdvancedView": true, @@ -14399,7 +14399,7 @@ "Name": "ms-DS-cloudExtensionAttribute17", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14417,7 +14417,7 @@ "Name": "Default-Local-Policy-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Local-Policy-Object", "SearchFlags": 0, "AdvancedView": true, @@ -14432,7 +14432,7 @@ "Name": "meetingStartTime", "OMSyntax": 23, "AttributeSyntax": "2.5.5.11", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingStartTime", "SearchFlags": 0, "AdvancedView": true, @@ -14447,7 +14447,7 @@ "Name": "ms-PKI-OID-CPS", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-OID-CPS", "SearchFlags": 0, "AdvancedView": true, @@ -14462,7 +14462,7 @@ "Name": "Partial-Attribute-Deletion-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Partial-Attribute-Deletion-List", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14478,7 +14478,7 @@ "Name": "unstructuredName", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The DNS name of the router. For example, router1.microsoft.com. PKCS #9", "SearchFlags": 0, "AdvancedView": true, @@ -14493,7 +14493,7 @@ "Name": "ms-DS-cloudExtensionAttribute18", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14511,7 +14511,7 @@ "Name": "Default-Object-Category", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Object-Category", "SearchFlags": 0, "AdvancedView": true, @@ -14526,7 +14526,7 @@ "Name": "meetingType", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "meetingType", "SearchFlags": 0, "AdvancedView": true, @@ -14541,7 +14541,7 @@ "Name": "ms-PKI-OID-LocalizedName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-OID-LocalizedName", "SearchFlags": 0, "AdvancedView": true, @@ -14556,7 +14556,7 @@ "Name": "Partial-Attribute-Set", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Partial-Attribute-Set", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14572,7 +14572,7 @@ "Name": "Upgrade-Product-Code", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Upgrade-Product-Code", "SearchFlags": 0, "AdvancedView": true, @@ -14587,7 +14587,7 @@ "Name": "ms-DS-cloudExtensionAttribute19", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14605,7 +14605,7 @@ "Name": "Default-Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Priority", "SearchFlags": 0, "AdvancedView": true, @@ -14620,7 +14620,7 @@ "Name": "meetingURL", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "meetingURL", "SearchFlags": 0, "AdvancedView": true, @@ -14635,7 +14635,7 @@ "Name": "ms-PKI-OID-User-Notice", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-OID-User-Notice", "SearchFlags": 0, "AdvancedView": true, @@ -14650,7 +14650,7 @@ "Name": "Pek-Key-Change-Interval", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pek-Key-Change-Interval", "SearchFlags": 0, "AdvancedView": true, @@ -14665,7 +14665,7 @@ "Name": "UPN-Suffixes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "UPN-Suffixes", "SearchFlags": 0, "AdvancedView": true, @@ -14680,7 +14680,7 @@ "Name": "ms-DS-cloudExtensionAttribute20", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An attribute used to house an arbitrary cloud-relevant string", "SearchFlags": 1, "PartialAttributeSet": true, @@ -14698,7 +14698,7 @@ "Name": "Default-Security-Descriptor", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Default-Security-Descriptor", "SearchFlags": 0, "AdvancedView": true, @@ -14713,7 +14713,7 @@ "Name": "Member", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Member", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14729,7 +14729,7 @@ "Name": "ms-PKI-Private-Key-Flag", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Private-Key-Flag", "SearchFlags": 0, "AdvancedView": true, @@ -14744,7 +14744,7 @@ "Name": "Pek-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pek-List", "SearchFlags": 0, "AdvancedView": true, @@ -14759,7 +14759,7 @@ "Name": "User-Account-Control", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Account-Control", "SearchFlags": 25, "PartialAttributeSet": true, @@ -14775,7 +14775,7 @@ "Name": "ms-DS-Issuer-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The keys used to sign certificates issued by the Registration Service.", "SearchFlags": 128, "AdvancedView": true, @@ -14790,7 +14790,7 @@ "Name": "Delta-Revocation-List", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Delta-Revocation-List", "SearchFlags": 0, "AdvancedView": true, @@ -14805,7 +14805,7 @@ "Name": "MHS-OR-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MHS-OR-Address", "SearchFlags": 0, "AdvancedView": true, @@ -14820,7 +14820,7 @@ "Name": "ms-PKI-Site-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Active Directory site to which the CA machine belongs.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14836,7 +14836,7 @@ "Name": "Pending-CA-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Pending-CA-Certificates", "SearchFlags": 0, "AdvancedView": true, @@ -14851,7 +14851,7 @@ "Name": "User-Cert", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Cert", "SearchFlags": 0, "PartialAttributeSet": true, @@ -14867,7 +14867,7 @@ "Name": "ms-DS-Registration-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Policy used to limit the number of registrations allowed for a single user.", "SearchFlags": 0, "AdvancedView": true, @@ -14882,7 +14882,7 @@ "Name": "Department", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Department", "SearchFlags": 16, "AdvancedView": true, @@ -14897,7 +14897,7 @@ "Name": "Min-Pwd-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Min-Pwd-Age", "SearchFlags": 0, "AdvancedView": true, @@ -14912,7 +14912,7 @@ "Name": "ms-PKI-Supersede-Templates", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-Supersede-Templates", "SearchFlags": 0, "AdvancedView": true, @@ -14927,7 +14927,7 @@ "Name": "Pending-Parent-CA", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Pending-Parent-CA", "SearchFlags": 0, "AdvancedView": true, @@ -14942,7 +14942,7 @@ "Name": "User-Comment", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Comment", "SearchFlags": 0, "AdvancedView": true, @@ -14957,7 +14957,7 @@ "Name": "ms-DS-Maximum-Registration-Inactivity-Period", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The maximum ammount of days used to detect inactivty of registration objects.", "SearchFlags": 0, "AdvancedView": true, @@ -14972,7 +14972,7 @@ "Name": "departmentNumber", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Identifies a department within an organization.", "SearchFlags": 0, "AdvancedView": false, @@ -14990,7 +14990,7 @@ "Name": "Min-Pwd-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Min-Pwd-Length", "SearchFlags": 0, "AdvancedView": true, @@ -15005,7 +15005,7 @@ "Name": "ms-PKI-Template-Minor-Revision", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Template-Minor-Revision", "SearchFlags": 0, "AdvancedView": true, @@ -15020,7 +15020,7 @@ "Name": "Per-Msg-Dialog-Display-Table", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Per-Msg-Dialog-Display-Table", "SearchFlags": 0, "AdvancedView": true, @@ -15035,7 +15035,7 @@ "Name": "User-Parameters", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Parameters", "SearchFlags": 0, "AdvancedView": true, @@ -15050,7 +15050,7 @@ "Name": "ms-DS-Device-Location", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The DN under which the device objects will be created.", "SearchFlags": 0, "AdvancedView": true, @@ -15065,7 +15065,7 @@ "Name": "Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Description", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15101,7 +15101,7 @@ "Name": "Min-Ticket-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Min-Ticket-Age", "SearchFlags": 0, "AdvancedView": true, @@ -15116,7 +15116,7 @@ "Name": "ms-PKI-Template-Schema-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-PKI-Template-Schema-Version", "SearchFlags": 0, "AdvancedView": true, @@ -15131,7 +15131,7 @@ "Name": "Per-Recip-Dialog-Display-Table", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Per-Recip-Dialog-Display-Table", "SearchFlags": 0, "AdvancedView": true, @@ -15146,7 +15146,7 @@ "Name": "User-Password", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "User-Password", "SearchFlags": 0, "AdvancedView": true, @@ -15166,7 +15166,7 @@ "Name": "ms-DS-Registered-Owner", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Single valued binary attribute containing the primary SID referencing the first user to register the device. The value is not removed during de-registration, but could be managed by an administrator.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15182,7 +15182,7 @@ "Name": "Desktop-Profile", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Desktop-Profile", "SearchFlags": 0, "AdvancedView": true, @@ -15197,7 +15197,7 @@ "Name": "Modified-Count", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Modified-Count", "SearchFlags": 0, "AdvancedView": true, @@ -15212,7 +15212,7 @@ "Name": "ms-PKI-RA-Application-Policies", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-RA-Application-Policies", "SearchFlags": 0, "AdvancedView": true, @@ -15227,7 +15227,7 @@ "Name": "Personal-Title", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Personal-Title", "SearchFlags": 0, "AdvancedView": true, @@ -15242,7 +15242,7 @@ "Name": "userClass", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The userClass attribute type specifies a category of computer user.", "SearchFlags": 0, "AdvancedView": true, @@ -15257,7 +15257,7 @@ "Name": "ms-DS-Registered-Users", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Contains the list of users that have registered the device. Users in this list have all of the features provided by the �Company Portal� app. And they have SSO to company resources.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15273,7 +15273,7 @@ "Name": "Destination-Indicator", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Destination-Indicator", "SearchFlags": 0, "AdvancedView": true, @@ -15290,7 +15290,7 @@ "Name": "Modified-Count-At-Last-Prom", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Modified-Count-At-Last-Prom", "SearchFlags": 0, "AdvancedView": true, @@ -15305,7 +15305,7 @@ "Name": "ms-PKI-RA-Policies", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-PKI-RA-Policies", "SearchFlags": 0, "AdvancedView": true, @@ -15320,7 +15320,7 @@ "Name": "Phone-Fax-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Fax-Other", "SearchFlags": 0, "AdvancedView": true, @@ -15335,7 +15335,7 @@ "Name": "userPKCS12", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "PKCS #12 PFX PDU for exchange of personal identity information.", "SearchFlags": 0, "AdvancedView": false, @@ -15353,7 +15353,7 @@ "Name": "ms-DS-Approximate-Last-Logon-Time-Stamp", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The approximate time a user last logged on with from the device.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15369,7 +15369,7 @@ "Name": "dhcp-Classes", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Classes", "SearchFlags": 0, "AdvancedView": true, @@ -15384,7 +15384,7 @@ "Name": "Modify-Time-Stamp", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Modify-Time-Stamp", "SearchFlags": 0, "AdvancedView": true, @@ -15399,7 +15399,7 @@ "Name": "ms-PKI-RA-Signature", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS PKI Number Of RA Signature Required In Request", "SearchFlags": 0, "AdvancedView": true, @@ -15414,7 +15414,7 @@ "Name": "Phone-Home-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Home-Other", "SearchFlags": 0, "AdvancedView": true, @@ -15429,7 +15429,7 @@ "Name": "User-Principal-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Principal-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15445,7 +15445,7 @@ "Name": "ms-DS-Is-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to enable or disable the user-device relationship.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15461,7 +15461,7 @@ "Name": "dhcp-Flags", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -15476,7 +15476,7 @@ "Name": "Moniker", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Moniker", "SearchFlags": 0, "AdvancedView": true, @@ -15491,7 +15491,7 @@ "Name": "ms-PKI-RoamingTimeStamp", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Time stamp for last change to roaming tokens", "SearchFlags": 640, "PartialAttributeSet": false, @@ -15507,7 +15507,7 @@ "Name": "Phone-Home-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Phone-Home-Primary", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15525,7 +15525,7 @@ "Name": "User-Shared-Folder", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Shared-Folder", "SearchFlags": 0, "AdvancedView": true, @@ -15540,7 +15540,7 @@ "Name": "ms-DS-Device-OS-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to track the type of device based on the OS.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15556,7 +15556,7 @@ "Name": "dhcp-Identification", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Identification", "SearchFlags": 0, "AdvancedView": true, @@ -15571,7 +15571,7 @@ "Name": "Moniker-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Moniker-Display-Name", "SearchFlags": 0, "AdvancedView": true, @@ -15586,7 +15586,7 @@ "Name": "ms-PKI-DPAPIMasterKeys", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Storage of encrypted DPAPI Master Keys for user", "SearchFlags": 640, "PartialAttributeSet": false, @@ -15602,7 +15602,7 @@ "Name": "Phone-Ip-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Ip-Other", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15618,7 +15618,7 @@ "Name": "User-Shared-Folder-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "User-Shared-Folder-Other", "SearchFlags": 0, "AdvancedView": true, @@ -15633,7 +15633,7 @@ "Name": "ms-DS-Device-OS-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to track the OS version of the device.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15649,7 +15649,7 @@ "Name": "dhcp-Mask", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Mask", "SearchFlags": 0, "AdvancedView": true, @@ -15664,7 +15664,7 @@ "Name": "Move-Tree-State", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Move-Tree-State", "SearchFlags": 0, "AdvancedView": true, @@ -15679,7 +15679,7 @@ "Name": "ms-PKI-AccountCredentials", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Storage of encrypted user credential token blobs for roaming", "SearchFlags": 640, "PartialAttributeSet": false, @@ -15695,7 +15695,7 @@ "Name": "Phone-Ip-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Phone-Ip-Primary", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15711,7 +15711,7 @@ "Name": "User-SMIME-Certificate", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "User-SMIME-Certificate", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15731,7 +15731,7 @@ "Name": "ms-DS-Device-Physical-IDs", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is used to store identifiers of the physical device.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15747,7 +15747,7 @@ "Name": "dhcp-MaxKey", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-MaxKey", "SearchFlags": 0, "AdvancedView": true, @@ -15762,7 +15762,7 @@ "Name": "ms-COM-DefaultPartitionLink", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Link to a the default Partition for the PartitionSet. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -15777,7 +15777,7 @@ "Name": "ms-RRAS-Attribute", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-RRAS-Attribute", "SearchFlags": 0, "PartialAttributeSet": true, @@ -15793,7 +15793,7 @@ "Name": "Phone-ISDN-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Phone-ISDN-Primary", "SearchFlags": 0, "AdvancedView": true, @@ -15808,7 +15808,7 @@ "Name": "User-Workstations", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "User-Workstations", "SearchFlags": 16, "AdvancedView": true, @@ -15823,7 +15823,7 @@ "Name": "ms-DS-Device-ID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute stores the ID of the device.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15839,7 +15839,7 @@ "Name": "dhcp-Obj-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Obj-Description", "SearchFlags": 0, "AdvancedView": true, @@ -15854,7 +15854,7 @@ "Name": "ms-COM-ObjectId", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Object ID that COM+ uses. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -15869,7 +15869,7 @@ "Name": "ms-RRAS-Vendor-Attribute-Entry", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-RRAS-Vendor-Attribute-Entry", "SearchFlags": 0, "AdvancedView": true, @@ -15884,7 +15884,7 @@ "Name": "Phone-Mobile-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Mobile-Other", "SearchFlags": 0, "AdvancedView": true, @@ -15899,7 +15899,7 @@ "Name": "USN-Changed", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-Changed", "SearchFlags": 9, "PartialAttributeSet": true, @@ -15915,7 +15915,7 @@ "Name": "ms-DS-Device-Object-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to identify the schema version of the device.", "SearchFlags": 1, "PartialAttributeSet": true, @@ -15931,7 +15931,7 @@ "Name": "dhcp-Obj-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Obj-Name", "SearchFlags": 0, "AdvancedView": true, @@ -15946,7 +15946,7 @@ "Name": "ms-COM-PartitionLink", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Link from a PartitionSet to a Partition. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -15961,7 +15961,7 @@ "Name": "ms-RADIUS-FramedInterfaceId", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This Attribute indicates the IPv6 interface identifier to be configured for the user.", "SearchFlags": 16, "AdvancedView": true, @@ -15976,7 +15976,7 @@ "Name": "Phone-Mobile-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Phone-Mobile-Primary", "SearchFlags": 0, "AdvancedView": true, @@ -15993,7 +15993,7 @@ "Name": "USN-Created", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-Created", "SearchFlags": 9, "PartialAttributeSet": true, @@ -16009,7 +16009,7 @@ "Name": "ms-DS-Is-Member-Of-DL-Transitive", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msds-memberOfTransitive", "SearchFlags": 2048, "AdvancedView": true, @@ -16024,7 +16024,7 @@ "Name": "dhcp-Options", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Options", "SearchFlags": 0, "AdvancedView": true, @@ -16039,7 +16039,7 @@ "Name": "ms-COM-PartitionSetLink", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Link from a Partition to a PartitionSet. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -16054,7 +16054,7 @@ "Name": "ms-RADIUS-SavedFramedInterfaceId", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This Attribute indicates the IPv6 interface identifier to be configured for the user.", "SearchFlags": 16, "AdvancedView": true, @@ -16069,7 +16069,7 @@ "Name": "Phone-Office-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Office-Other", "SearchFlags": 0, "AdvancedView": true, @@ -16084,7 +16084,7 @@ "Name": "USN-DSA-Last-Obj-Removed", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-DSA-Last-Obj-Removed", "SearchFlags": 0, "AdvancedView": true, @@ -16099,7 +16099,7 @@ "Name": "ms-DS-Member-Transitive", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msds-memberTransitive", "SearchFlags": 2048, "AdvancedView": true, @@ -16114,7 +16114,7 @@ "Name": "dhcp-Properties", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Properties", "SearchFlags": 0, "AdvancedView": true, @@ -16129,7 +16129,7 @@ "Name": "ms-COM-UserLink", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Link from a PartitionSet to a User. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -16144,7 +16144,7 @@ "Name": "ms-RADIUS-FramedIpv6Prefix", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This Attribute indicates an IPv6 prefix (and corresponding route) to be configured for the user.", "SearchFlags": 16, "AdvancedView": true, @@ -16159,7 +16159,7 @@ "Name": "Phone-Pager-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Phone-Pager-Other", "SearchFlags": 0, "AdvancedView": true, @@ -16174,7 +16174,7 @@ "Name": "USN-Intersite", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-Intersite", "SearchFlags": 1, "AdvancedView": true, @@ -16189,7 +16189,7 @@ "Name": "ms-DS-Parent-Dist-Name", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Parent-Dist-Name", "SearchFlags": 0, "AdvancedView": true, @@ -16204,7 +16204,7 @@ "Name": "dhcp-Ranges", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Ranges", "SearchFlags": 0, "AdvancedView": true, @@ -16219,7 +16219,7 @@ "Name": "ms-COM-UserPartitionSetLink", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Link from a User to a PartitionSet. Default = adminDisplayName", "SearchFlags": 0, "AdvancedView": true, @@ -16234,7 +16234,7 @@ "Name": "ms-RADIUS-SavedFramedIpv6Prefix", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This Attribute indicates an IPv6 prefix (and corresponding route) to be configured for the user.", "SearchFlags": 16, "AdvancedView": true, @@ -16249,7 +16249,7 @@ "Name": "Phone-Pager-Primary", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Phone-Pager-Primary", "SearchFlags": 0, "AdvancedView": true, @@ -16266,7 +16266,7 @@ "Name": "USN-Last-Obj-Rem", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-Last-Obj-Rem", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16282,7 +16282,7 @@ "Name": "ms-DS-Preferred-Data-Location", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Preferred-Data-Location", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16298,7 +16298,7 @@ "Name": "Address-Book-Roots2", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Used by Exchange. Exchange configures trees of address book containers to show up in the MAPI address book. This attribute on the Exchange Config object lists the roots of the address book container trees.", "SearchFlags": 0, "AdvancedView": true, @@ -16313,7 +16313,7 @@ "Name": "dhcp-Reservations", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Reservations", "SearchFlags": 0, "AdvancedView": true, @@ -16328,7 +16328,7 @@ "Name": "MS-DRM-Identity-Certificate", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The XrML digital rights management certificates for this user.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16344,7 +16344,7 @@ "Name": "ms-RADIUS-FramedIpv6Route", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This Attribute provides routing information to be configured for the user on the NAS.", "SearchFlags": 16, "AdvancedView": true, @@ -16359,7 +16359,7 @@ "Name": "photo", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An object encoded in G3 fax as explained in recommendation T.4, with an ASN.1 wrapper to make it compatible with an X.400 BodyPart as defined in X.420.", "SearchFlags": 0, "AdvancedView": false, @@ -16377,7 +16377,7 @@ "Name": "USN-Source", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "USN-Source", "SearchFlags": 0, "AdvancedView": true, @@ -16392,7 +16392,7 @@ "Name": "ms-DS-Repl-Value-Meta-Data-Ext", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Repl-Value-Meta-Data-Ext", "SearchFlags": 0, "AdvancedView": true, @@ -16407,7 +16407,7 @@ "Name": "Global-Address-List2", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is used on a Microsoft Exchange container to store the distinguished name of a newly created global address list (GAL). This attribute must have an entry before you can enable Messaging Application Programming Interface (MAPI) clients to use a GAL.", "SearchFlags": 0, "AdvancedView": true, @@ -16422,7 +16422,7 @@ "Name": "dhcp-Servers", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Servers", "SearchFlags": 0, "AdvancedView": true, @@ -16437,7 +16437,7 @@ "Name": "ms-DS-Additional-Dns-Host-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Additional-Dns-Host-Name", "SearchFlags": 0, "AdvancedView": true, @@ -16452,7 +16452,7 @@ "Name": "ms-RADIUS-SavedFramedIpv6Route", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This Attribute provides routing information to be configured for the user on the NAS.", "SearchFlags": 16, "AdvancedView": true, @@ -16467,7 +16467,7 @@ "Name": "Physical-Delivery-Office-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Physical-Delivery-Office-Name", "SearchFlags": 5, "AdvancedView": true, @@ -16484,7 +16484,7 @@ "Name": "Valid-Accesses", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Valid-Accesses", "SearchFlags": 0, "AdvancedView": true, @@ -16499,7 +16499,7 @@ "Name": "ms-DS-Drs-Farm-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute stores the name of the federation service this DRS object is associated with.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16515,7 +16515,7 @@ "Name": "Template-Roots2", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is used on the Exchange config container to indicate where the template containers are stored. This information is used by the Active Directory MAPI provider.", "SearchFlags": 0, "AdvancedView": true, @@ -16530,7 +16530,7 @@ "Name": "dhcp-Sites", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Sites", "SearchFlags": 0, "AdvancedView": true, @@ -16545,7 +16545,7 @@ "Name": "ms-DS-Additional-Sam-Account-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Additional-Sam-Account-Name", "SearchFlags": 13, "AdvancedView": true, @@ -16560,7 +16560,7 @@ "Name": "MS-SQL-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Name", "SearchFlags": 1, "PartialAttributeSet": true, @@ -16576,7 +16576,7 @@ "Name": "Physical-Location-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Physical-Location-Object", "SearchFlags": 1, "AdvancedView": true, @@ -16591,7 +16591,7 @@ "Name": "Vendor", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Vendor", "SearchFlags": 0, "AdvancedView": true, @@ -16608,7 +16608,7 @@ "Name": "ms-DS-Issuer-Public-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The public keys of the keys used to sign certificates issued by the Registration Service.", "SearchFlags": 0, "AdvancedView": true, @@ -16623,7 +16623,7 @@ "Name": "dhcp-State", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-State", "SearchFlags": 0, "AdvancedView": true, @@ -16638,7 +16638,7 @@ "Name": "MS-DS-All-Users-Trust-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Used to enforce a combined users quota on the total number of Trusted-Domain objects created by using the control access right, \"Create inbound Forest trust\".", "SearchFlags": 0, "AdvancedView": true, @@ -16653,7 +16653,7 @@ "Name": "MS-SQL-RegisteredOwner", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-RegisteredOwner", "SearchFlags": 0, "AdvancedView": true, @@ -16668,7 +16668,7 @@ "Name": "Picture", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Picture", "SearchFlags": 0, "AdvancedView": true, @@ -16683,7 +16683,7 @@ "Name": "Version-Number", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version-Number", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16701,7 +16701,7 @@ "Name": "ms-DS-IsManaged", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to indicate the device is managed by a on-premises MDM.", "SearchFlags": 1, "AdvancedView": true, @@ -16716,7 +16716,7 @@ "Name": "dhcp-Subnets", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "dhcp-Subnets", "SearchFlags": 0, "AdvancedView": true, @@ -16731,7 +16731,7 @@ "Name": "ms-DS-Allowed-DNS-Suffixes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed suffixes for dNSHostName on computer", "SearchFlags": 0, "AdvancedView": true, @@ -16746,7 +16746,7 @@ "Name": "MS-SQL-Contact", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Contact", "SearchFlags": 0, "AdvancedView": true, @@ -16761,7 +16761,7 @@ "Name": "PKI-Critical-Extensions", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "PKI-Critical-Extensions", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16777,7 +16777,7 @@ "Name": "Version-Number-Hi", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version-Number-Hi", "SearchFlags": 0, "AdvancedView": true, @@ -16794,7 +16794,7 @@ "Name": "ms-DS-Cloud-IsManaged", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to indicate the device is managed by a cloud MDM.", "SearchFlags": 1, "AdvancedView": true, @@ -16809,7 +16809,7 @@ "Name": "dhcp-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Type", "SearchFlags": 1, "AdvancedView": true, @@ -16824,7 +16824,7 @@ "Name": "ms-DS-Allowed-To-Delegate-To", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Allowed-To-Delegate-To contains a list of SPNs that are used for Constrained Delegation", "SearchFlags": 0, "AdvancedView": true, @@ -16839,7 +16839,7 @@ "Name": "MS-SQL-Location", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Location", "SearchFlags": 0, "AdvancedView": true, @@ -16854,7 +16854,7 @@ "Name": "PKI-Default-CSPs", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "PKI-Default-CSPs", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16870,7 +16870,7 @@ "Name": "Version-Number-Lo", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Version-Number-Lo", "SearchFlags": 0, "AdvancedView": true, @@ -16887,7 +16887,7 @@ "Name": "ms-DS-Cloud-Anchor", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used by the DirSync engine to indicate the object SOA and to maintain the relationship between the on-premises and cloud object.", "SearchFlags": 0, "AdvancedView": true, @@ -16902,7 +16902,7 @@ "Name": "dhcp-Unique-Key", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Unique-Key", "SearchFlags": 0, "AdvancedView": true, @@ -16917,7 +16917,7 @@ "Name": "ms-DS-Auxiliary-Classes", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Auxiliary-Classes", "SearchFlags": 8, "AdvancedView": true, @@ -16932,7 +16932,7 @@ "Name": "MS-SQL-Memory", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Memory", "SearchFlags": 0, "AdvancedView": true, @@ -16947,7 +16947,7 @@ "Name": "PKI-Default-Key-Spec", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKI-Default-Key-Spec", "SearchFlags": 0, "PartialAttributeSet": true, @@ -16963,7 +16963,7 @@ "Name": "Vol-Table-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Vol-Table-GUID", "SearchFlags": 0, "AdvancedView": true, @@ -16978,7 +16978,7 @@ "Name": "ms-DS-Cloud-Issuer-Public-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The public keys used by the cloud DRS to sign certificates issued by the Registration Service.", "SearchFlags": 0, "AdvancedView": true, @@ -16993,7 +16993,7 @@ "Name": "dhcp-Update-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "dhcp-Update-Time", "SearchFlags": 0, "AdvancedView": true, @@ -17008,7 +17008,7 @@ "Name": "ms-DS-Approx-Immed-Subordinates", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Approx-Immed-Subordinates", "SearchFlags": 0, "AdvancedView": true, @@ -17023,7 +17023,7 @@ "Name": "MS-SQL-Build", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Build", "SearchFlags": 0, "AdvancedView": true, @@ -17038,7 +17038,7 @@ "Name": "PKI-Enrollment-Access", "OMSyntax": 66, "AttributeSyntax": "2.5.5.15", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "PKI-Enrollment-Access", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17054,7 +17054,7 @@ "Name": "Vol-Table-Idx-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Vol-Table-Idx-GUID", "SearchFlags": 1, "AdvancedView": true, @@ -17069,7 +17069,7 @@ "Name": "ms-DS-Cloud-IsEnabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to indicate whether cloud DRS is enabled.", "SearchFlags": 0, "AdvancedView": true, @@ -17084,7 +17084,7 @@ "Name": "Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Display-Name", "SearchFlags": 5, "PartialAttributeSet": true, @@ -17103,7 +17103,7 @@ "Name": "ms-DS-AuthenticatedAt-DC", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Forwardlink for ms-DS-AuthenticatedTo-Accountlist; for a User, identifies which DC a user has authenticated to", "SearchFlags": 0, "AdvancedView": true, @@ -17118,7 +17118,7 @@ "Name": "MS-SQL-ServiceAccount", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-ServiceAccount", "SearchFlags": 0, "AdvancedView": true, @@ -17133,7 +17133,7 @@ "Name": "PKI-Expiration-Period", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKI-Expiration-Period", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17149,7 +17149,7 @@ "Name": "Volume-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Volume-Count", "SearchFlags": 0, "AdvancedView": true, @@ -17164,7 +17164,7 @@ "Name": "ms-DS-SyncServerUrl", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Use this attribute to store the sync server (Url format) which hosts the user sync folder", "SearchFlags": 1, "AdvancedView": false, @@ -17179,7 +17179,7 @@ "Name": "Display-Name-Printable", "OMSyntax": 19, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Display-Name-Printable", "SearchFlags": 0, "AdvancedView": true, @@ -17194,7 +17194,7 @@ "Name": "ms-DS-AuthenticatedTo-Accountlist", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-AuthenticatedAt-DC; for a Computer, identifies which users have authenticated to this Computer", "SearchFlags": 0, "AdvancedView": true, @@ -17209,7 +17209,7 @@ "Name": "MS-SQL-CharacterSet", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-CharacterSet", "SearchFlags": 0, "AdvancedView": true, @@ -17224,7 +17224,7 @@ "Name": "PKI-Extended-Key-Usage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "PKI-Extended-Key-Usage", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17240,7 +17240,7 @@ "Name": "Wbem-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Wbem-Path", "SearchFlags": 0, "AdvancedView": true, @@ -17255,7 +17255,7 @@ "Name": "ms-DS-User-Allowed-To-Authenticate-To", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a user has permission to authenticate to a service.", "SearchFlags": 0, "AdvancedView": true, @@ -17270,7 +17270,7 @@ "Name": "DIT-Content-Rules", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DIT-Content-Rules", "SearchFlags": 0, "AdvancedView": true, @@ -17285,7 +17285,7 @@ "Name": "ms-DS-Az-Application-Data", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A string that is used by individual applications to store whatever information they may need to", "SearchFlags": 0, "AdvancedView": true, @@ -17300,7 +17300,7 @@ "Name": "MS-SQL-SortOrder", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-SortOrder", "SearchFlags": 0, "AdvancedView": true, @@ -17315,7 +17315,7 @@ "Name": "PKI-Key-Usage", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKI-Key-Usage", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17331,7 +17331,7 @@ "Name": "Well-Known-Objects", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Well-Known-Objects", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17347,7 +17347,7 @@ "Name": "ms-DS-User-Allowed-To-Authenticate-From", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a user has permission to authenticate from a computer.", "SearchFlags": 0, "AdvancedView": true, @@ -17362,7 +17362,7 @@ "Name": "Division", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Division", "SearchFlags": 16, "AdvancedView": true, @@ -17377,7 +17377,7 @@ "Name": "ms-DS-Az-Application-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A string that uniquely identifies an application object", "SearchFlags": 0, "AdvancedView": true, @@ -17392,7 +17392,7 @@ "Name": "MS-SQL-UnicodeSortOrder", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-UnicodeSortOrder", "SearchFlags": 0, "AdvancedView": true, @@ -17407,7 +17407,7 @@ "Name": "PKI-Max-Issuing-Depth", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKI-Max-Issuing-Depth", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17423,7 +17423,7 @@ "Name": "When-Changed", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "When-Changed", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17439,7 +17439,7 @@ "Name": "ms-DS-User-TGT-Lifetime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies the maximum age of a Kerberos TGT issued to a user in units of 10^(-7) seconds.", "SearchFlags": 0, "AdvancedView": true, @@ -17454,7 +17454,7 @@ "Name": "DMD-Location", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DMD-Location", "SearchFlags": 0, "AdvancedView": true, @@ -17469,7 +17469,7 @@ "Name": "ms-DS-Az-Application-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A version number to indicate that the AzApplication is updated", "SearchFlags": 0, "AdvancedView": true, @@ -17484,7 +17484,7 @@ "Name": "MS-SQL-Clustered", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Clustered", "SearchFlags": 0, "AdvancedView": true, @@ -17499,7 +17499,7 @@ "Name": "PKI-Overlap-Period", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKI-Overlap-Period", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17515,7 +17515,7 @@ "Name": "When-Created", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "When-Created", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17531,7 +17531,7 @@ "Name": "ms-DS-Computer-Allowed-To-Authenticate-To", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a computer has permission to authenticate to a service.", "SearchFlags": 0, "AdvancedView": true, @@ -17546,7 +17546,7 @@ "Name": "DMD-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DMD-Name", "SearchFlags": 0, "AdvancedView": true, @@ -17561,7 +17561,7 @@ "Name": "ms-DS-Az-Biz-Rule", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Text of the script implementing the business rule", "SearchFlags": 0, "AdvancedView": true, @@ -17576,7 +17576,7 @@ "Name": "MS-SQL-NamedPipe", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-NamedPipe", "SearchFlags": 0, "AdvancedView": true, @@ -17591,7 +17591,7 @@ "Name": "PKT", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKT", "SearchFlags": 0, "AdvancedView": true, @@ -17606,7 +17606,7 @@ "Name": "Winsock-Addresses", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Winsock-Addresses", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17622,7 +17622,7 @@ "Name": "ms-DS-Computer-TGT-Lifetime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies the maximum age of a Kerberos TGT issued to a computer in units of 10^(-7) seconds.", "SearchFlags": 0, "AdvancedView": true, @@ -17637,7 +17637,7 @@ "Name": "DN-Reference-Update", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DN-Reference-Update", "SearchFlags": 8, "AdvancedView": true, @@ -17652,7 +17652,7 @@ "Name": "ms-DS-Az-Biz-Rule-Language", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Language that the business rule script is in (Jscript, VBScript)", "SearchFlags": 0, "AdvancedView": true, @@ -17667,7 +17667,7 @@ "Name": "MS-SQL-MultiProtocol", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-MultiProtocol", "SearchFlags": 0, "AdvancedView": true, @@ -17682,7 +17682,7 @@ "Name": "PKT-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "PKT-Guid", "SearchFlags": 0, "AdvancedView": true, @@ -17697,7 +17697,7 @@ "Name": "WWW-Home-Page", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "WWW-Home-Page", "SearchFlags": 0, "AdvancedView": true, @@ -17712,7 +17712,7 @@ "Name": "ms-DS-Service-Allowed-To-Authenticate-To", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a service has permission to authenticate to a service.", "SearchFlags": 0, "AdvancedView": true, @@ -17727,7 +17727,7 @@ "Name": "Dns-Allow-Dynamic", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Dns-Allow-Dynamic", "SearchFlags": 0, "AdvancedView": true, @@ -17742,7 +17742,7 @@ "Name": "ms-DS-Az-Class-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A class ID required by the AzRoles UI on the AzApplication object", "SearchFlags": 0, "AdvancedView": true, @@ -17757,7 +17757,7 @@ "Name": "MS-SQL-SPX", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-SPX", "SearchFlags": 0, "AdvancedView": true, @@ -17772,7 +17772,7 @@ "Name": "Policy-Replication-Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Policy-Replication-Flags", "SearchFlags": 0, "AdvancedView": true, @@ -17787,7 +17787,7 @@ "Name": "WWW-Page-Other", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "WWW-Page-Other", "SearchFlags": 0, "AdvancedView": true, @@ -17802,7 +17802,7 @@ "Name": "ms-DS-Service-Allowed-To-Authenticate-From", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a service has permission to authenticate from a computer.", "SearchFlags": 0, "AdvancedView": true, @@ -17817,7 +17817,7 @@ "Name": "Dns-Allow-XFR", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Dns-Allow-XFR", "SearchFlags": 0, "AdvancedView": true, @@ -17832,7 +17832,7 @@ "Name": "ms-DS-Az-Domain-Timeout", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Time (in ms) after a domain is detected to be un-reachable, and before the DC is tried again", "SearchFlags": 0, "AdvancedView": true, @@ -17847,7 +17847,7 @@ "Name": "MS-SQL-TCPIP", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-TCPIP", "SearchFlags": 0, "AdvancedView": true, @@ -17862,7 +17862,7 @@ "Name": "Port-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Port-Name", "SearchFlags": 0, "AdvancedView": true, @@ -17877,7 +17877,7 @@ "Name": "X121-Address", "OMSyntax": 18, "AttributeSyntax": "2.5.5.6", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "X121-Address", "SearchFlags": 0, "AdvancedView": true, @@ -17894,7 +17894,7 @@ "Name": "ms-DS-Service-TGT-Lifetime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies the maximum age of a Kerberos TGT issued to a service in units of 10^(-7) seconds.", "SearchFlags": 0, "AdvancedView": true, @@ -17909,7 +17909,7 @@ "Name": "DNS-Host-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DNS-Host-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17925,7 +17925,7 @@ "Name": "ms-DS-Az-Generate-Audits", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A boolean field indicating if runtime audits need to be turned on (include audits for access checks, etc.)", "SearchFlags": 0, "AdvancedView": true, @@ -17940,7 +17940,7 @@ "Name": "MS-SQL-AppleTalk", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AppleTalk", "SearchFlags": 0, "AdvancedView": true, @@ -17955,7 +17955,7 @@ "Name": "Poss-Superiors", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Poss-Superiors", "SearchFlags": 0, "PartialAttributeSet": true, @@ -17971,7 +17971,7 @@ "Name": "x500uniqueIdentifier", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Used to distinguish between objects when a distinguished name has been reused. This is a different attribute type from both the \"uid\" and \"uniqueIdentifier\" types.", "SearchFlags": 0, "AdvancedView": false, @@ -17989,7 +17989,7 @@ "Name": "ms-DS-Assigned-AuthN-Policy-Silo", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies which AuthNPolicySilo a principal is assigned to.", "SearchFlags": 0, "AdvancedView": true, @@ -18004,7 +18004,7 @@ "Name": "Dns-Notify-Secondaries", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Dns-Notify-Secondaries", "SearchFlags": 0, "AdvancedView": true, @@ -18019,7 +18019,7 @@ "Name": "ms-DS-Az-Last-Imported-Biz-Rule-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last imported business rule path", "SearchFlags": 0, "AdvancedView": true, @@ -18034,7 +18034,7 @@ "Name": "MS-SQL-Vines", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Vines", "SearchFlags": 0, "AdvancedView": true, @@ -18049,7 +18049,7 @@ "Name": "Possible-Inferiors", "OMSyntax": 6, "AttributeSyntax": "2.5.5.2", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Possible-Inferiors", "SearchFlags": 0, "AdvancedView": true, @@ -18064,7 +18064,7 @@ "Name": "X509-Cert", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "X509-Cert", "SearchFlags": 0, "PartialAttributeSet": true, @@ -18082,7 +18082,7 @@ "Name": "ms-DS-Assigned-AuthN-Policy-Silo-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-AssignedAuthNPolicySilo.", "SearchFlags": 0, "AdvancedView": true, @@ -18097,7 +18097,7 @@ "Name": "DNS-Property", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DNS-Property", "SearchFlags": 0, "AdvancedView": true, @@ -18112,7 +18112,7 @@ "Name": "ms-DS-Az-LDAP-Query", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Az-LDAP-Query", "SearchFlags": 0, "AdvancedView": true, @@ -18127,7 +18127,7 @@ "Name": "MS-SQL-Status", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Status", "SearchFlags": 0, "AdvancedView": true, @@ -18142,7 +18142,7 @@ "Name": "Post-Office-Box", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Post-Office-Box", "SearchFlags": 16, "AdvancedView": true, @@ -18159,7 +18159,7 @@ "Name": "UnixUserPassword", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "userPassword compatible with Unix system.", "SearchFlags": 128, "AdvancedView": true, @@ -18177,7 +18177,7 @@ "Name": "ms-DS-AuthN-Policy-Silo-Members", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute specifies which principals are assigned to the AuthNPolicySilo.", "SearchFlags": 0, "AdvancedView": true, @@ -18192,7 +18192,7 @@ "Name": "Dns-Record", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Dns-Record", "SearchFlags": 0, "AdvancedView": true, @@ -18207,7 +18207,7 @@ "Name": "ms-DS-Az-Major-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Major version number for AzRoles", "SearchFlags": 0, "AdvancedView": true, @@ -18222,7 +18222,7 @@ "Name": "MS-SQL-LastUpdatedDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-LastUpdatedDate", "SearchFlags": 0, "AdvancedView": true, @@ -18237,7 +18237,7 @@ "Name": "Postal-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Postal-Address", "SearchFlags": 16, "AdvancedView": true, @@ -18254,7 +18254,7 @@ "Name": "UidNumber", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An integer uniquely identifying a user in an administrative domain (RFC 2307)", "SearchFlags": 1, "AdvancedView": true, @@ -18271,7 +18271,7 @@ "Name": "ms-DS-AuthN-Policy-Silo-Members-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-AuthNPolicySiloMembers.", "SearchFlags": 0, "AdvancedView": true, @@ -18286,7 +18286,7 @@ "Name": "Dns-Root", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Dns-Root", "SearchFlags": 1, "AdvancedView": true, @@ -18301,7 +18301,7 @@ "Name": "ms-DS-Az-Minor-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minor version number for AzRoles", "SearchFlags": 0, "AdvancedView": true, @@ -18316,7 +18316,7 @@ "Name": "MS-SQL-InformationURL", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-InformationURL", "SearchFlags": 0, "AdvancedView": true, @@ -18331,7 +18331,7 @@ "Name": "Postal-Code", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Postal-Code", "SearchFlags": 16, "AdvancedView": true, @@ -18348,7 +18348,7 @@ "Name": "GidNumber", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "An integer uniquely identifying a group in an administrative domain (RFC 2307)", "SearchFlags": 1, "AdvancedView": true, @@ -18366,7 +18366,7 @@ "Name": "ms-DS-User-AuthN-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies which AuthNPolicy should be applied to users assigned to this silo object.", "SearchFlags": 0, "AdvancedView": true, @@ -18381,7 +18381,7 @@ "Name": "Dns-Secure-Secondaries", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Dns-Secure-Secondaries", "SearchFlags": 0, "AdvancedView": true, @@ -18396,7 +18396,7 @@ "Name": "ms-DS-Az-Operation-ID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Application specific ID that makes the operation unique to the application", "SearchFlags": 0, "AdvancedView": true, @@ -18411,7 +18411,7 @@ "Name": "MS-SQL-ConnectionURL", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-ConnectionURL", "SearchFlags": 0, "AdvancedView": true, @@ -18426,7 +18426,7 @@ "Name": "Preferred-Delivery-Method", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Preferred-Delivery-Method", "SearchFlags": 0, "AdvancedView": true, @@ -18443,7 +18443,7 @@ "Name": "Gecos", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The GECOS field; the common name (RFC 2307)", "SearchFlags": 0, "AdvancedView": true, @@ -18460,7 +18460,7 @@ "Name": "ms-DS-User-AuthN-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-UserAuthNPolicy.", "SearchFlags": 0, "AdvancedView": true, @@ -18475,7 +18475,7 @@ "Name": "DNS-Tombstoned", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DNS-Tombstoned", "SearchFlags": 1, "AdvancedView": true, @@ -18490,7 +18490,7 @@ "Name": "ms-DS-Az-Scope-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A string that uniquely identifies a scope object", "SearchFlags": 0, "AdvancedView": true, @@ -18505,7 +18505,7 @@ "Name": "MS-SQL-PublicationURL", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-PublicationURL", "SearchFlags": 0, "AdvancedView": true, @@ -18520,7 +18520,7 @@ "Name": "preferredLanguage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The preferred written or spoken language for a person.", "SearchFlags": 0, "AdvancedView": false, @@ -18538,7 +18538,7 @@ "Name": "UnixHomeDirectory", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The absolute path to the home directory (RFC 2307)", "SearchFlags": 0, "AdvancedView": true, @@ -18555,7 +18555,7 @@ "Name": "ms-DS-Computer-AuthN-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies which AuthNPolicy should be applied to computers assigned to this silo object.", "SearchFlags": 0, "AdvancedView": true, @@ -18570,7 +18570,7 @@ "Name": "documentAuthor", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentAuthor attribute type specifies the distinguished name of the author of a document.", "SearchFlags": 0, "AdvancedView": true, @@ -18587,7 +18587,7 @@ "Name": "ms-DS-Az-Script-Engine-Cache-Max", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Maximum number of scripts that are cached by the application", "SearchFlags": 0, "AdvancedView": true, @@ -18602,7 +18602,7 @@ "Name": "MS-SQL-GPSLatitude", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-GPSLatitude", "SearchFlags": 0, "AdvancedView": true, @@ -18617,7 +18617,7 @@ "Name": "Preferred-OU", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Preferred-OU", "SearchFlags": 16, "AdvancedView": true, @@ -18632,7 +18632,7 @@ "Name": "LoginShell", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The path to the login shell (RFC 2307)", "SearchFlags": 0, "AdvancedView": true, @@ -18649,7 +18649,7 @@ "Name": "ms-DS-Computer-AuthN-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-ComputerAuthNPolicy.", "SearchFlags": 0, "AdvancedView": true, @@ -18664,7 +18664,7 @@ "Name": "documentIdentifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentIdentifier attribute type specifies a unique identifier for a document.", "SearchFlags": 0, "AdvancedView": true, @@ -18681,7 +18681,7 @@ "Name": "ms-DS-Az-Script-Timeout", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Maximum time (in ms) to wait for a script to finish auditing a specific policy", "SearchFlags": 0, "AdvancedView": true, @@ -18696,7 +18696,7 @@ "Name": "MS-SQL-GPSLongitude", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-GPSLongitude", "SearchFlags": 0, "AdvancedView": true, @@ -18711,7 +18711,7 @@ "Name": "Prefix-Map", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Prefix-Map", "SearchFlags": 0, "AdvancedView": true, @@ -18726,7 +18726,7 @@ "Name": "ShadowLastChange", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Last change of shadow information.", "SearchFlags": 0, "AdvancedView": true, @@ -18743,7 +18743,7 @@ "Name": "ms-DS-Service-AuthN-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies which AuthNPolicy should be applied to services assigned to this silo object.", "SearchFlags": 0, "AdvancedView": true, @@ -18758,7 +18758,7 @@ "Name": "documentLocation", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentLocation attribute type specifies the location of the document original.", "SearchFlags": 0, "AdvancedView": true, @@ -18775,7 +18775,7 @@ "Name": "ms-DS-Az-Task-Is-Role-Definition", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "A Boolean field which indicates whether AzTask is a classic task or a role definition", "SearchFlags": 0, "AdvancedView": true, @@ -18790,7 +18790,7 @@ "Name": "MS-SQL-GPSHeight", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-GPSHeight", "SearchFlags": 0, "AdvancedView": true, @@ -18805,7 +18805,7 @@ "Name": "Presentation-Address", "OMSyntax": 127, "AttributeSyntax": "2.5.5.13", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Presentation-Address", "SearchFlags": 0, "AdvancedView": true, @@ -18820,7 +18820,7 @@ "Name": "ShadowMin", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minimum number of days between shadow changes.", "SearchFlags": 0, "AdvancedView": true, @@ -18837,7 +18837,7 @@ "Name": "ms-DS-Service-AuthN-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-ServiceAuthNPolicy.", "SearchFlags": 0, "AdvancedView": true, @@ -18852,7 +18852,7 @@ "Name": "documentPublisher", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentPublisher attribute is the person and/or organization that published a document.", "SearchFlags": 0, "AdvancedView": true, @@ -18869,7 +18869,7 @@ "Name": "ms-DS-Az-Object-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The unique and portable identifier of AzMan objects", "SearchFlags": 1, "AdvancedView": true, @@ -18884,7 +18884,7 @@ "Name": "MS-SQL-Version", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Version", "SearchFlags": 1, "PartialAttributeSet": true, @@ -18900,7 +18900,7 @@ "Name": "Previous-CA-Certificates", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Previous-CA-Certificates", "SearchFlags": 0, "AdvancedView": true, @@ -18915,7 +18915,7 @@ "Name": "ShadowMax", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Maximum number of days password is valid.", "SearchFlags": 0, "AdvancedView": true, @@ -18932,7 +18932,7 @@ "Name": "ms-DS-Assigned-AuthN-Policy", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies which AuthNPolicy should be applied to this principal.", "SearchFlags": 0, "AdvancedView": true, @@ -18947,7 +18947,7 @@ "Name": "documentTitle", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentTitle attribute type specifies the title of a document.", "SearchFlags": 0, "AdvancedView": true, @@ -18964,7 +18964,7 @@ "Name": "ms-DS-Az-Generic-Data", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "AzMan specific generic data", "SearchFlags": 0, "AdvancedView": true, @@ -18979,7 +18979,7 @@ "Name": "MS-SQL-Language", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Language", "SearchFlags": 0, "AdvancedView": true, @@ -18994,7 +18994,7 @@ "Name": "Previous-Parent-CA", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Previous-Parent-CA", "SearchFlags": 0, "AdvancedView": true, @@ -19009,7 +19009,7 @@ "Name": "ShadowWarning", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Number of days before password expiry to warn user", "SearchFlags": 0, "AdvancedView": true, @@ -19026,7 +19026,7 @@ "Name": "ms-DS-Assigned-AuthN-Policy-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-AssignedAuthNPolicy.", "SearchFlags": 0, "AdvancedView": true, @@ -19041,7 +19041,7 @@ "Name": "documentVersion", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The documentVersion attribute type specifies the version number of a document.", "SearchFlags": 0, "AdvancedView": true, @@ -19058,7 +19058,7 @@ "Name": "ms-DS-Behavior-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Behavior-Version", "SearchFlags": 0, "AdvancedView": true, @@ -19073,7 +19073,7 @@ "Name": "MS-SQL-Description", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Description", "SearchFlags": 0, "AdvancedView": true, @@ -19088,7 +19088,7 @@ "Name": "Primary-Group-ID", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Primary-Group-ID", "SearchFlags": 17, "PartialAttributeSet": true, @@ -19104,7 +19104,7 @@ "Name": "ShadowInactive", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Number of days before password expiry to warn user", "SearchFlags": 0, "AdvancedView": true, @@ -19121,7 +19121,7 @@ "Name": "ms-DS-AuthN-Policy-Enforced", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies whether the authentication policy is enforced.", "SearchFlags": 0, "AdvancedView": true, @@ -19136,7 +19136,7 @@ "Name": "Domain-Certificate-Authorities", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Domain-Certificate-Authorities", "SearchFlags": 0, "AdvancedView": true, @@ -19151,7 +19151,7 @@ "Name": "ms-DS-Byte-Array", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute for storing binary data.", "SearchFlags": 0, "AdvancedView": false, @@ -19169,7 +19169,7 @@ "Name": "MS-SQL-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Type", "SearchFlags": 0, "AdvancedView": true, @@ -19184,7 +19184,7 @@ "Name": "Primary-Group-Token", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Primary-Group-Token", "SearchFlags": 0, "AdvancedView": true, @@ -19199,7 +19199,7 @@ "Name": "ShadowExpire", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Absolute date to expire account", "SearchFlags": 0, "AdvancedView": true, @@ -19216,7 +19216,7 @@ "Name": "ms-DS-AuthN-Policy-Silo-Enforced", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies whether the authentication policy silo is enforced.", "SearchFlags": 0, "AdvancedView": true, @@ -19231,7 +19231,7 @@ "Name": "Domain-Component", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Component", "SearchFlags": 0, "PartialAttributeSet": true, @@ -19247,7 +19247,7 @@ "Name": "ms-DS-Cached-Membership", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Cached-Membership", "SearchFlags": 0, "AdvancedView": true, @@ -19262,7 +19262,7 @@ "Name": "MS-SQL-InformationDirectory", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-InformationDirectory", "SearchFlags": 0, "AdvancedView": true, @@ -19277,7 +19277,7 @@ "Name": "Print-Attributes", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Attributes", "SearchFlags": 0, "AdvancedView": true, @@ -19294,7 +19294,7 @@ "Name": "ShadowFlag", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is a part of the shadow map used to store the flag value.", "SearchFlags": 0, "AdvancedView": true, @@ -19311,7 +19311,7 @@ "Name": "ms-DS-Device-MDMStatus", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to manage the mobile device management status of the device.", "SearchFlags": 0, "AdvancedView": true, @@ -19326,7 +19326,7 @@ "Name": "Domain-Cross-Ref", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Cross-Ref", "SearchFlags": 0, "AdvancedView": true, @@ -19341,7 +19341,7 @@ "Name": "ms-DS-Cached-Membership-Time-Stamp", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Cached-Membership-Time-Stamp", "SearchFlags": 1, "AdvancedView": true, @@ -19356,7 +19356,7 @@ "Name": "MS-SQL-Database", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Database", "SearchFlags": 1, "PartialAttributeSet": true, @@ -19372,7 +19372,7 @@ "Name": "Print-Bin-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Bin-Names", "SearchFlags": 0, "AdvancedView": true, @@ -19387,7 +19387,7 @@ "Name": "MemberUid", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This multivalued attribute holds the login names of the members of a group.", "SearchFlags": 0, "AdvancedView": true, @@ -19404,7 +19404,7 @@ "Name": "ms-DS-External-Directory-Object-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-External-Directory-Object-Id", "SearchFlags": 9, "PartialAttributeSet": true, @@ -19422,7 +19422,7 @@ "Name": "Domain-ID", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-ID", "SearchFlags": 0, "AdvancedView": true, @@ -19437,7 +19437,7 @@ "Name": "MS-DS-Consistency-Guid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-DS-Consistency-Guid", "SearchFlags": 0, "AdvancedView": true, @@ -19452,7 +19452,7 @@ "Name": "MS-SQL-AllowAnonymousSubscription", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AllowAnonymousSubscription", "SearchFlags": 0, "AdvancedView": true, @@ -19467,7 +19467,7 @@ "Name": "Print-Collate", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Collate", "SearchFlags": 0, "AdvancedView": true, @@ -19482,7 +19482,7 @@ "Name": "MemberNisNetgroup", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A multivalued attribute that holds the list of netgroups that are members of this netgroup.", "SearchFlags": 0, "AdvancedView": true, @@ -19499,7 +19499,7 @@ "Name": "ms-DS-Is-Compliant", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if the object is compliant with company policies.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -19515,7 +19515,7 @@ "Name": "Domain-Identifier", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Identifier", "SearchFlags": 0, "AdvancedView": true, @@ -19530,7 +19530,7 @@ "Name": "MS-DS-Consistency-Child-Count", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-DS-Consistency-Child-Count", "SearchFlags": 0, "AdvancedView": true, @@ -19545,7 +19545,7 @@ "Name": "MS-SQL-Alias", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Alias", "SearchFlags": 1, "PartialAttributeSet": true, @@ -19561,7 +19561,7 @@ "Name": "Print-Color", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Color", "SearchFlags": 0, "PartialAttributeSet": true, @@ -19577,7 +19577,7 @@ "Name": "NisNetgroupTriple", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute represents one entry from a netgroup map.", "SearchFlags": 0, "AdvancedView": true, @@ -19594,7 +19594,7 @@ "Name": "ms-DS-Key-Id", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains a key identifier.", "SearchFlags": 1, "PartialAttributeSet": false, @@ -19610,7 +19610,7 @@ "Name": "Domain-Policy-Object", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Policy-Object", "SearchFlags": 0, "AdvancedView": true, @@ -19625,7 +19625,7 @@ "Name": "MS-DS-Creator-SID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-DS-Creator-SID", "SearchFlags": 1, "AdvancedView": true, @@ -19640,7 +19640,7 @@ "Name": "MS-SQL-Size", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Size", "SearchFlags": 0, "AdvancedView": true, @@ -19655,7 +19655,7 @@ "Name": "Print-Duplex-Supported", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Duplex-Supported", "SearchFlags": 0, "PartialAttributeSet": true, @@ -19671,7 +19671,7 @@ "Name": "IpServicePort", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is a part of the services map and contains the port at which the UNIX service is available.", "SearchFlags": 0, "AdvancedView": true, @@ -19688,7 +19688,7 @@ "Name": "ms-DS-Key-Material", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains key material.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -19704,7 +19704,7 @@ "Name": "Domain-Policy-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Policy-Reference", "SearchFlags": 0, "AdvancedView": true, @@ -19719,7 +19719,7 @@ "Name": "ms-DS-Date-Time", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute for storing a data and time value.", "SearchFlags": 0, "AdvancedView": false, @@ -19737,7 +19737,7 @@ "Name": "MS-SQL-CreationDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-CreationDate", "SearchFlags": 0, "AdvancedView": true, @@ -19752,7 +19752,7 @@ "Name": "Print-End-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-End-Time", "SearchFlags": 0, "AdvancedView": true, @@ -19767,7 +19767,7 @@ "Name": "IpServiceProtocol", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This is a part of the services map and stores the protocol number for a UNIX service.", "SearchFlags": 0, "AdvancedView": true, @@ -19784,7 +19784,7 @@ "Name": "ms-DS-Key-Usage", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute identifies the usage scenario for the key.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -19800,7 +19800,7 @@ "Name": "Domain-Replica", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Domain-Replica", "SearchFlags": 0, "AdvancedView": true, @@ -19815,7 +19815,7 @@ "Name": "ms-DS-Default-Quota", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The default quota that will apply to a security principal creating an object in the NC if no quota specification exists that covers the security principal.", "SearchFlags": 0, "AdvancedView": true, @@ -19830,7 +19830,7 @@ "Name": "MS-SQL-LastBackupDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-LastBackupDate", "SearchFlags": 0, "AdvancedView": true, @@ -19845,7 +19845,7 @@ "Name": "Print-Form-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Form-Name", "SearchFlags": 0, "AdvancedView": true, @@ -19860,7 +19860,7 @@ "Name": "IpProtocolNumber", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is part of the protocols map and stores the unique number that identifies the protocol.", "SearchFlags": 0, "AdvancedView": true, @@ -19877,7 +19877,7 @@ "Name": "ms-DS-Key-Principal", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies the principal that a key object applies to.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -19893,7 +19893,7 @@ "Name": "Domain-Wide-Policy", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Domain-Wide-Policy", "SearchFlags": 0, "AdvancedView": true, @@ -19908,7 +19908,7 @@ "Name": "ms-DS-Deleted-Object-Lifetime", "OMSyntax": 10, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lifetime of a deleted object.", "SearchFlags": 0, "AdvancedView": true, @@ -19923,7 +19923,7 @@ "Name": "MS-SQL-LastDiagnosticDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-LastDiagnosticDate", "SearchFlags": 0, "AdvancedView": true, @@ -19938,7 +19938,7 @@ "Name": "Print-Keep-Printed-Jobs", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Keep-Printed-Jobs", "SearchFlags": 0, "AdvancedView": true, @@ -19953,7 +19953,7 @@ "Name": "OncRpcNumber", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This is a part of the rpc map and stores the RPC number for UNIX RPCs.", "SearchFlags": 0, "AdvancedView": true, @@ -19970,7 +19970,7 @@ "Name": "ms-DS-Key-Principal-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is the backlink for msDS-KeyPrincipal.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -19986,7 +19986,7 @@ "Name": "drink", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "The drink (Favourite Drink) attribute type specifies the favorite drink of an object (or person).", "SearchFlags": 0, "AdvancedView": true, @@ -20001,7 +20001,7 @@ "Name": "ms-DS-DnsRootAlias", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-DnsRootAlias", "SearchFlags": 0, "AdvancedView": true, @@ -20016,7 +20016,7 @@ "Name": "MS-SQL-Applications", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MS-SQL-Applications", "SearchFlags": 0, "AdvancedView": true, @@ -20031,7 +20031,7 @@ "Name": "Print-Language", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Language", "SearchFlags": 0, "AdvancedView": true, @@ -20046,7 +20046,7 @@ "Name": "IpHostNumber", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "IP address as a dotted decimal omitting leading zeros", "SearchFlags": 0, "AdvancedView": true, @@ -20063,7 +20063,7 @@ "Name": "ms-DS-Device-DN", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute identifies the registered device from which this key object was provisioned.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -20079,7 +20079,7 @@ "Name": "Driver-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Driver-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20095,7 +20095,7 @@ "Name": "ms-DS-Enabled-Feature", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Enabled optional features.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20111,7 +20111,7 @@ "Name": "MS-SQL-Keywords", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MS-SQL-Keywords", "SearchFlags": 0, "AdvancedView": true, @@ -20126,7 +20126,7 @@ "Name": "Print-MAC-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-MAC-Address", "SearchFlags": 0, "AdvancedView": true, @@ -20141,7 +20141,7 @@ "Name": "IpNetworkNumber", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "IP network as a dotted decimal, omitting leading zeros", "SearchFlags": 0, "AdvancedView": true, @@ -20158,7 +20158,7 @@ "Name": "ms-DS-Computer-SID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute identifies a domain-joined computer.", "SearchFlags": 1, "PartialAttributeSet": false, @@ -20174,7 +20174,7 @@ "Name": "Driver-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Driver-Version", "SearchFlags": 0, "AdvancedView": true, @@ -20189,7 +20189,7 @@ "Name": "ms-DS-Enabled-Feature-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Scopes where this optional feature is enabled.", "SearchFlags": 0, "AdvancedView": true, @@ -20204,7 +20204,7 @@ "Name": "MS-SQL-Publisher", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-Publisher", "SearchFlags": 0, "AdvancedView": true, @@ -20219,7 +20219,7 @@ "Name": "Print-Max-Copies", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Max-Copies", "SearchFlags": 0, "AdvancedView": true, @@ -20234,7 +20234,7 @@ "Name": "IpNetmaskNumber", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "IP netmask as a dotted decimal, omitting leading zeros", "SearchFlags": 0, "AdvancedView": true, @@ -20251,7 +20251,7 @@ "Name": "ms-DS-Custom-Key-Information", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute contains additional information about the key.", "SearchFlags": 0, "PartialAttributeSet": false, @@ -20267,7 +20267,7 @@ "Name": "DS-Core-Propagation-Data", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DS-Core-Propagation-Data", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20283,7 +20283,7 @@ "Name": "ms-DS-Entry-Time-To-Die", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Entry-Time-To-Die", "SearchFlags": 9, "PartialAttributeSet": true, @@ -20299,7 +20299,7 @@ "Name": "MS-SQL-AllowKnownPullSubscription", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AllowKnownPullSubscription", "SearchFlags": 0, "AdvancedView": true, @@ -20314,7 +20314,7 @@ "Name": "Print-Max-Resolution-Supported", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Max-Resolution-Supported", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20330,7 +20330,7 @@ "Name": "MacAddress", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "MAC address in maximal, colon seperated hex notation", "SearchFlags": 0, "AdvancedView": true, @@ -20347,7 +20347,7 @@ "Name": "ms-DS-Key-Approximate-Last-Logon-Time-Stamp", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The approximate time this key was last used in a logon operation.", "SearchFlags": 1, "PartialAttributeSet": false, @@ -20363,7 +20363,7 @@ "Name": "DS-Heuristics", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DS-Heuristics", "SearchFlags": 0, "AdvancedView": true, @@ -20378,7 +20378,7 @@ "Name": "ms-DS-ExecuteScriptPassword", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-ExecuteScriptPassword", "SearchFlags": 0, "AdvancedView": true, @@ -20393,7 +20393,7 @@ "Name": "MS-SQL-AllowImmediateUpdatingSubscription", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AllowImmediateUpdatingSubscription", "SearchFlags": 0, "AdvancedView": true, @@ -20408,7 +20408,7 @@ "Name": "Print-Max-X-Extent", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Max-X-Extent", "SearchFlags": 0, "AdvancedView": true, @@ -20423,7 +20423,7 @@ "Name": "BootParameter", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "rpc.bootparamd parameter", "SearchFlags": 0, "AdvancedView": true, @@ -20440,7 +20440,7 @@ "Name": "ms-DS-Device-Trust-Type", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Represents join type for devices.", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20456,7 +20456,7 @@ "Name": "DS-UI-Admin-Maximum", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DS-UI-Admin-Maximum", "SearchFlags": 0, "AdvancedView": true, @@ -20471,7 +20471,7 @@ "Name": "ms-DS-External-Key", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A string to identifiy an object in an external store such as a record in a database.", "SearchFlags": 0, "AdvancedView": false, @@ -20486,7 +20486,7 @@ "Name": "MS-SQL-AllowQueuedUpdatingSubscription", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AllowQueuedUpdatingSubscription", "SearchFlags": 0, "AdvancedView": true, @@ -20501,7 +20501,7 @@ "Name": "Print-Max-Y-Extent", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Max-Y-Extent", "SearchFlags": 0, "AdvancedView": true, @@ -20516,7 +20516,7 @@ "Name": "BootFile", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Boot image name", "SearchFlags": 0, "AdvancedView": true, @@ -20533,7 +20533,7 @@ "Name": "ms-DS-Shadow-Principal-Sid", "OMSyntax": 4, "AttributeSyntax": "2.5.5.17", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Contains the SID of a principal from an external forest.", "SearchFlags": 1, "AdvancedView": true, @@ -20548,7 +20548,7 @@ "Name": "DS-UI-Admin-Notification", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DS-UI-Admin-Notification", "SearchFlags": 0, "AdvancedView": true, @@ -20563,7 +20563,7 @@ "Name": "ms-DS-External-Store", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A string to identifiy the location of an external store such as a database.", "SearchFlags": 0, "AdvancedView": false, @@ -20578,7 +20578,7 @@ "Name": "MS-SQL-AllowSnapshotFilesFTPDownloading", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-AllowSnapshotFilesFTPDownloading", "SearchFlags": 0, "AdvancedView": true, @@ -20593,7 +20593,7 @@ "Name": "Print-Media-Ready", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Media-Ready", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20609,7 +20609,7 @@ "Name": "NisMapName", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The attribute contains the name of the map to which the object belongs.", "SearchFlags": 0, "AdvancedView": true, @@ -20638,7 +20638,7 @@ "Name": "ms-DS-Key-Credential-Link", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Contains key material and usage.", "SearchFlags": 0, "AdvancedView": true, @@ -20653,7 +20653,7 @@ "Name": "DS-UI-Shell-Maximum", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DS-UI-Shell-Maximum", "SearchFlags": 0, "AdvancedView": true, @@ -20668,7 +20668,7 @@ "Name": "ms-DS-Optional-Feature-GUID", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "GUID of an optional feature.", "SearchFlags": 0, "AdvancedView": true, @@ -20683,7 +20683,7 @@ "Name": "MS-SQL-ThirdParty", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "MS-SQL-ThirdParty", "SearchFlags": 0, "AdvancedView": true, @@ -20698,7 +20698,7 @@ "Name": "Print-Media-Supported", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Media-Supported", "SearchFlags": 0, "AdvancedView": true, @@ -20713,7 +20713,7 @@ "Name": "NisMapEntry", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This holds one map entry of a non standard map.", "SearchFlags": 0, "AdvancedView": true, @@ -20730,7 +20730,7 @@ "Name": "ms-DS-Key-Credential-Link-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": null, "SearchFlags": 0, "AdvancedView": true, @@ -20745,7 +20745,7 @@ "Name": "DSA-Signature", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "DSA-Signature", "SearchFlags": 0, "AdvancedView": true, @@ -20760,7 +20760,7 @@ "Name": "ms-DS-Filter-Containers", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-DS-Filter-Containers", "SearchFlags": 0, "AdvancedView": true, @@ -20775,7 +20775,7 @@ "Name": "ms-TAPI-Conference-Blob", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msTAPI-ConferenceBlob", "SearchFlags": 0, "AdvancedView": true, @@ -20790,7 +20790,7 @@ "Name": "Print-Memory", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Memory", "SearchFlags": 0, "PartialAttributeSet": true, @@ -20806,7 +20806,7 @@ "Name": "msSFU-30-Search-Container", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores the identifier of an object from where each search will begin", "SearchFlags": 0, "AdvancedView": true, @@ -20823,7 +20823,7 @@ "Name": "ms-DS-Expire-Passwords-On-Smart-Card-Only-Accounts", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute controls whether the passwords on smart-card-only accounts expire in accordance with the password policy.", "SearchFlags": 0, "AdvancedView": true, @@ -20838,7 +20838,7 @@ "Name": "Dynamic-LDAP-Server", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Dynamic-LDAP-Server", "SearchFlags": 0, "AdvancedView": true, @@ -20853,7 +20853,7 @@ "Name": "ms-DS-Has-Instantiated-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DS replication information detailing the state of the NCs present on a particular server.", "SearchFlags": 0, "AdvancedView": true, @@ -20868,7 +20868,7 @@ "Name": "ms-TAPI-Ip-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "msTAPI-IpAddress", "SearchFlags": 0, "AdvancedView": true, @@ -20883,7 +20883,7 @@ "Name": "Print-Min-X-Extent", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Min-X-Extent", "SearchFlags": 0, "AdvancedView": true, @@ -20898,7 +20898,7 @@ "Name": "msSFU-30-Key-Attributes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "stores the names of the attributes which the Server for NIS will use as keys to search a map", "SearchFlags": 0, "AdvancedView": true, @@ -20915,7 +20915,7 @@ "Name": "ms-DS-User-Allowed-NTLM-Network-Authentication", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a user is allowed to authenticate using NTLM authentication.", "SearchFlags": 0, "AdvancedView": true, @@ -20930,7 +20930,7 @@ "Name": "E-mail-Addresses", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "E-mail-Addresses", "SearchFlags": 1, "PartialAttributeSet": true, @@ -20948,7 +20948,7 @@ "Name": "ms-DS-Has-Domain-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "DS replication information detailing the domain NCs present on a particular server.", "SearchFlags": 0, "AdvancedView": true, @@ -20963,7 +20963,7 @@ "Name": "ms-TAPI-Protocol-Id", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msTAPI-ProtocolId", "SearchFlags": 0, "AdvancedView": true, @@ -20978,7 +20978,7 @@ "Name": "Print-Min-Y-Extent", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Min-Y-Extent", "SearchFlags": 0, "AdvancedView": true, @@ -20993,7 +20993,7 @@ "Name": "msSFU-30-Field-Separator", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores Field Separator for each NIS map", "SearchFlags": 0, "AdvancedView": true, @@ -21010,7 +21010,7 @@ "Name": "ms-DS-Service-Allowed-NTLM-Network-Authentication", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to determine if a service is allowed to authenticate using NTLM authentication.", "SearchFlags": 0, "AdvancedView": true, @@ -21025,7 +21025,7 @@ "Name": "EFSPolicy", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "EFSPolicy", "SearchFlags": 0, "AdvancedView": true, @@ -21040,7 +21040,7 @@ "Name": "ms-DS-Has-Master-NCs", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "A list of the naming contexts contained by a DC. Deprecates hasMasterNCs.", "SearchFlags": 0, "AdvancedView": true, @@ -21055,7 +21055,7 @@ "Name": "ms-TAPI-Unique-Identifier", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "msTAPI-uid", "SearchFlags": 0, "AdvancedView": true, @@ -21070,7 +21070,7 @@ "Name": "Print-Network-Address", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Network-Address", "SearchFlags": 0, "AdvancedView": true, @@ -21085,7 +21085,7 @@ "Name": "msSFU-30-Intra-Field-Separator", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute stores intra field separators for each NIS map", "SearchFlags": 0, "AdvancedView": true, @@ -21102,7 +21102,7 @@ "Name": "ms-DS-Strong-NTLM-Policy", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute specifies policy options for NTLM secrets with strong entropy.", "SearchFlags": 0, "AdvancedView": true, @@ -21117,7 +21117,7 @@ "Name": "Employee-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Employee-ID", "SearchFlags": 0, "AdvancedView": true, @@ -21132,7 +21132,7 @@ "Name": "ms-DS-Host-Service-Account", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Service Accounts configured to run on this computer.", "SearchFlags": 0, "AdvancedView": true, @@ -21147,7 +21147,7 @@ "Name": "ms-WMI-Author", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Author", "SearchFlags": 0, "AdvancedView": false, @@ -21162,7 +21162,7 @@ "Name": "Print-Notify", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Notify", "SearchFlags": 0, "AdvancedView": true, @@ -21177,7 +21177,7 @@ "Name": "msSFU-30-Search-Attributes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "stores the names of the attributes Server for NIS needs while searching a map", "SearchFlags": 0, "AdvancedView": true, @@ -21194,7 +21194,7 @@ "Name": "ms-DS-Source-Anchor", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Unique, immutable identifier for the object in the authoritative directory.", "SearchFlags": 10, "AdvancedView": true, @@ -21209,7 +21209,7 @@ "Name": "Employee-Number", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Employee-Number", "SearchFlags": 0, "AdvancedView": true, @@ -21227,7 +21227,7 @@ "Name": "ms-DS-Host-Service-Account-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Service Accounts Back Link for linking machines associated with the service account.", "SearchFlags": 0, "AdvancedView": true, @@ -21242,7 +21242,7 @@ "Name": "ms-WMI-ChangeDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-ChangeDate", "SearchFlags": 0, "AdvancedView": false, @@ -21257,7 +21257,7 @@ "Name": "Print-Number-Up", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Number-Up", "SearchFlags": 0, "AdvancedView": true, @@ -21272,7 +21272,7 @@ "Name": "msSFU-30-Result-Attributes", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Server for NIS uses this object as a scratch pad", "SearchFlags": 0, "AdvancedView": true, @@ -21289,7 +21289,7 @@ "Name": "ms-DS-Object-SOA", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to identify the source of authority of the object.", "SearchFlags": 0, "AdvancedView": true, @@ -21304,7 +21304,7 @@ "Name": "Employee-Type", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Employee-Type", "SearchFlags": 16, "AdvancedView": true, @@ -21322,7 +21322,7 @@ "Name": "ms-DS-Integer", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "An attribute for storing an integer.", "SearchFlags": 0, "AdvancedView": false, @@ -21340,7 +21340,7 @@ "Name": "ms-WMI-Class", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Class", "SearchFlags": 0, "AdvancedView": true, @@ -21355,7 +21355,7 @@ "Name": "Print-Orientations-Supported", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Orientations-Supported", "SearchFlags": 0, "AdvancedView": true, @@ -21370,7 +21370,7 @@ "Name": "msSFU-30-Map-Filter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores a string containing map keys, domain name and so on. The string is used to filter data in a map", "SearchFlags": 0, "AdvancedView": true, @@ -21387,7 +21387,7 @@ "Name": "Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Enabled", "SearchFlags": 0, "AdvancedView": true, @@ -21402,7 +21402,7 @@ "Name": "ms-DS-IntId", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-IntId", "SearchFlags": 8, "AdvancedView": true, @@ -21417,7 +21417,7 @@ "Name": "ms-WMI-ClassDefinition", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-ClassDefinition", "SearchFlags": 0, "AdvancedView": false, @@ -21432,7 +21432,7 @@ "Name": "Print-Owner", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Owner", "SearchFlags": 0, "AdvancedView": true, @@ -21447,7 +21447,7 @@ "Name": "msSFU-30-Master-Server-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The value in this container is returned when Server for NIS processes a yp_master API call", "SearchFlags": 1, "AdvancedView": true, @@ -21464,7 +21464,7 @@ "Name": "Enabled-Connection", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Enabled-Connection", "SearchFlags": 0, "AdvancedView": true, @@ -21479,7 +21479,7 @@ "Name": "ms-DS-Is-Possible-Values-Present", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute identifies if ms-DS-Claim-Possible-Values on linked resource property must have value or must not have value.", "SearchFlags": 0, "AdvancedView": true, @@ -21494,7 +21494,7 @@ "Name": "ms-WMI-CreationDate", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-CreationDate", "SearchFlags": 0, "AdvancedView": false, @@ -21509,7 +21509,7 @@ "Name": "Print-Pages-Per-Minute", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Pages-Per-Minute", "SearchFlags": 0, "PartialAttributeSet": true, @@ -21525,7 +21525,7 @@ "Name": "msSFU-30-Order-Number", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Every time the data stored in the msSFU-30-Domain-Info object is changed, the value of this attribute is incremented. Server for NIS uses this object to check if the map has changed. This number is used to track data changes between ypxfer calls", "SearchFlags": 1, "AdvancedView": true, @@ -21542,7 +21542,7 @@ "Name": "Enrollment-Providers", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Enrollment-Providers", "SearchFlags": 0, "AdvancedView": true, @@ -21557,7 +21557,7 @@ "Name": "ms-DS-isGC", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Directory instance (DSA), Identifies the state of the Global Catalog on the DSA", "SearchFlags": 0, "AdvancedView": true, @@ -21572,7 +21572,7 @@ "Name": "ms-WMI-Genus", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Genus", "SearchFlags": 0, "AdvancedView": true, @@ -21587,7 +21587,7 @@ "Name": "Print-Rate", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Rate", "SearchFlags": 0, "PartialAttributeSet": true, @@ -21603,7 +21603,7 @@ "Name": "msSFU-30-Name", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores the name of a map", "SearchFlags": 1, "AdvancedView": true, @@ -21632,7 +21632,7 @@ "Name": "Entry-TTL", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Entry-TTL", "SearchFlags": 0, "AdvancedView": true, @@ -21647,7 +21647,7 @@ "Name": "ms-DS-isRODC", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For a Directory instance (DSA), Identifies whether the DSA is a Read-Only DSA", "SearchFlags": 0, "AdvancedView": true, @@ -21662,7 +21662,7 @@ "Name": "ms-WMI-ID", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-ID", "SearchFlags": 0, "AdvancedView": false, @@ -21677,7 +21677,7 @@ "Name": "Print-Rate-Unit", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Rate-Unit", "SearchFlags": 0, "PartialAttributeSet": true, @@ -21693,7 +21693,7 @@ "Name": "msSFU-30-Aliases", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "part of the NIS mail map", "SearchFlags": 0, "AdvancedView": true, @@ -21716,7 +21716,7 @@ "Name": "Extended-Attribute-Info", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Extended-Attribute-Info", "SearchFlags": 0, "AdvancedView": true, @@ -21731,7 +21731,7 @@ "Name": "ms-DS-Last-Known-RDN", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Holds original RDN of a deleted object.", "SearchFlags": 0, "AdvancedView": true, @@ -21746,7 +21746,7 @@ "Name": "ms-WMI-intDefault", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intDefault", "SearchFlags": 0, "AdvancedView": false, @@ -21761,7 +21761,7 @@ "Name": "Print-Separator-File", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Separator-File", "SearchFlags": 0, "AdvancedView": true, @@ -21776,7 +21776,7 @@ "Name": "msSFU-30-Key-Values", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is internal to Server for NIS and is used as a scratch pad", "SearchFlags": 0, "AdvancedView": true, @@ -21794,7 +21794,7 @@ "Name": "Extended-Chars-Allowed", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Extended-Chars-Allowed", "SearchFlags": 0, "AdvancedView": true, @@ -21809,7 +21809,7 @@ "Name": "ms-DS-KeyVersionNumber", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "The Kerberos version number of the current key for this account. This is a constructed attribute.", "SearchFlags": 0, "AdvancedView": false, @@ -21824,7 +21824,7 @@ "Name": "ms-WMI-intFlags1", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intFlags1", "SearchFlags": 0, "AdvancedView": true, @@ -21839,7 +21839,7 @@ "Name": "Print-Share-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Print-Share-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -21855,7 +21855,7 @@ "Name": "msSFU-30-Nis-Domain", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute is used to store the NIS domain", "SearchFlags": 9, "AdvancedView": true, @@ -21884,7 +21884,7 @@ "Name": "Extended-Class-Info", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Extended-Class-Info", "SearchFlags": 0, "AdvancedView": true, @@ -21899,7 +21899,7 @@ "Name": "ms-DS-Logon-Time-Sync-Interval", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-DS-Logon-Time-Sync-Interval", "SearchFlags": 0, "AdvancedView": true, @@ -21914,7 +21914,7 @@ "Name": "ms-WMI-intFlags2", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intFlags2", "SearchFlags": 0, "AdvancedView": true, @@ -21929,7 +21929,7 @@ "Name": "Print-Spooling", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Spooling", "SearchFlags": 0, "AdvancedView": true, @@ -21944,7 +21944,7 @@ "Name": "msSFU-30-Domains", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "stores the list of UNIX NIS domains migrated to the same AD NIS domain", "SearchFlags": 1, "AdvancedView": true, @@ -21961,7 +21961,7 @@ "Name": "Extension-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Extension-Name", "SearchFlags": 0, "AdvancedView": true, @@ -21976,7 +21976,7 @@ "Name": "ms-DS-Mastered-By", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Back link for msDS-hasMasterNCs.", "SearchFlags": 0, "AdvancedView": true, @@ -21991,7 +21991,7 @@ "Name": "ms-WMI-intFlags3", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intFlags3", "SearchFlags": 0, "AdvancedView": true, @@ -22006,7 +22006,7 @@ "Name": "Print-Stapling-Supported", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Stapling-Supported", "SearchFlags": 0, "PartialAttributeSet": true, @@ -22022,7 +22022,7 @@ "Name": "msSFU-30-Yp-Servers", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Stores ypserves list, list of \"Servers for NIS\" in a NIS domain", "SearchFlags": 1, "AdvancedView": true, @@ -22039,7 +22039,7 @@ "Name": "Extra-Columns", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Extra-Columns", "SearchFlags": 0, "AdvancedView": true, @@ -22054,7 +22054,7 @@ "Name": "ms-DS-Maximum-Password-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Maximum Password Age for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22069,7 +22069,7 @@ "Name": "ms-WMI-intFlags4", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intFlags4", "SearchFlags": 0, "AdvancedView": true, @@ -22084,7 +22084,7 @@ "Name": "Print-Start-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Start-Time", "SearchFlags": 0, "AdvancedView": true, @@ -22099,7 +22099,7 @@ "Name": "msSFU-30-Max-Gid-Number", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores the maximum number of groups migrated to a NIS domain", "SearchFlags": 1, "AdvancedView": true, @@ -22116,7 +22116,7 @@ "Name": "Facsimile-Telephone-Number", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Facsimile-Telephone-Number", "SearchFlags": 0, "AdvancedView": true, @@ -22133,7 +22133,7 @@ "Name": "ms-DS-Minimum-Password-Age", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minimum Password Age for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22148,7 +22148,7 @@ "Name": "ms-WMI-intMax", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intMax", "SearchFlags": 0, "AdvancedView": false, @@ -22163,7 +22163,7 @@ "Name": "Print-Status", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Print-Status", "SearchFlags": 0, "AdvancedView": true, @@ -22178,7 +22178,7 @@ "Name": "msSFU-30-Max-Uid-Number", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "stores the maximum number of users migrated to a NIS domain", "SearchFlags": 1, "AdvancedView": true, @@ -22195,7 +22195,7 @@ "Name": "File-Ext-Priority", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "File-Ext-Priority", "SearchFlags": 1, "AdvancedView": true, @@ -22210,7 +22210,7 @@ "Name": "ms-DS-Minimum-Password-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Minimum Password Length for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22225,7 +22225,7 @@ "Name": "ms-WMI-intMin", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-intMin", "SearchFlags": 0, "AdvancedView": false, @@ -22240,7 +22240,7 @@ "Name": "Printer-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Printer-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -22258,7 +22258,7 @@ "Name": "msSFU-30-NSMAP-Field-Position", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "This attribute stores the \"field position\", to extract the key from a non-standard map", "SearchFlags": 0, "AdvancedView": true, @@ -22275,7 +22275,7 @@ "Name": "Flags", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Flags", "SearchFlags": 0, "PartialAttributeSet": true, @@ -22291,7 +22291,7 @@ "Name": "ms-DS-OIDToGroup-Link", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "For an OID, identifies the group object corresponding to the issuance policy represented by this OID.", "SearchFlags": 0, "AdvancedView": true, @@ -22306,7 +22306,7 @@ "Name": "ms-WMI-intValidValues", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-WMI-intValidValues", "SearchFlags": 0, "AdvancedView": false, @@ -22321,7 +22321,7 @@ "Name": "Prior-Set-Time", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Prior-Set-Time", "SearchFlags": 0, "AdvancedView": true, @@ -22336,7 +22336,7 @@ "Name": "msSFU-30-Posix-Member", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "This attribute is used to store the DN display name of users which are a part of the group", "SearchFlags": 0, "AdvancedView": true, @@ -22353,7 +22353,7 @@ "Name": "Flat-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Flat-Name", "SearchFlags": 1, "AdvancedView": true, @@ -22368,7 +22368,7 @@ "Name": "ms-DS-OIDToGroup-Link-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Backlink for ms-DS-OIDToGroup-Link; identifies the issuance policy, represented by an OID object, which is mapped to this group.", "SearchFlags": 0, "AdvancedView": true, @@ -22383,7 +22383,7 @@ "Name": "ms-WMI-int8Default", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-int8Default", "SearchFlags": 0, "AdvancedView": false, @@ -22398,7 +22398,7 @@ "Name": "Prior-Value", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Prior-Value", "SearchFlags": 0, "AdvancedView": true, @@ -22413,7 +22413,7 @@ "Name": "msSFU-30-Posix-Member-Of", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "stores the display names of groups to which this user belongs to", "SearchFlags": 0, "AdvancedView": true, @@ -22430,7 +22430,7 @@ "Name": "Force-Logoff", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Force-Logoff", "SearchFlags": 0, "AdvancedView": true, @@ -22445,7 +22445,7 @@ "Name": "ms-DS-Password-History-Length", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Password History Length for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22460,7 +22460,7 @@ "Name": "ms-WMI-int8Max", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-int8Max", "SearchFlags": 0, "AdvancedView": false, @@ -22475,7 +22475,7 @@ "Name": "Priority", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Priority", "SearchFlags": 0, "AdvancedView": true, @@ -22490,7 +22490,7 @@ "Name": "msSFU-30-Netgroup-Host-At-Domain", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Part of the netgroup map.This attribute represents computed strings such as host@domain", "SearchFlags": 1, "AdvancedView": true, @@ -22507,7 +22507,7 @@ "Name": "Foreign-Identifier", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Foreign-Identifier", "SearchFlags": 0, "AdvancedView": true, @@ -22522,7 +22522,7 @@ "Name": "ms-DS-Password-Complexity-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Password complexity status for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22537,7 +22537,7 @@ "Name": "ms-WMI-int8Min", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-int8Min", "SearchFlags": 0, "AdvancedView": false, @@ -22552,7 +22552,7 @@ "Name": "Private-Key", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Private-Key", "SearchFlags": 0, "AdvancedView": true, @@ -22567,7 +22567,7 @@ "Name": "msSFU-30-Netgroup-User-At-Domain", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Part of the netgroup map.This attribute represents computed strings such as user@domain", "SearchFlags": 1, "AdvancedView": true, @@ -22584,7 +22584,7 @@ "Name": "Friendly-Names", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Friendly-Names", "SearchFlags": 0, "AdvancedView": true, @@ -22599,7 +22599,7 @@ "Name": "ms-DS-Password-Reversible-Encryption-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Password reversible encryption status for user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22614,7 +22614,7 @@ "Name": "ms-WMI-int8ValidValues", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-WMI-int8ValidValues", "SearchFlags": 0, "AdvancedView": false, @@ -22629,7 +22629,7 @@ "Name": "Privilege-Attributes", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Privilege-Attributes", "SearchFlags": 0, "AdvancedView": true, @@ -22644,7 +22644,7 @@ "Name": "msSFU-30-Is-Valid-Container", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "internal to Server for NIS and stores whether the current search root is valid", "SearchFlags": 1, "AdvancedView": true, @@ -22661,7 +22661,7 @@ "Name": "From-Entry", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "From-Entry", "SearchFlags": 0, "AdvancedView": true, @@ -22676,7 +22676,7 @@ "Name": "ms-DS-Local-Effective-Deletion-Time", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Deletion time of the object in the local DIT.", "SearchFlags": 0, "AdvancedView": true, @@ -22691,7 +22691,7 @@ "Name": "ms-WMI-Mof", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Mof", "SearchFlags": 0, "AdvancedView": false, @@ -22706,7 +22706,7 @@ "Name": "Privilege-Display-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Privilege-Display-Name", "SearchFlags": 0, "AdvancedView": true, @@ -22721,7 +22721,7 @@ "Name": "msSFU-30-Crypt-Method", "OMSyntax": 22, "AttributeSyntax": "2.5.5.5", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "used to store the method used for encrypting the UNIX passwords, either MD5 or crypt.", "SearchFlags": 0, "AdvancedView": true, @@ -22738,7 +22738,7 @@ "Name": "From-Server", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "From-Server", "SearchFlags": 1, "AdvancedView": true, @@ -22755,7 +22755,7 @@ "Name": "ms-DS-Local-Effective-Recycle-Time", "OMSyntax": 24, "AttributeSyntax": "2.5.5.11", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Recycle time of the object in the local DIT.", "SearchFlags": 0, "AdvancedView": true, @@ -22770,7 +22770,7 @@ "Name": "ms-WMI-Name", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Name", "SearchFlags": 0, "AdvancedView": false, @@ -22785,7 +22785,7 @@ "Name": "Privilege-Holder", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Privilege-Holder", "SearchFlags": 0, "AdvancedView": true, @@ -22800,7 +22800,7 @@ "Name": "ms-TS-Profile-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Profile Path specifies a roaming or mandatory profile path to use when the user logs on to the Terminal Server. The profile path is in the following network path format: \\\\servername\\profiles folder name\\username", "SearchFlags": 0, "AdvancedView": true, @@ -22815,7 +22815,7 @@ "Name": "Frs-Computer-Reference", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Frs-Computer-Reference", "SearchFlags": 0, "PartialAttributeSet": true, @@ -22831,7 +22831,7 @@ "Name": "ms-DS-Lockout-Observation-Window", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Observation Window for lockout of user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22846,7 +22846,7 @@ "Name": "ms-WMI-NormalizedClass", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "ms-WMI-NormalizedClass", "SearchFlags": 0, "AdvancedView": false, @@ -22861,7 +22861,7 @@ "Name": "Privilege-Value", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Privilege-Value", "SearchFlags": 0, "AdvancedView": true, @@ -22876,7 +22876,7 @@ "Name": "ms-TS-Home-Directory", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Home Directory specifies the Home directory for the user. Each user on a Terminal Server has a unique home directory. This ensures that application information is stored separately for each user in a multi-user environment. To set a home directory on the local computer, specify a local path; for example, C:\\Path. To set a home directory in a network environment, you must first set the TerminalServicesHomeDrive property, and then set this property to a UNC path.", "SearchFlags": 0, "AdvancedView": true, @@ -22891,7 +22891,7 @@ "Name": "Frs-Computer-Reference-BL", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Frs-Computer-Reference-BL", "SearchFlags": 0, "AdvancedView": true, @@ -22906,7 +22906,7 @@ "Name": "ms-DS-Lockout-Duration", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lockout duration for locked out user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22921,7 +22921,7 @@ "Name": "ms-WMI-Parm1", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Parm1", "SearchFlags": 0, "AdvancedView": true, @@ -22936,7 +22936,7 @@ "Name": "Product-Code", "OMSyntax": 4, "AttributeSyntax": "2.5.5.10", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Product-Code", "SearchFlags": 0, "AdvancedView": true, @@ -22951,7 +22951,7 @@ "Name": "ms-TS-Home-Drive", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Home Drive specifies a Home drive for the user. In a network environment, this property is a string containing a drive specification (a drive letter followed by a colon) to which the UNC path specified in the TerminalServicesHomeDirectory property is mapped. To set a home directory in a network environment, you must first set this property and then set the TerminalServicesHomeDirectory property.", "SearchFlags": 0, "AdvancedView": true, @@ -22966,7 +22966,7 @@ "Name": "FRS-Control-Data-Creation", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Control-Data-Creation", "SearchFlags": 0, "AdvancedView": true, @@ -22981,7 +22981,7 @@ "Name": "ms-DS-Lockout-Threshold", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Lockout threshold for lockout of user accounts", "SearchFlags": 0, "AdvancedView": true, @@ -22996,7 +22996,7 @@ "Name": "ms-WMI-Parm2", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Parm2", "SearchFlags": 0, "AdvancedView": true, @@ -23011,7 +23011,7 @@ "Name": "Profile-Path", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Profile-Path", "SearchFlags": 16, "AdvancedView": true, @@ -23026,7 +23026,7 @@ "Name": "ms-TS-Allow-Logon", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Allow Logon specifies whether the user is allowed to log on to the Terminal Server. The value is 1 if logon is allowed, and 0 if logon is not allowed.", "SearchFlags": 0, "AdvancedView": true, @@ -23041,7 +23041,7 @@ "Name": "FRS-Control-Inbound-Backlog", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Control-Inbound-Backlog", "SearchFlags": 0, "AdvancedView": true, @@ -23056,7 +23056,7 @@ "Name": "ms-DS-PSO-Applies-To", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Links to objects that this password settings object applies to", "SearchFlags": 0, "AdvancedView": true, @@ -23071,7 +23071,7 @@ "Name": "ms-WMI-Parm3", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Parm3", "SearchFlags": 0, "AdvancedView": true, @@ -23086,7 +23086,7 @@ "Name": "Proxied-Object-Name", "OMSyntax": 127, "AttributeSyntax": "2.5.5.7", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Proxied-Object-Name", "SearchFlags": 0, "PartialAttributeSet": true, @@ -23102,7 +23102,7 @@ "Name": "ms-TS-Remote-Control", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Remote Control specifies the whether to allow remote observation or remote control of the user's Terminal Services session. For a description of these values, see the RemoteControl method of the Win32_TSRemoteControlSetting WMI class. 0 - Disable, 1 - EnableInputNotify, 2 - EnableInputNoNotify, 3 - EnableNoInputNotify and 4 - EnableNoInputNoNotify", "SearchFlags": 0, "AdvancedView": true, @@ -23117,7 +23117,7 @@ "Name": "FRS-Control-Outbound-Backlog", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Control-Outbound-Backlog", "SearchFlags": 0, "AdvancedView": true, @@ -23132,7 +23132,7 @@ "Name": "ms-DS-PSO-Applied", "OMSyntax": 127, "AttributeSyntax": "2.5.5.1", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Password settings object applied to this object", "SearchFlags": 0, "AdvancedView": true, @@ -23147,7 +23147,7 @@ "Name": "ms-WMI-Parm4", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Parm4", "SearchFlags": 0, "AdvancedView": true, @@ -23162,7 +23162,7 @@ "Name": "Proxy-Addresses", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": false, + "SingleValued": false, "AdminDescription": "Proxy-Addresses", "SearchFlags": 5, "AdvancedView": true, @@ -23177,7 +23177,7 @@ "Name": "ms-TS-Max-Disconnection-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Maximum Disconnection Time is maximum amount of time, in minutes, that a disconnected Terminal Services session remains active on the Terminal Server. After the specified number of minutes have elapsed, the session is terminated.", "SearchFlags": 0, "AdvancedView": true, @@ -23192,7 +23192,7 @@ "Name": "FRS-Directory-Filter", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-Directory-Filter", "SearchFlags": 0, "AdvancedView": true, @@ -23207,7 +23207,7 @@ "Name": "ms-DS-Required-Domain-Behavior-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Required domain function level for this feature.", "SearchFlags": 0, "AdvancedView": true, @@ -23222,7 +23222,7 @@ "Name": "ms-WMI-PropertyName", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-PropertyName", "SearchFlags": 0, "AdvancedView": false, @@ -23237,7 +23237,7 @@ "Name": "Proxy-Generation-Enabled", "OMSyntax": 1, "AttributeSyntax": "2.5.5.8", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Proxy-Generation-Enabled", "SearchFlags": 0, "AdvancedView": true, @@ -23252,7 +23252,7 @@ "Name": "ms-TS-Max-Connection-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session maximum Connection Time is Maximum duration, in minutes, of the Terminal Services session. After the specified number of minutes have elapsed, the session can be disconnected or terminated.", "SearchFlags": 0, "AdvancedView": true, @@ -23267,7 +23267,7 @@ "Name": "FRS-DS-Poll", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "FRS-DS-Poll", "SearchFlags": 0, "AdvancedView": true, @@ -23282,7 +23282,7 @@ "Name": "ms-DS-Required-Forest-Behavior-Version", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Required forest function level for this feature.", "SearchFlags": 0, "AdvancedView": true, @@ -23297,7 +23297,7 @@ "Name": "ms-WMI-Query", "OMSyntax": 64, "AttributeSyntax": "2.5.5.12", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "ms-WMI-Query", "SearchFlags": 0, "AdvancedView": false, @@ -23312,7 +23312,7 @@ "Name": "Proxy-Lifetime", "OMSyntax": 65, "AttributeSyntax": "2.5.5.16", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Proxy-Lifetime", "SearchFlags": 0, "AdvancedView": true, @@ -23327,7 +23327,7 @@ "Name": "ms-TS-Max-Idle-Time", "OMSyntax": 2, "AttributeSyntax": "2.5.5.9", - "SignleValued": true, + "SingleValued": true, "AdminDescription": "Terminal Services Session Maximum Idle Time is maximum amount of time, in minutes, that the Terminal Services session can remain idle. After the specified number of minutes have elapsed, the session can be disconnected or terminated.", "SearchFlags": 0, "AdvancedView": true, diff --git a/library/ADMF/ADMF/UpdateForestOptions.cs b/library/ADMF/ADMF/UpdateForestOptions.cs index cca12cc..387c073 100644 --- a/library/ADMF/ADMF/UpdateForestOptions.cs +++ b/library/ADMF/ADMF/UpdateForestOptions.cs @@ -16,6 +16,7 @@ public enum UpdateForestOptions ExchangeSchema = 256, SchemaDefaultPermissions = 512, Certificates = 1024, + SchemaManage = 2048, Default = Sites | Subnets | SiteLinks | NTAuthStore | Certificates, All = Default | ServerRelocate | ForestLevel | AllSchema,