Skip to content

Commit bb0e304

Browse files
authored
Merge pull request MicrosoftDocs#3267 from MicrosoftDocs/master
Master to Live
2 parents 4a3b056 + 5c9cdb8 commit bb0e304

File tree

7 files changed

+184
-78
lines changed

7 files changed

+184
-78
lines changed

exchange/docs-conceptual/exchange-eop/connect-to-exchange-online-protection-powershell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Exchange Online Protection PowerShell allows you to manage your Exchange Online
6464
2. Run the following command:
6565
6666
```
67-
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.protection.outlook.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
67+
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://ps.compliance.protection.outlook.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
6868
```
6969
7070
**Notes**:
@@ -116,4 +116,4 @@ The cmdlets that you use in this topic are Windows PowerShell cmdlets. For more
116116
117117
- [Remove-PSSession](https://go.microsoft.com/fwlink/p/?LinkId=389620)
118118
119-
- [Set-ExecutionPolicy](https://go.microsoft.com/fwlink/p/?LinkId=389623)
119+
- [Set-ExecutionPolicy](https://go.microsoft.com/fwlink/p/?LinkId=389623)

exchange/exchange-ps/exchange/mail-flow/Set-RemoteDomain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ The AllowedOOFType parameter specifies the type of automatic replies or out-of-o
108108
109109
- ExternalLegacy: Only external automatic replies or automatic replies that aren't designated as internal or external are sent to recipients in the remote domain.
110110
111-
- InternalLegacy: Only internal automatic replies or automatic replies that aren't designated as internal or external are sent to recipients in the remote domain.
111+
- InternalLegacy: Only internal automatic replies or automatic replies that aren't designated as internal or external are sent to recipients in the remote domain.
112112
113113
- None: No automatic replies are sent to recipients in the remote domain.
114114

exchange/exchange-ps/exchange/policy-and-compliance-audit/New-MailboxAuditLogSearch.md

Lines changed: 74 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,18 @@ For information about the parameter sets in the Syntax section below, see Exchan
2121
## SYNTAX
2222

2323
```
24-
New-MailboxAuditLogSearch [-EndDate <ExDateTime>
25-
-StartDate <ExDateTime> -StatusMailRecipients <MultiValuedProperty> [-Confirm] [-DomainController <Fqdn>]
26-
[-ExternalAccess <$true | $false>] [-LogonTypes <MultiValuedProperty>] [-Mailboxes <MultiValuedProperty>]
27-
[-Name <String>] [-ShowDetails] [-WhatIf] [-Operations <MultiValuedProperty>]
28-
[-HasAttachments <$true | $false>] [<CommonParameters>]
24+
New-MailboxAuditLogSearch -EndDate <ExDateTime> -StartDate <ExDateTime> -StatusMailRecipients <MultiValuedProperty>
25+
[-Confirm]
26+
[-DomainController <Fqdn>]
27+
[-ExternalAccess <$true | $false>]
28+
[-GroupMailbox]
29+
[-HasAttachments <$true | $false>]
30+
[-LogonTypes <MultiValuedProperty>]
31+
[-Mailboxes <MultiValuedProperty>]
32+
[-Name <String>]
33+
[-Operations <MultiValuedProperty>]
34+
[-ShowDetails]
35+
[-WhatIf] [<CommonParameters>]
2936
```
3037

3138
## DESCRIPTION
@@ -88,7 +95,7 @@ Accept wildcard characters: False
8895
```
8996
9097
### -StatusMailRecipients
91-
The StatusMailRecipients parameter specifies the email address of one or more recipients to whom search results are sent by email.
98+
The StatusMailRecipients parameter specifies the email address where the search results are sent. You can specify multiple values separated by commas.
9299
93100
```yaml
94101
Type: MultiValuedProperty
@@ -139,7 +146,11 @@ Accept wildcard characters: False
139146
```
140147
141148
### -ExternalAccess
142-
The ExternalAccess parameter returns only audit log entries for mailbox access by a user outside of your organization. In Exchange Online, use this parameter to return audit log entries for access to a mailbox by Microsoft datacenter administrators.
149+
The ExternalAccess parameter specifies whether to return only audit log entries for mailbox access by users that are outside of your organization. In Exchange Online, this parameter returns audit log entries for mailbox access by Microsoft datacenter administrators. Valid values are:
150+
151+
$true: Audit log entries for mailbox access by external users or Microsoft datacenter administrators are returned.
152+
153+
$false: Audit log entries for mailbox access by external users or Microsoft datacenter administrators are ignored. This is the default value.
143154
144155
```yaml
145156
Type: $true | $false
@@ -153,49 +164,57 @@ Accept pipeline input: False
153164
Accept wildcard characters: False
154165
```
155166
156-
### -LogonTypes
157-
The LogonTypes parameter specifies the type of logons. Valid values include:
158-
159-
- Admin: Audit log entries for mailbox access by administrator logons are returned.
160-
161-
- Delegate: Audit log entries for mailbox access by delegates are returned, including access by users with Full Mailbox Access permission.
167+
### -GroupMailbox
168+
This parameter is available only in the cloud-based service.
162169
163-
- External: For Exchange Online mailboxes, audit log entries for mailbox access by Microsoft datacenter administrators are returned.
164-
165-
- Owner: Audit log entries for mailbox access by the primary mailbox owner are returned. This value requires the ShowDetails switch.
170+
The GroupMailbox switch is required to include Office 365 groups in the search. You don't need to specify a value with this switch.
166171
167172
```yaml
168-
Type: MultiValuedProperty
173+
Type: SwitchParameter
169174
Parameter Sets: (All)
170175
Aliases:
171-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
176+
Applicable: Exchange Online
172177
Required: False
173178
Position: Named
174179
Default value: None
175180
Accept pipeline input: False
176181
Accept wildcard characters: False
177182
```
178183
179-
### -Mailboxes
180-
The Mailboxes parameter specifies one or more mailboxes for which to retrieve mailbox audit log entries. If you don't specify a value, mailbox audit logs for all mailboxes in the Exchange organization are returned.
184+
### -HasAttachments
185+
The HasAttachments parameter filters the search by messages that have attachments. Valid values are:
186+
187+
- $true: Only messages with attachments are included in the search.
188+
189+
- $false: Messages with and without attachments are included in the search.
181190
182191
```yaml
183-
Type: MultiValuedProperty
192+
Type: $true | $false
184193
Parameter Sets: (All)
185194
Aliases:
186-
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
195+
Applicable: Exchange Server 2016, Exchange Server 2019, Exchange Online
187196
Required: False
188197
Position: Named
189198
Default value: None
190199
Accept pipeline input: False
191200
Accept wildcard characters: False
192201
```
193202
194-
### -Name
195-
The Name parameter specifies a name for the search.
203+
### -LogonTypes
204+
The LogonTypes parameter specifies the type of logons. Valid values are:
205+
206+
- Admin: Audit log entries for mailbox access by administrator logons are returned.
207+
208+
- Delegate: Audit log entries for mailbox access by delegates are returned, including access by users with Full Mailbox Access permission.
209+
210+
- External: For Exchange Online mailboxes, audit log entries for mailbox access by Microsoft datacenter administrators are returned.
211+
212+
- Owner: Audit log entries for mailbox access by the primary mailbox owner are returned. This value requires the ShowDetails switch.
213+
214+
You can enter multiple values separated by commas.
196215
197216
```yaml
198-
Type: String
217+
Type: MultiValuedProperty
199218
Parameter Sets: (All)
200219
Aliases:
201220
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
@@ -206,11 +225,15 @@ Accept pipeline input: False
206225
Accept wildcard characters: False
207226
```
208227
209-
### -ShowDetails
210-
The ShowDetails switch specifies that details of each log entry be retrieved. You don't need to specify a value with this switch.
228+
### -Mailboxes
229+
The Mailboxes parameter specifies the mailbox to retrieve mailbox audit log entries from.
230+
231+
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\>".
232+
233+
If you don't specify a value, mailbox audit logs for all mailboxes in the organization are returned.
211234
212235
```yaml
213-
Type: SwitchParameter
236+
Type: MultiValuedProperty
214237
Parameter Sets: (All)
215238
Aliases:
216239
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
@@ -221,13 +244,13 @@ Accept pipeline input: False
221244
Accept wildcard characters: False
222245
```
223246
224-
### -WhatIf
225-
The WhatIf switch simulates the actions of the command. You can use this switch to view the changes that would occur without actually applying those changes. You don't need to specify a value with this switch.
247+
### -Name
248+
The Name parameter specifies a name for the search. The maximum length is 64 characters. If the value contains spaces, enclose the value in quotation marks (").
226249
227250
```yaml
228-
Type: SwitchParameter
251+
Type: String
229252
Parameter Sets: (All)
230-
Aliases: wi
253+
Aliases:
231254
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
232255
Required: False
233256
Position: Named
@@ -237,7 +260,7 @@ Accept wildcard characters: False
237260
```
238261
239262
### -Operations
240-
The Operations parameter filters the search results by the operations that are logged by mailbox audit logging. Valid values for this parameter are:
263+
The Operations parameter filters the search results by the operations that are logged by mailbox audit logging. Valid values are:
241264
242265
- Copy
243266
@@ -277,18 +300,29 @@ Accept pipeline input: False
277300
Accept wildcard characters: False
278301
```
279302
280-
### -HasAttachments
281-
The HasAttachments parameter filters the search by messages that have attachments. Valid values are:
303+
### -ShowDetails
304+
The ShowDetails switch specifies that details of each log entry are retrieved. You don't need to specify a value with this switch.
282305
283-
- $true: Only messages with attachments are included in the search.
306+
```yaml
307+
Type: SwitchParameter
308+
Parameter Sets: (All)
309+
Aliases:
310+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
311+
Required: False
312+
Position: Named
313+
Default value: None
314+
Accept pipeline input: False
315+
Accept wildcard characters: False
316+
```
284317
285-
- $false: Messages with and without attachments are included in the search.
318+
### -WhatIf
319+
The WhatIf switch simulates the actions of the command. You can use this switch to view the changes that would occur without actually applying those changes. You don't need to specify a value with this switch.
286320
287321
```yaml
288-
Type: $true | $false
322+
Type: SwitchParameter
289323
Parameter Sets: (All)
290-
Aliases:
291-
Applicable: Exchange Server 2016, Exchange Server 2019, Exchange Online
324+
Aliases: wi
325+
Applicable: Exchange Server 2010, Exchange Server 2013, Exchange Server 2016, Exchange Server 2019, Exchange Online
292326
Required: False
293327
Position: Named
294328
Default value: None

0 commit comments

Comments
 (0)