Skip to content

Commit c5154ca

Browse files
authored
Merge pull request MicrosoftDocs#6194 from MicrosoftDocs/chrisda
Chrisda to Master
2 parents c5ad755 + 4cc9034 commit c5154ca

24 files changed

+46
-70
lines changed

exchange/docs-conceptual/exchange-online-powershell-v2.md

Lines changed: 4 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,11 @@ You can download the EXO V2 module from the PowerShell gallery [here](https://ww
6767
- You can use the following versions of Windows:
6868

6969
- Windows 10
70-
7170
- Windows 8.1
72-
7371
- Windows Server 2019
74-
7572
- Windows Server 2016
76-
7773
- Windows Server 2012 or Windows Server 2012 R2
78-
7974
- Windows 7 Service Pack 1 (SP1)<sup>*</sup>
80-
8175
- Windows Server 2008 R2 SP1<sup>*</sup>
8276

8377
<sup>\*</sup> This version of windows has reached end of support, and is now only supported when running in Azure virtual machines. To use this version of Windows, you need to install the Microsoft .NET Framework 4.5 or later and then the Windows Management Framework 5.1. For more information, see [Windows Management Framework 5.1](https://aka.ms/wmf5download).
@@ -241,9 +235,9 @@ Get-EXOCASMailbox -Properties EwsEnabled, MAPIBlockOutlookNonCachedMode -Propert
241235

242236
We've also included a Minimum property set (or *minset*) in the available property sets that includes a bare minimum set of properties for the cmdlet output.
243237

244-
- If you don't use the *PropertySets* or *Properties* parameters, you automatically get the properties that are included in the Minimum property set.
238+
- If you don't use the *PropertySets* or *Properties* parameters, you automatically get the properties in the Minimum property set.
245239

246-
- If you use the *PropertySets* or *Properties* parameters, you you only get the specified properties.
240+
- If you use the *PropertySets* or *Properties* parameters, you get the specified properties **and** the properties in the Minimum property set.
247241

248242
Either way, the cmdlet output will contain far fewer properties, and the time it takes to return those results will be much faster.
249243

@@ -257,16 +251,8 @@ In contrast, the same **Get-Mailbox** cmdlet would return at least 230 propertie
257251

258252
For details about the property sets that are available in EXO V2 module cmdlets, see [Property sets in Exchange Online PowerShell V2 cmdlets](cmdlet-property-sets.md) or the individual EXO V2 module cmdlet reference topics.
259253

260-
EXO cmdlets also provide a way to retrieve all properties for an object by using the _ProperySets_ parameter with the value `All`.
261-
262-
The following example returns all properties for the 10 mailboxes:
263-
264-
```PowerShell
265-
Get-EXOMailbox -ResultSize 10 -PropertySets All
266-
```
267-
268254
> [!NOTE]
269-
> We highly discourage using the _PropertySets_ parameter with the value `All` because it slows down the cmdlet and reduces reliability. Always use the _PropertySets_ and _Properties_ parameters to retrieve only the required properties.
255+
> Although you can retrieve all properties for an object by using the _PropertySets_ parameter with the value All, we highly discourage this because it slows down the cmdlet and reduces reliability. Always use the _PropertySets_ and _Properties_ parameters to retrieve the minimum number of properties.
270256
271257
For more information about filtering in the EXO V2 module, see [Filters in the Exchange Online V2 module](filters-v2.md).
272258

@@ -325,7 +311,7 @@ For more information about filtering in the EXO V2 module, see [Filters in the E
325311

326312
- Use EXO V2 cmdlets even if WinRM Basic Auth is disabled on client machine. Note that remote PowerShell cmdlets require WinRM Basic Auth, and they won't be available if it's disabled.
327313

328-
- Identity parameter for V2 cmdlets now supports Name and Alias as well. Note that using Alias or Name slows down the performance of V2 cmdlets, so we don't recommend using them.
314+
- Identity parameter for V2 cmdlets now supports Name and Alias as well. Note that using Alias or Name slows down the performance of V2 cmdlets, so we don't recommend using them.
329315

330316
- Fixed issue where the data type of attributes returned by V2 cmdlet was different from remote PowerShell cmdlets. We still have few attributes which have differing data types, and we plan to handle them in coming months.
331317

exchange/exchange-ps/exchange/Get-AdvancedThreatProtectionTrafficReport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ Accept wildcard characters: False
113113
```
114114
115115
### -Direction
116-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
116+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
117117
118118
```yaml
119119
Type: MultiValuedProperty
@@ -183,7 +183,7 @@ Accept wildcard characters: False
183183
```
184184
185185
### -EventType
186-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
186+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
187187

188188
You can specify multiple values separated by commas.
189189

exchange/exchange-ps/exchange/Get-CASMailbox.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ This cmdlet is available in on-premises Exchange and in the cloud-based service.
1717

1818
Use the Get-CASMailbox cmdlet to view the Client Access settings that are configured on mailboxes.
1919

20-
> [!NOTE]
21-
> In Exchange Online PowerShell, we recommend that you use the Get-EXOCASMailbox cmdlet instead of this cmdlet. For more information, see [Use the Exchange Online PowerShell V2 module](https://docs.microsoft.com/powershell/exchange/exchange-online-powershell-v2).
20+
**Note**: In Exchange Online PowerShell, we recommend that you use the Get-EXOCASMailbox cmdlet instead of this cmdlet. For more information, see [Use the Exchange Online PowerShell V2 module](https://docs.microsoft.com/powershell/exchange/exchange-online-powershell-v2).
2221

2322
For information about the parameter sets in the Syntax section below, see [Exchange cmdlet syntax](https://docs.microsoft.com/powershell/exchange/exchange-cmdlet-syntax).
2423

exchange/exchange-ps/exchange/Get-MailDetailATPReport.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ This example returns the Advanced Threat Protection actions for the last 10 days
5151
## PARAMETERS
5252

5353
### -Direction
54-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
54+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
5555

5656
```yaml
5757
Type: MultiValuedProperty

exchange/exchange-ps/exchange/Get-MailDetailDlpPolicyReport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This example retrieves the details of messages sent by [email protected] that mat
4747
## PARAMETERS
4848

4949
### -Action
50-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
50+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
5151

5252
You can specify multiple values separated by commas.
5353

@@ -65,7 +65,7 @@ Accept wildcard characters: False
6565
```
6666
6767
### -Direction
68-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
68+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
6969
7070
```yaml
7171
Type: MultiValuedProperty
@@ -131,7 +131,7 @@ Accept wildcard characters: False
131131
```
132132
133133
### -EventType
134-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
134+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
135135

136136
You can specify multiple values separated by commas.
137137

exchange/exchange-ps/exchange/Get-MailDetailMalwareReport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This example retrieves the details of messages sent by [email protected] that con
4747
## PARAMETERS
4848

4949
### -Action
50-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
50+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
5151

5252
You can specify multiple values separated by commas.
5353

@@ -65,7 +65,7 @@ Accept wildcard characters: False
6565
```
6666
6767
### -Direction
68-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
68+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
6969
7070
```yaml
7171
Type: MultiValuedProperty
@@ -115,7 +115,7 @@ Accept wildcard characters: False
115115
```
116116
117117
### -EventType
118-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
118+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
119119

120120
You can specify multiple values separated by commas.
121121

exchange/exchange-ps/exchange/Get-MailDetailSpamReport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This example retrieves the details of spam messages sent by [email protected] bet
4646
## PARAMETERS
4747

4848
### -Action
49-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
49+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
5050

5151
You can specify multiple values separated by commas.
5252

@@ -64,7 +64,7 @@ Accept wildcard characters: False
6464
```
6565
6666
### -Direction
67-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
67+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
6868
6969
```yaml
7070
Type: MultiValuedProperty
@@ -114,7 +114,7 @@ Accept wildcard characters: False
114114
```
115115
116116
### -EventType
117-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
117+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
118118

119119
You can specify multiple values separated by commas.
120120

exchange/exchange-ps/exchange/Get-MailDetailTransportRuleReport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ This example retrieves the details of messages sent by [email protected] that mat
4747
## PARAMETERS
4848

4949
### -Action
50-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
50+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
5151

5252
You can specify multiple values separated by commas.
5353

@@ -65,7 +65,7 @@ Accept wildcard characters: False
6565
```
6666
6767
### -Direction
68-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
68+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
6969
7070
```yaml
7171
Type: MultiValuedProperty
@@ -115,7 +115,7 @@ Accept wildcard characters: False
115115
```
116116
117117
### -EventType
118-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
118+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
119119

120120
You can specify multiple values separated by commas.
121121

exchange/exchange-ps/exchange/Get-MailTrafficATPReport.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ This example is similar to the previous example, but now the results are summari
8888
## PARAMETERS
8989

9090
### -Action
91-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
91+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
9292

9393
You can specify multiple values separated by commas.
9494

@@ -122,7 +122,7 @@ Accept wildcard characters: False
122122
```
123123
124124
### -Direction
125-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
125+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
126126
127127
```yaml
128128
Type: MultiValuedProperty

exchange/exchange-ps/exchange/Get-MailTrafficPolicyReport.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ This example is similar to the previous example, but now the results are summari
7070
## PARAMETERS
7171

7272
### -Action
73-
The Action parameter filters the report by the action taken by DLP policies, transport rules, malware filtering, or spam filtering. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget Actions. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
73+
The Action parameter filters the report by the action taken on messages. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget Actions`. The action you specify must correspond to the report type. For example, you can only specify malware filter actions for malware reports.
7474

7575
You can specify multiple values separated by commas.
7676

@@ -104,7 +104,7 @@ Accept wildcard characters: False
104104
```
105105
106106
### -Direction
107-
The Direction parameter filters the results by incoming or outgoing messages. Valid values for this parameter are Inbound and Outbound.
107+
The Direction parameter filters the results by incoming or outgoing messages. Valid values are Inbound and Outbound.
108108
109109
```yaml
110110
Type: MultiValuedProperty
@@ -170,7 +170,7 @@ Accept wildcard characters: False
170170
```
171171
172172
### -EventType
173-
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command Get-MailFilterListReport -SelectionTarget EventTypes. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
173+
The EventType parameter filters the report by the event type. To view the complete list of valid values for this parameter, run the command: `Get-MailFilterListReport -SelectionTarget EventTypes`. The event type you specify must correspond to the report. For example, you can only specify malware filter events for malware reports.
174174

175175
You can specify multiple values separated by commas.
176176

0 commit comments

Comments
 (0)