You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: exchange/docs-conceptual/exchange-server/recipient-filters/filter-properties.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -126,7 +126,7 @@ The properties that have been _confirmed_ to work with the _Filter_ parameter in
126
126
|_DistinguishedName_|_distinguishedName_|**Get-CASMailbox** <br/> **Get-Contact** <br/> **Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Group** <br/> **Get-LinkedUser** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-Recipient** <br/> **Get-RemoteMailbox** <br/> **Get-SecurityPrincipal** <br/> **Get-UMMMailbox** <br/> **Get-User**|String|This filter requires the distinguished name of the recipient. For example, `Get-Mailbox -Filter {DistinguishedName -eq 'CN=Basho Kato,CN=Users,DC=contoso,DC=com'}`. <br/> You can find the distinguished names of recipients by running this command: `Get-Recipient | Format-List Name,RecipientType,DistinguishedName`.|
127
127
|_EcpEnabled_|n/a|**Get-CASMailbox**|Boolean (`$true` or `$false`)|For example, `Get-CASMailbox -Filter {EcpEnabled -eq $false}`.|
128
128
|_EmailAddresses_|_proxyAddresses_|**Get-CASMailbox** <br/> **Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-Recipient** <br/> **Get-RemoteMailbox** <br/> **Get-UMMailbox** <br/> **Get-UnifiedGroup**|String (wildcards accepted)|For example, `Get-Recipient -Filter {EmailAddresses -like '*marketing*'}`. <br/> When you use a complete email address, you don't need to account for the `smtp:` prefix. If you use wildcards, you do. For example, if `{EmailAddresses -eq '[email protected]'}` returns a match, `{EmailAddresses -like 'lila*'}` won't return a match, but `{EmailAddresses -like '*lila*'}` or `{EmailAddresses -like 'smtp:lila*'}` will return a match. <br/> Although this is a multivalued property, the filter will return a match if the property _contains_ the specified value.|
|_EntryId_|_msExchPublicFolderEntryId_|**Get-MailPublicFolder**|String (wildcards accepted)|For example, `Get-MailPublicFolder -Filter {EntryId -like '*60000'}`. <br/> You can find the entry IDs of mail-enabled public folders by running this command: `Get-MailPublicFolder | Format-List Name,EntryId`.|
131
131
|_EwsApplicationAccessPolicy_|_msExchEwsApplicationAccessPolicy_|**Get-CASMailbox**|`EnforceAllowList`, `EnforceBlockList`. or `$null`|For example, `Get-CASMailbox -Filter {EwsApplicationAccessPolicy -ne $null}`.|
132
132
|_EwsEnabled_|_msExchEwsEnabled_|**Get-CASMailbox**|0 (disabled), 1 (enabled) or `$null`.|For example, `Get-CASMailbox -Filter {EwsEnabled -eq 1}`.|
@@ -197,9 +197,9 @@ The properties that have been _confirmed_ to work with the _Filter_ parameter in
197
197
|_MAPIEnabled_|n/a|**Get-CASMailbox**|Boolean (`$true` or `$false`)|For example, `Get-CASMailbox -Filter {MAPIEnabled -eq $false}`.|
198
198
|_MasterAccountSid_|_msExchMasterAccountSid_|**Get-Mailbox** <br/> **Get-LinkedUser** <br/> **Get-Recipient** <br/> **Get-SecurityPrincipal** <br/> **Get-User**|String or `$null`|For example, `Get-Mailbox -Filter {MasterAccountSid -ne $null}`. <br/> This value is blank ( `$null`) for mailboxes with associated user accounts, and `S-1-5-10` (Self) for mailboxes without associated user accounts (for example, shared mailboxes, resource mailboxes, discovery search mailboxes, arbitration mailboxes, and public folder mailboxes).|
199
199
|_MaxBlockedSenders_|_msExchMaxBlockedSenders_|**Get-Mailbox**|Integer or `$null`|For example, `Get-Mailbox -Filter {MaxBlockedSenders -gt 0}`.|
200
-
|_MaxReceiveSize_|_delivContLength_|**Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-RemoteMailbox**|A byte quantified size value (for example, `75MB`), or `Unlimited`. Unqualified values are treated as bytes.|You can only use the _Filter_ parameter to look for the value `Unlimited` for this property. For example, `Get-Mailbox -Filter {MaxReceiveSize -eq 'Unlimited'}` or `Get-Mailbox -Filter {MaxReceiveSize -ne 'Unlimited'}`. <br/> You can't use the _Filter_ parameter to look for size values of this property. Instead, use this syntax: `Get-Mailbox | where {$_.MaxReceiveSize -<Operator> '<Size>'}`. For example, `Get-Mailbox | where {$_.MaxReceiveSize -gt '50GB'}`.|
200
+
|_MaxReceiveSize_|_delivContLength_|**Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-RemoteMailbox** <br/> **Get-UnifiedGroup**|A byte quantified size value (for example, `75MB`), or `Unlimited`. Unqualified values are treated as bytes.|You can only use the _Filter_ parameter to look for the value `Unlimited` for this property. For example, `Get-Mailbox -Filter {MaxReceiveSize -eq 'Unlimited'}` or `Get-Mailbox -Filter {MaxReceiveSize -ne 'Unlimited'}`. <br/> You can't use the _Filter_ parameter to look for size values of this property. Instead, use this syntax: `Get-Mailbox | where {$_.MaxReceiveSize -<Operator> '<Size>'}`. For example, `Get-Mailbox | where {$_.MaxReceiveSize -gt '50GB'}`.|
201
201
|_MaxSafeSenders_|_msExchMaxSafeSenders_|**Get-Mailbox**|Integer or `$null`|For example, `Get-Mailbox -Filter {MaxSafeSenders -gt 0}`.|
202
-
|_MaxSendSize_|_submissionContLength_|**Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-RemoteMailbox**|A byte quantified size value (for example, `75MB`), or `Unlimited`. Unqualified values are treated as bytes.|You can only use the _Filter_ parameter to look for the value `Unlimited` for this property. For example, `Get-Mailbox -Filter {MaxSendSize -eq 'Unlimited'}` or `Get-Mailbox -Filter {MaxSendSize -ne 'Unlimited'}`. <br/> You can't use the _Filter_ parameter to look for size values of this property. Instead, use this syntax: `Get-Mailbox | where {$_.MaxReceiveSize -<Operator> '<Size>'}`. For example, `Get-Mailbox | where {$_.MaxSendSize -gt '50GB'}`.|
202
+
|_MaxSendSize_|_submissionContLength_|**Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-RemoteMailbox** <br/> **Get-UnifiedGroup**|A byte quantified size value (for example, `75MB`), or `Unlimited`. Unqualified values are treated as bytes.|You can only use the _Filter_ parameter to look for the value `Unlimited` for this property. For example, `Get-Mailbox -Filter {MaxSendSize -eq 'Unlimited'}` or `Get-Mailbox -Filter {MaxSendSize -ne 'Unlimited'}`. <br/> You can't use the _Filter_ parameter to look for size values of this property. Instead, use this syntax: `Get-Mailbox | where {$_.MaxReceiveSize -<Operator> '<Size>'}`. For example, `Get-Mailbox | where {$_.MaxSendSize -gt '50GB'}`.|
203
203
|_MemberDepartRestriction_|_msExchGroupDepartRestriction_|**Get-DistributionGroup**|`Closed` (0), `Open` (1), or `ApprovalRequired` (2).|For example, `Get-DistributionGroup -Filter {MemberDepartRestriction -eq 'ApprovalRequired'}`.|
204
204
|_MemberJoinRestriction_|_msExchGroupDepartRestriction_|**Get-DistributionGroup**|`Closed` (0), `Open` (1), or `ApprovalRequired` (2).|For example, `Get-DistributionGroup -Filter {MemberJoinRestriction -eq 'ApprovalRequired'}`.|
205
205
|_MemberOfGroup_|_memberOf_|**Get-CASMailbox** <br/> **Get-Contact** <br/> **Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Group** <br/> **Get-LinkedUser** <br/> **Get-Mailbox** <br/> **Get-MailContact** <br/> **Get-MailPublicFolder** <br/> **Get-MailUser** <br/> **Get-Recipient** <br/> **Get-RemoteMailbox** <br/> **Get-SecurityPrincipal** <br/> **Get-UMMMailbox** <br/> **Get-User**|String or `$null`|This filter requires the distinguished name or canonical distinguished name of the distribution group or mail-enabled security group. For example, `Get-User -Filter {MemberOfGroup -eq 'CN=Marketing Department,CN=Users,DC=contoso,DC=com'}` or `Get-User -Filter {MemberOfGroup -eq 'contoso.com/Users/Marketing Group'}`. <br/> To find the distinguished name of a group, replace _\<GroupIdentity\>_ with the name, alias, or email address of the group, and run this command: `Get-DistributionGroup -Identity "<GroupIdentity>" | Format-List Name,DistinguishedName`. <br/> Although this is a multivalued property, the filter will return a match if the property _contains_ the specified value.|
@@ -227,8 +227,8 @@ The properties that have been _confirmed_ to work with the _Filter_ parameter in
227
227
|_Phone_|_telephoneNumber_|**Get-Contact** <br/> **Get-LinkedUser** <br/> **Get-Recipient** <br/> **Get-User**|String (wildcards accepted) or `$null`|For example, `Get-User -Filter {Phone -like '206*'}`.|
228
228
|_PhoneProviderId_|_msExchUMPhoneProvider_|**Get-UMMailbox**|String (wildcards accepted) or `$null`|For example, `Get-UMMailbox -Filter {PhoneProviderId -like '*206*'}`.|
0 commit comments