Skip to content

Commit ca5b1b2

Browse files
authored
Update Get-MessageTrackingLog, fix -Recipients wrong description for multiple values
1 parent 2b755d1 commit ca5b1b2

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

exchange/exchange-ps/exchange/Get-MessageTrackingLog.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,13 @@ Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2018 09:00:00" -End "03/1
6464

6565
This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent from March 13, 2018, 09:00 to March 15, 2018, 17:00 by the sender [email protected].
6666

67+
### Example 2
68+
```powershell
69+
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2018 09:00:00" -Recipients @("[email protected]","[email protected]")
70+
```
71+
72+
This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent since March 13, 2018, 09:00 until now to any of the recipients [email protected] and/or [email protected].
73+
6774
## PARAMETERS
6875

6976
### -DomainController
@@ -169,7 +176,7 @@ Accept wildcard characters: False
169176
```
170177
171178
### -Recipients
172-
The Recipients parameter filters the message tracking log entries by the SMTP email address of the message recipients. Multiple recipients in a single message are logged in a single message tracking log entry. Unexpanded distribution group recipients are logged by using the group's SMTP email address. You can specify multiple recipient email addresses separated by commas.
179+
The Recipients parameter filters the message tracking log entries by the SMTP email address of the message recipients. Multiple recipients in a single message are logged in a single message tracking log entry. Unexpanded distribution group recipients are logged by using the group's SMTP email address. You can specify multiple recipient using an array of email addresses.
173180
174181
```yaml
175182
Type: String[]

0 commit comments

Comments
 (0)