Skip to content

Commit 45a7acf

Browse files
authored
Fixed pipe escaping once again
1 parent b5f1573 commit 45a7acf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exchange/docs-conceptual/exchange-server/recipient-filters/filter-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ The properties that have been _confirmed_ to work with the _Filter_ parameter in
126126
| _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/> |
127127
| _EwsApplicationAccessPolicy_ <br/> | _msExchEwsApplicationAccessPolicy_ <br/> |**Get-CASMailbox** <br/> | `EnforceAllowList`, `EnforceBlockList`. or `$null` <br/> |For example, `Get-CASMailbox -Filter {EwsApplicationAccessPolicy -ne $null}`. <br/> |
128128
| _EwsEnabled_ <br/> | _msExchEwsEnabled_ <br/> |**Get-CASMailbox** <br/> |0 (disabled), 1 (enabled) or `$null`. <br/> |For example, `Get-CASMailbox -Filter {EwsEnabled -eq 1}`. <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/> |
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/> |
130130
| _ExchangeUserAccountControl_ <br/> | _msExchUserAccountControl_ <br/> |**Get-Mailbox** <br/> **Get-MailUser** <br/> **Get-RemoteMailbox** <br/> | `None` (0) or `AccountDisabled` (2) <br/> |For example, `Get-Mailbox -Filter {ExchangeUserAccountControl -eq 'AccountDisabled'}`. <br/> |
131131
| _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/> |
132132
| _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

Comments
 (0)