Skip to content

Commit 5b87c7e

Browse files
committed
Merge branch 'main' into VMF-chrisda
2 parents 0a7746f + ae9fd80 commit 5b87c7e

File tree

77 files changed

+1972
-218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+1972
-218
lines changed

exchange/exchange-ps/exchange/Add-AvailabilityAddressSpace.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ Add-AvailabilityAddressSpace -AccessMethod <AvailabilityAccessMethod> -ForestNam
2929
[-DomainController <Fqdn>]
3030
[-ProxyUrl <Uri>]
3131
[-TargetAutodiscoverEpr <Uri>]
32+
[-TargetServiceEpr <String>]
33+
[-TargetTenantId <String>]
3234
[-UseServiceAccount <Boolean>]
3335
[-WhatIf]
3436
[<CommonParameters>]
@@ -193,6 +195,42 @@ Accept pipeline input: False
193195
Accept wildcard characters: False
194196
```
195197

198+
### -TargetServiceEpr
199+
This parameter is available only in the cloud-based service.
200+
201+
{{ Fill TargetServiceEpr Description }}
202+
203+
```yaml
204+
Type: String
205+
Parameter Sets: (All)
206+
Aliases:
207+
Applicable: Exchange Online
208+
209+
Required: False
210+
Position: Named
211+
Default value: None
212+
Accept pipeline input: False
213+
Accept wildcard characters: False
214+
```
215+
216+
### -TargetTenantId
217+
This parameter is available only in the cloud-based service.
218+
219+
{{ Fill TargetTenantId Description }}
220+
221+
```yaml
222+
Type: String
223+
Parameter Sets: (All)
224+
Aliases:
225+
Applicable: Exchange Online
226+
227+
Required: False
228+
Position: Named
229+
Default value: None
230+
Accept pipeline input: False
231+
Accept wildcard characters: False
232+
```
233+
196234
### -UseServiceAccount
197235
This parameter is available only in on-premises Exchange.
198236

exchange/exchange-ps/exchange/Get-AdaptiveScope.md

Lines changed: 37 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.reviewer:
1212
# Get-AdaptiveScope
1313

1414
## SYNOPSIS
15-
This cmdlet is available only in Security & Compliance PowerShell. For more information, see [Security & Compliance PowerShell](https://learn.microsoft.com/powershell/exchange/scc-powershell).
15+
This cmdlet is available only in the cloud-based service.
1616

1717
Use the Get-AdaptiveScope cmdlet to view adaptive scopes in your organization. Adaptive scopes (or static scopes) are used in retention policies and retention label policies.
1818

@@ -21,7 +21,10 @@ For information about the parameter sets in the Syntax section below, see [Excha
2121
## SYNTAX
2222

2323
```
24-
Get-AdaptiveScope [[-Identity] <ComplianceRuleIdParameter>] [<CommonParameters>]
24+
Get-AdaptiveScope [[-Identity] <ComplianceRuleIdParameter>]
25+
[-AdministrativeUnits <MultiValuedProperty>]
26+
[-LocationTypes <MultiValuedProperty>]
27+
[<CommonParameters>]
2528
```
2629

2730
## DESCRIPTION
@@ -64,6 +67,38 @@ Accept pipeline input: True (ByPropertyName, ByValue)
6467
Accept wildcard characters: False
6568
```
6669
70+
### -AdministrativeUnits
71+
{{ Fill AdministrativeUnits Description }}
72+
73+
```yaml
74+
Type: MultiValuedProperty
75+
Parameter Sets: (All)
76+
Aliases:
77+
Applicable: Exchange Online, Security & Compliance
78+
79+
Required: False
80+
Position: Named
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
86+
### -LocationTypes
87+
{{ Fill LocationTypes Description }}
88+
89+
```yaml
90+
Type: MultiValuedProperty
91+
Parameter Sets: (All)
92+
Aliases:
93+
Applicable: Exchange Online, Security & Compliance
94+
95+
Required: False
96+
Position: Named
97+
Default value: None
98+
Accept pipeline input: False
99+
Accept wildcard characters: False
100+
```
101+
67102
### CommonParameters
68103
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).
69104
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
---
2+
external help file: Microsoft.Exchange.ServerStatus-Help.xml
3+
online version: https://learn.microsoft.com/powershell/module/exchange/get-aggregatezapreport
4+
applicable: Exchange Online
5+
title: Get-AggregateZapReport
6+
schema: 2.0.0
7+
author: chrisda
8+
ms.author: chrisda
9+
ms.reviewer:
10+
---
11+
12+
# Get-AggregateZapReport
13+
14+
## SYNOPSIS
15+
This cmdlet is available only in the cloud-based service.
16+
17+
Use the Get-AggregateZapReport cmdlet to view aggregate information about zero-hour auto purge (ZAP) activity. By default, the cmdlet shows the last three days of activity, but you can specify up to ten days.
18+
19+
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://learn.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
20+
21+
## SYNTAX
22+
23+
```
24+
Get-AggregateZapReport
25+
[[-EndDate] <System.DateTime>]
26+
[[-Page] <Int32>]
27+
[[-PageSize] <Int32>]
28+
[[-StartDate] <System.DateTime>]
29+
[<CommonParameters>]
30+
```
31+
32+
## DESCRIPTION
33+
For the reporting period you specify, the cmdlet returns the following information:
34+
35+
- Date
36+
- EventType
37+
- ZapActionCount
38+
39+
You need to be assigned permissions before you can run this cmdlet. Although this topic lists all parameters for the cmdlet, you may not have access to some parameters if they're not included in the permissions assigned to you. To find the permissions required to run any cmdlet or parameter in your organization, see [Find the permissions required to run any Exchange cmdlet](https://learn.microsoft.com/powershell/exchange/find-exchange-cmdlet-permissions).
40+
41+
## EXAMPLES
42+
43+
### Example 1
44+
```powershell
45+
Get-AggregateZapReport
46+
```
47+
48+
This example retrieves information for the last 3 days.
49+
50+
### Example 2
51+
```powershell
52+
Get-AggregateZapReport -StartDate 7/1/2023 -EndDate 7/9/2023
53+
```
54+
55+
This example retrieves information for the specified date range.
56+
57+
## PARAMETERS
58+
59+
### -EndDate
60+
The EndDate parameter specifies the end date of the date range.
61+
62+
Use the short date format that's defined in the Regional Options settings on the computer where you're running the command. For example, if the computer is configured to use the short date format mm/dd/yyyy, enter 09/01/2018 to specify September 1, 2018. You can enter the date only. If you enter the date, enclose the value in quotation marks ("), for example, "09/01/2018".
63+
64+
If you use the EndDate parameter, you also need to use the StartDate parameter.
65+
66+
```yaml
67+
Type: System.DateTime
68+
Parameter Sets: (All)
69+
Aliases:
70+
Applicable: Exchange Online
71+
72+
Required: False
73+
Position: 1
74+
Default value: None
75+
Accept pipeline input: True (ByPropertyName)
76+
Accept wildcard characters: False
77+
```
78+
79+
### -Page
80+
The Page parameter specifies the page number of the results you want to view. Valid input for this parameter is an integer between 1 and 1000. The default value is 1.
81+
82+
```yaml
83+
Type: Int32
84+
Parameter Sets: (All)
85+
Aliases:
86+
Applicable: Exchange Online
87+
88+
Required: False
89+
Position: 2
90+
Default value: 0
91+
Accept pipeline input: False
92+
Accept wildcard characters: False
93+
```
94+
95+
### -PageSize
96+
The PageSize parameter specifies the maximum number of entries per page. Valid input for this parameter is an integer between 1 and 5000. The default value is 1000.
97+
98+
```yaml
99+
Type: Int32
100+
Parameter Sets: (All)
101+
Aliases:
102+
Applicable: Exchange Online
103+
104+
Required: False
105+
Position: 3
106+
Default value: 0
107+
Accept pipeline input: False
108+
Accept wildcard characters: False
109+
```
110+
111+
### -StartDate
112+
The StartDate parameter specifies the start date of the date range.
113+
114+
Use the short date format that's defined in the Regional Options settings on the computer where you're running the command. For example, if the computer is configured to use the short date format mm/dd/yyyy, enter 09/01/2018 to specify September 1, 2018. You can enter the date only, or you can enter the date and time of day. If you enter the date and time of day, enclose the value in quotation marks ("), for example, "09/01/2018".
115+
116+
If you use this parameter, you also need to use the StartDate parameter.
117+
118+
```yaml
119+
Type: System.DateTime
120+
Parameter Sets: (All)
121+
Aliases:
122+
Applicable: Exchange Online
123+
124+
Required: False
125+
Position: 4
126+
Default value: None
127+
Accept pipeline input: True (ByPropertyName)
128+
Accept wildcard characters: False
129+
```
130+
131+
### CommonParameters
132+
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).
133+
134+
## INPUTS
135+
136+
## OUTPUTS
137+
138+
## NOTES
139+
140+
## RELATED LINKS

exchange/exchange-ps/exchange/Get-Clutter.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ For information about the parameter sets in the Syntax section below, see [Excha
2222

2323
```
2424
Get-Clutter -Identity <MailboxIdParameter>
25+
[-UseCustomRouting]
2526
[<CommonParameters>]
2627
```
2728

@@ -66,6 +67,22 @@ Accept pipeline input: False
6667
Accept wildcard characters: False
6768
```
6869
70+
### -UseCustomRouting
71+
{{ Fill UseCustomRouting Description }}
72+
73+
```yaml
74+
Type: SwitchParameter
75+
Parameter Sets: (All)
76+
Aliases:
77+
Applicable: Exchange Online
78+
79+
Required: False
80+
Position: Named
81+
Default value: None
82+
Accept pipeline input: False
83+
Accept wildcard characters: False
84+
```
85+
6986
### CommonParameters
7087
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).
7188

exchange/exchange-ps/exchange/Get-ComplianceSearchAction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ When you use the Identity parameter, more details are returned in the results. F
103103

104104
- In the Results line, the values of the Item count, Total size, and Details properties are populated.
105105
- Location lines are added to the results.
106-
- The NumBinding property value is populated.
106+
- The NumBinding property value is populated. This property includes only the primary mailbox, the main archive, and any additional archives.
107107
- The affected location properties (for example, ExchangeLocation) are populated.
108108
- The CaseName property value is populated.
109109

0 commit comments

Comments
 (0)