Skip to content

Commit 543b90c

Browse files
authored
Merge branch 'master' into PhoneNumber2
2 parents cb2010e + 9cbdd34 commit 543b90c

20 files changed

+248
-356
lines changed

exchange/docs-conceptual/disable-access-to-exchange-online-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ $<VariableName> = <Get-Mailbox | Get-User> -ResultSize unlimited -Filter <Filter
6464
```
6565

6666
```powershell
67-
$<VariableName> | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
67+
$<VariableName> | foreach {Set-User -Identity $_.WindowsEmailAddress -RemotePowerShellEnabled $false}
6868
```
6969

7070
This example removes access to Exchange Online PowerShell for all users whose **Title** attribute contains the value "Sales Associate".
@@ -74,7 +74,7 @@ $DSA = Get-User -ResultSize unlimited -Filter "(RecipientType -eq 'UserMailbox')
7474
```
7575

7676
```powershell
77-
$DSA | foreach {Set-User -Identity $_ -RemotePowerShellEnabled $false}
77+
$DSA | foreach {Set-User -Identity $_.WindowsEmailAddress -RemotePowerShellEnabled $false}
7878
```
7979

8080
### Use a list of specific users

exchange/exchange-ps/exchange/Get-ComplianceCaseMember.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ Get-ComplianceCaseMember -Case <String>
3434
Get-ComplianceCaseMember
3535
[-DomainController <Fqdn>]
3636
[-ResultSize <Unlimited>]
37-
[-RoleGroupOnly]
3837
[<CommonParameters>]
3938
```
4039

@@ -68,22 +67,6 @@ Accept pipeline input: False
6867
Accept wildcard characters: False
6968
```
7069
71-
### -RoleGroupOnly
72-
{{ Fill RoleGroupOnly Description }}
73-
74-
```yaml
75-
Type: SwitchParameter
76-
Parameter Sets: AllCases
77-
Aliases:
78-
Applicable: Security & Compliance Center
79-
80-
Required: True
81-
Position: Named
82-
Default value: None
83-
Accept pipeline input: False
84-
Accept wildcard characters: False
85-
```
86-
8770
### -DomainController
8871
This parameter is reserved for internal Microsoft use.
8972

exchange/exchange-ps/exchange/Get-PolicyConfig.md

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Get-PolicyConfig [[-Identity] <OrganizationIdParameter>] [<CommonParameters>]
24+
Get-PolicyConfig [<CommonParameters>]
2525
```
2626

2727
## DESCRIPTION
@@ -38,22 +38,6 @@ This example returns the endpoint restrictions that are available in the organiz
3838

3939
## PARAMETERS
4040

41-
### -Identity
42-
This parameter is reserved for internal Microsoft use.
43-
44-
```yaml
45-
Type: OrganizationIdParameter
46-
Parameter Sets: (All)
47-
Aliases:
48-
Applicable: Security & Compliance Center
49-
50-
Required: False
51-
Position: 0
52-
Default value: None
53-
Accept pipeline input: True (ByPropertyName, ByValue)
54-
Accept wildcard characters: False
55-
```
56-
5741
### CommonParameters
5842
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](https://go.microsoft.com/fwlink/p/?LinkID=113216).
5943

exchange/exchange-ps/exchange/Get-RecoverableItems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ Accept wildcard characters: False
245245
The SourceFolder parameter specifies where to search for deleted items in the mailbox. Valid values are:
246246
247247
- DeletedItems: The Deleted Items folder.
248+
- DiscoveryHoldsItems: The Recoverable Items\DiscoveryHolds folder. This folder contains items that have been purged from the Recoverable Items folder (hard-deleted items) and are protected by a hold.
248249
- RecoverableItems: The Recoverable Items\Deletions folder. This folder contains items that have been deleted from the Deleted Items folder (soft-deleted items).
249250
- PurgedItems: The Recoverable Items\Purges folder. This folder contains items that have been purged from the Recoverable Items folder (hard-deleted items).
250251
@@ -254,7 +255,6 @@ If you don't use this parameter, the command will search all of these folders.
254255
Type: RecoverableItemsFolderType
255256
Parameter Sets: (All)
256257
Aliases:
257-
Accepted values: DeletedItems | RecoverableItems | PurgedItems
258258
Applicable: Exchange Server 2016, Exchange Server 2019, Exchange Online
259259

260260
Required: False

exchange/exchange-ps/exchange/New-AutoSensitivityLabelPolicy.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,8 @@ Accept wildcard characters: False
259259
```
260260

261261
### -OneDriveLocation
262-
The OneDriveLocation parameter specifies the OneDrive for Business sites to include. You identify the site by its URL value. The value All is currently not supported.
262+
The OneDriveLocation parameter specifies the OneDrive for Business sites to include. You identify the site by its URL value, or you can use the value All to include all sites.
263+
263264
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`.
264265

265266
```yaml
@@ -310,7 +311,8 @@ Accept wildcard characters: False
310311
```
311312

312313
### -SharePointLocation
313-
The SharePointLocation parameter specifies the SharePoint Online sites to include. You identify the site by its URL value. The value All is currently not supported.
314+
The SharePointLocation parameter specifies the SharePoint Online sites to include. You identify the site by its URL value, or you can use the value All to include all sites.
315+
314316
You can enter multiple values separated by commas. If the values contain spaces or otherwise require quotation marks, use the following syntax: `"Value1","Value2",..."ValueN"`. SharePoint Online sites can't be added to a policy until they have been indexed.
315317

316318
```yaml

exchange/exchange-ps/exchange/New-ComplianceSearchAction.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ New-ComplianceSearchAction [-SearchName] <String[]>
4444
[-RetryOnError]
4545
[-Scenario <ComplianceSearchActionScenario>]
4646
[-Scope <ComplianceExportScope>]
47-
[-ScopeDetails <ComplianceScopeDetail[]>]
4847
[-SearchNames <String[]>]
4948
[-SharePointArchiveFormat <ComplianceExportArchiveFormat>]
5049
[-ShareRootPath <String>]
@@ -613,22 +612,6 @@ Accept pipeline input: False
613612
Accept wildcard characters: False
614613
```
615614

616-
### -ScopeDetails
617-
This parameter is reserved for internal Microsoft use.
618-
619-
```yaml
620-
Type: ComplianceScopeDetail[]
621-
Parameter Sets: Export
622-
Aliases:
623-
Applicable: Security & Compliance Center
624-
625-
Required: False
626-
Position: Named
627-
Default value: None
628-
Accept pipeline input: False
629-
Accept wildcard characters: False
630-
```
631-
632615
### -SearchNames
633616
This parameter is available only in the cloud-based service.
634617

exchange/exchange-ps/exchange/New-ComplianceTag.md

Lines changed: 0 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,11 @@ For information about the parameter sets in the Syntax section below, see [Excha
2323
```
2424
New-ComplianceTag [-Name] <String>
2525
[-Comment <String>]
26-
[-ComplianceTagForNextStage <String>]
2726
[-Confirm]
2827
[-EventType <ComplianceRuleIdParameter>]
2928
[-FilePlanProperty <String>]
30-
[-FlowId <System.Guid>]
3129
[-Force]
3230
[-IsRecordLabel <Boolean>]
33-
[-IsRecordUnlockedAsDefault <Boolean>]
3431
[-MultiStageReviewProperty <String>]
3532
[-Notes <String>]
3633
[-Regulatory <Boolean>]
@@ -92,22 +89,6 @@ Accept pipeline input: False
9289
Accept wildcard characters: False
9390
```
9491
95-
### -ComplianceTagForNextStage
96-
{{ Fill ComplianceTagForNextStage Description }}
97-
98-
```yaml
99-
Type: String
100-
Parameter Sets: (All)
101-
Aliases:
102-
Applicable: Security & Compliance Center
103-
104-
Required: False
105-
Position: Named
106-
Default value: None
107-
Accept pipeline input: False
108-
Accept wildcard characters: False
109-
```
110-
11192
### -Confirm
11293
The Confirm switch specifies whether to show or hide the confirmation prompt. How this switch affects the cmdlet depends on if the cmdlet requires confirmation before proceeding.
11394
@@ -192,22 +173,6 @@ Accept pipeline input: False
192173
Accept wildcard characters: False
193174
```
194175

195-
### -FlowId
196-
{{ Fill FlowId Description }}
197-
198-
```yaml
199-
Type: System.Guid
200-
Parameter Sets: (All)
201-
Aliases:
202-
Applicable: Security & Compliance Center
203-
204-
Required: False
205-
Position: Named
206-
Default value: None
207-
Accept pipeline input: False
208-
Accept wildcard characters: False
209-
```
210-
211176
### -Force
212177
The Force switch specifies whether to suppress warning or confirmation messages. You can use this switch to run tasks programmatically where prompting for administrative input is inappropriate. You don't need to specify a value with this switch.
213178

@@ -243,22 +208,6 @@ Accept pipeline input: False
243208
Accept wildcard characters: False
244209
```
245210

246-
### -IsRecordUnlockedAsDefault
247-
{{ Fill IsRecordUnlockedAsDefault Description }}
248-
249-
```yaml
250-
Type: Boolean
251-
Parameter Sets: (All)
252-
Aliases:
253-
Applicable: Security & Compliance Center
254-
255-
Required: False
256-
Position: Named
257-
Default value: None
258-
Accept pipeline input: False
259-
Accept wildcard characters: False
260-
```
261-
262211
### -MultiStageReviewProperty
263212
The MultiStageReviewProperty parameter specifies the multi-stage review properties to include in the label. This parameter uses the following syntax:
264213

exchange/exchange-ps/exchange/New-DlpCompliancePolicy.md

Lines changed: 0 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,6 @@ New-DlpCompliancePolicy [-Name] <String>
4242
[-Priority <Int32>]
4343
[-SharePointLocation <MultiValuedProperty>]
4444
[-SharePointLocationException <MultiValuedProperty>]
45-
[-SharePointOnPremisesLocationException <MultiValuedProperty>]
46-
[-SharePointServerLocation <MultiValuedProperty>]
4745
[-TeamsLocation <MultiValuedProperty>]
4846
[-TeamsLocationException <MultiValuedProperty>]
4947
[-ThirdPartyAppDlpLocation <MultiValuedProperty>]
@@ -447,38 +445,6 @@ Accept pipeline input: False
447445
Accept wildcard characters: False
448446
```
449447

450-
### -SharePointOnPremisesLocationException
451-
This parameter is reserved for internal Microsoft use.
452-
453-
```yaml
454-
Type: MultiValuedProperty
455-
Parameter Sets: (All)
456-
Aliases:
457-
Applicable: Security & Compliance Center
458-
459-
Required: False
460-
Position: Named
461-
Default value: None
462-
Accept pipeline input: False
463-
Accept wildcard characters: False
464-
```
465-
466-
### -SharePointServerLocation
467-
This parameter is reserved for internal Microsoft use.
468-
469-
```yaml
470-
Type: MultiValuedProperty
471-
Parameter Sets: (All)
472-
Aliases:
473-
Applicable: Security & Compliance Center
474-
475-
Required: False
476-
Position: Named
477-
Default value: None
478-
Accept pipeline input: False
479-
Accept wildcard characters: False
480-
```
481-
482448
### -TeamsLocation
483449
The TeamsLocation parameter specifies the Teams accounts to include in the DLP policy. You identify the account by its name or email address, or you can use the value All to include all accounts.
484450

exchange/exchange-ps/exchange/New-SupervisoryReviewRule.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ New-SupervisoryReviewRule [-Name] <String> -Policy <PolicyIdParameter>
2929
[-ContentMatchesDataModel <String>]
3030
[-ContentSources <String[]>]
3131
[-Ocr <Boolean>]
32-
[-RateOfSampling <String>]
3332
[-SamplingRate <Int32>]
3433
[-WhatIf]
3534
[<CommonParameters>]
@@ -215,22 +214,6 @@ Accept pipeline input: False
215214
Accept wildcard characters: False
216215
```
217216

218-
### -RateOfSampling
219-
{{ Fill RateOfSampling Description }}
220-
221-
```yaml
222-
Type: String
223-
Parameter Sets: (All)
224-
Aliases:
225-
Applicable: Security & Compliance Center
226-
227-
Required: False
228-
Position: Named
229-
Default value: None
230-
Accept pipeline input: False
231-
Accept wildcard characters: False
232-
```
233-
234217
### -SamplingRate
235218
The SamplingRate parameter specifies the percentage of communications for review. If you want reviewers to review all detected items, use the value 100.
236219

exchange/exchange-ps/exchange/Restore-RecoverableItems.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,7 @@ Accept wildcard characters: False
307307
The SourceFolder parameter specifies where to search for deleted items in the mailbox. Valid values are:
308308
309309
- DeletedItems: The Deleted Items folder.
310+
- DiscoveryHoldsItems: The Recoverable Items\DiscoveryHolds folder. This folder contains items that have been purged from the Recoverable Items folder (hard-deleted items) and are protected by a hold.
310311
- RecoverableItems: The Recoverable Items\Deletions folder. This folder contains items that have been deleted from the Deleted Items folder (soft-deleted items).
311312
- PurgedItems: The Recoverable Items\Purges folder. This folder contains items that have been purged from the Recoverable Items folder (hard-deleted items).
312313
@@ -316,7 +317,6 @@ If you don't use this parameter, the command will search all of these folders.
316317
Type: RecoverableItemsFolderType
317318
Parameter Sets: OnPrem
318319
Aliases:
319-
Accepted values: DeletedItems | RecoverableItems, DeletedItems | RecoverableItems | PurgedItems
320320
Applicable: Exchange Server 2016, Exchange Server 2019
321321

322322
Required: False

0 commit comments

Comments
 (0)