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
+1-1Lines changed: 1 addition & 1 deletion
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
|_EntryId_ <br/> |_msExchPublicFolderEntryId_ <br/> |**Get-MailPublicFolder** <br/> |String (wildcards accepted) <br/> |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`. <br/> |
127
127
|_EwsApplicationAccessPolicy_ <br/> |_msExchEwsApplicationAccessPolicy_ <br/> |**Get-CASMailbox** <br/> |`EnforceAllowList`, `EnforceBlockList`. or `$null` <br/> |For example, `Get-CASMailbox -Filter {EwsApplicationAccessPolicy -ne $null}`. <br/> |
|_ExchangeGuid_ <br/> |_msExchMailboxGuid_ <br/> |**Get-Mailbox** <br/> **Get-MailUser** <br/> **Get-Recipient** <br/> **Get-RemoteMailbox** <br/> |String <br/> |For example, `Get-Mailbox -Filter {ExchangeGuid -eq 'c80a753d-bd4a-4e19-804a-6344d833ecd8'}`. <br/> To find the Exchange GUID of a recipient, replace _\<RecipientIdentity\>_ with the name, alias, or email address of the recipient, and run this command: `Get-Recipient -Identity "<RecipientIdentity>" | Format-List Name,ExchangeGuid`. <br/> Note that an object's Exchange GUID value is different than its GUID value. Also, the Exchange GUID value for non-mailboxes (mail contacts, mail users, distribution groups, dynamic distribution groups, mail-enabled security groups, and mail-enabled public folders) is `00000000-0000-0000-0000-000000000000`. <br/> |
129
+
|_ExchangeGuid_ <br/> |_msExchMailboxGuid_ <br/> |**Get-Mailbox** <br/> **Get-MailUser** <br/> **Get-Recipient** <br/> **Get-RemoteMailbox** <br/> |String <br/> |For example, `Get-Mailbox -Filter {ExchangeGuid -eq 'c80a753d-bd4a-4e19-804a-6344d833ecd8'}`. <br/> To find the Exchange GUID of a recipient, replace _\<RecipientIdentity\>_ with the name, alias, or email address of the recipient, and run this command: `Get-Recipient -Identity "<RecipientIdentity>" \| Format-List Name,ExchangeGuid`. <br/> Note that an object's Exchange GUID value is different than its GUID value. Also, the Exchange GUID value for non-mailboxes (mail contacts, mail users, distribution groups, dynamic distribution groups, mail-enabled security groups, and mail-enabled public folders) is `00000000-0000-0000-0000-000000000000`. <br/> |
| _ExchangeVersion_ <br/> | _msExchVersion_ <br/> |**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** <br/> |Integer <br/> |This property contains the earliest version of Exchange that you can use to manage the recipient. The property values that you see are different than the values that you need to use in the filter. To see the **ExchangeVersion** property values, run this command: `Get-Recipient | Format-Table Name,RecipientType,ExchangeVersion`. <br/> For the Exchange 2010 value `0.10 (14.0.100.0)`, use the value 44220983382016 in the filter. <br/> For the Exchange 2013 or Exchange 2013 value `0.20 (15.0.0.0)`, use the value 88218628259840 in the filter. <br/> For example, `Get-Recipient -Filter {ExchangeVersion -lt 88218628259840}`. <br/> |
132
132
|_ExpansionServer_ <br/> |_msExchExpansionServerName_ <br/> |**Get-DistributionGroup** <br/> **Get-DynamicDistributionGroup** <br/> **Get-Recipient** <br/> |String (wildcards accepted) or `$null` <br/> |For example, `Get-Recipient -Filter {ExpansionServer -like '*Mailbox01'}`. <br/> For an exact match, you need to use the **ExchangeLegacyDN** value of the server. For example, `Get-Recipient -Filter {ExpansionServer -eq '/o=Contoso Corporation/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Configuration/cn=Servers/cn=Mailbox01'}` <br/> You can find the **ExchangeLegacyDN** value by running this command: `Get-ExchangeServer | Format-List Name,ExchangeLegacyDN`. <br/> |
0 commit comments