Skip to content

Commit 9cb8c57

Browse files
authored
Merge pull request MicrosoftDocs#7199 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents e6bf56b + 245a5ab commit 9cb8c57

File tree

3 files changed

+85
-2
lines changed

3 files changed

+85
-2
lines changed

exchange/docs-conceptual/recipient-filters.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,9 @@ When creating your own custom OPath filters, consider the following items:
221221
- `-like` (string comparison)
222222
- `-notlike` (string comparison)
223223

224-
- Many filterable properties accept wildcard characters. If you use a wildcard character, use the **-like** operator instead of the **-eq** operator. The **-like** operator is used to find pattern matches in rich types (for example, strings) whereas the **-eq** operator is used to find an exact match.
224+
- Many filterable properties accept wildcard characters. If you use a wildcard character, use the **-like** operator instead of the **-eq** operator. Use the **-like** operator to find pattern matches in rich types (for example, strings). Use the **-eq** operator to find an exact match.
225+
226+
When you use the **-like** operator in Exchange Online PowerShell, the wildcard character is supported only as a suffix. For example, `"Department -like 'sales*'"` is allowed; `"Department -like '*sales'"` is not allowed.
225227

226228
- For more information about operators you can use, see:
227229

exchange/docs-conceptual/recipientfilter-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The recipient properties that have been *confirmed* to work with the _RecipientF
3939

4040
- You typically use the object's name for properties that require a valid object value (for example, a mailbox, a distribution group, or an email address policy, but the property might also accept the object's distinguished name (DN) or globally unique identifier (GUID). To find the object's DN or GUID, use the **Get-** cmdlet that corresponds to the object's type (for example, `Get-EmailAddressPolicy | Format-List Name,DistinguishedName,GUID`).
4141

42-
- Text string properties that accept wildcard characters require the `-like` operator (for example, `"Property -like 'abc*'"`).
42+
- Text string properties that accept wildcard characters require the `-like` operator (for example, `"Property -like 'abc*'"`). In Exchange Online PowerShell, you can't use the wildcard as a prefix (for example, `"Property -like '*abc'"`) is not allowed).
4343

4444
- The Value column in the table describes the acceptable values for the *filter*, not necessarily for the property itself. For example, a property might obviously contain a date or numeric value, but when you use that property in a filter, it might be treated like a text string (no value check, and wildcards are supported).
4545

exchange/exchange-ps/exchange/Set-User.md

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ Set-User [-Identity] <UserIdParameter>
2626
[-Arbitration]
2727
[-AssistantName <String>]
2828
[-AuthenticationPolicy <String>]
29+
[-BlockCloudCache <Boolean>]
30+
[-CanHaveCloudCache <Boolean>]
2931
[-CertificateSubject <MultiValuedProperty>]
3032
[-City <String>]
3133
[-Company <String>]
@@ -67,6 +69,7 @@ Set-User [-Identity] <UserIdParameter>
6769
[-SamAccountName <String>]
6870
[-SeniorityIndex <Int32>]
6971
[-SimpleDisplayName <String>]
72+
[-SkipDualWrite]
7073
[-StateOrProvince <String>]
7174
[-StreetAddress <String>]
7275
[-StsRefreshTokensValidFrom <DateTime>]
@@ -75,6 +78,7 @@ Set-User [-Identity] <UserIdParameter>
7578
[-UMCallingLineIds <MultiValuedProperty>]
7679
[-UMDtmfMap <MultiValuedProperty>]
7780
[-UserPrincipalName <String>]
81+
[-VIP <Boolean>]
7882
[-WebPage <String>]
7983
[-WhatIf]
8084
[-WindowsEmailAddress <SmtpAddress>]
@@ -204,6 +208,42 @@ Accept pipeline input: False
204208
Accept wildcard characters: False
205209
```
206210
211+
### -BlockCloudCache
212+
This parameter is available only in the cloud-based service.
213+
214+
{{ Fill BlockCloudCache Description }}
215+
216+
```yaml
217+
Type: Boolean
218+
Parameter Sets: (All)
219+
Aliases:
220+
Applicable: Exchange Online
221+
222+
Required: False
223+
Position: Named
224+
Default value: None
225+
Accept pipeline input: False
226+
Accept wildcard characters: False
227+
```
228+
229+
### -CanHaveCloudCache
230+
This parameter is available only in the cloud-based service.
231+
232+
{{ Fill CanHaveCloudCache Description }}
233+
234+
```yaml
235+
Type: Boolean
236+
Parameter Sets: (All)
237+
Aliases:
238+
Applicable: Exchange Online
239+
240+
Required: False
241+
Position: Named
242+
Default value: None
243+
Accept pipeline input: False
244+
Accept wildcard characters: False
245+
```
246+
207247
### -CertificateSubject
208248
This parameter is available only in on-premises Exchange.
209249
@@ -935,6 +975,24 @@ Accept pipeline input: False
935975
Accept wildcard characters: False
936976
```
937977

978+
### -SkipDualWrite
979+
This parameter is available only in on-premises Exchange.
980+
981+
This parameter is reserved for internal Microsoft use.
982+
983+
```yaml
984+
Type: SwitchParameter
985+
Parameter Sets: (All)
986+
Aliases:
987+
Applicable: Exchange Server 2016, Exchange Server 2019
988+
989+
Required: False
990+
Position: Named
991+
Default value: None
992+
Accept pipeline input: False
993+
Accept wildcard characters: False
994+
```
995+
938996
### -StateOrProvince
939997
The StateOrProvince parameter specifies the user's state or province.
940998

@@ -1085,6 +1143,29 @@ Accept pipeline input: False
10851143
Accept wildcard characters: False
10861144
```
10871145

1146+
### -VIP
1147+
This parameter is available only in the cloud-based service.
1148+
1149+
The VIP parameter specifies whether the user is a priority account. Valid values are:
1150+
1151+
- $true: The user is a priority account.
1152+
- $false: The user is not a priority account.
1153+
1154+
For more information about priority accounts, see [Manage and monitor priority accounts](https://docs.microsoft.com/microsoft-365/admin/setup/priority-accounts).
1155+
1156+
```yaml
1157+
Type: Boolean
1158+
Parameter Sets: (All)
1159+
Aliases:
1160+
Applicable: Exchange Online
1161+
1162+
Required: False
1163+
Position: Named
1164+
Default value: None
1165+
Accept pipeline input: False
1166+
Accept wildcard characters: False
1167+
```
1168+
10881169
### -WebPage
10891170
The WebPage parameter specifies the user's Web page.
10901171

0 commit comments

Comments
 (0)