Applies to: Exchange Server 2013
Topic Last Modified: 2012-12-06
Use the Get-MessageTrackingLog cmdlet to search for message delivery information stored in the message tracking log.
For information about the parameter sets in the Syntax section below, see Syntax.
Syntax
Get-MessageTrackingLog [-EventId <String>]
[-InternalMessageId <String>] [-MessageId <String>]
[-MessageSubject <String>] [-Recipients <String[]>]
[-Reference <String>] [-Sender <String>]
[-DomainController <Fqdn>] [-End <DateTime>]
[-ResultSize <Unlimited>] [-Server <ServerIdParameter>]
[-Start <DateTime>]
|
Examples
EXAMPLE 1
This example searches the message tracking logs on the Mailbox server named Mailbox01 for information about all messages sent from March 13, 2013, 09:00 to March 15, 2013, 17:00 by the sender john@contoso.com.
Copy Code | |
---|---|
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2013 09:00:00" -End "03/15/2013 17:00:00" -Sender "john@contoso.com" |
Detailed Description
A unique message tracking log exists for the Transport service on a Mailbox server, for the Mailbox Transport service on a Mailbox server, and on an Edge Transport server. The message tracking log is a comma-separated value (CSV) file that contains detailed information about the history of each email message as it travels through an Exchange server.
The field names displayed in the results from the Get-MessageTrackingLog cmdlet are similar to the actual field names used in the message tracking logs. The differences are:
- The dashes are removed from the field names. For example
internal-message-id is displayed as
InternalMessageId
.
- The date-time field is displayed as
Timestamp
.
- The recipient-address field is displayed as
Recipients
.
- The sender-address field is displayed as
Sender
.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Message tracking" entry in the Mail Flow Permissions topic.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory. |
End |
Optional |
System.DateTime |
The End parameter specifies the end date and time of the date range. Message delivery information is returned up to, but not including, the specified date and time. Use the short date format defined in the Regional Options settings for the computer on which the command is run. For example, if the computer is configured to use the short date format mm/dd/yyyy, enter 03/01/2010 to specify March 1, 2010. 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, you must enclose the argument in quotation marks ("), for example, "10/05/2010 5:00 PM". |
EventId |
Optional |
System.String |
The EventId parameter filters the message tracking log
entries by the value of the EventId field. The
EventId value classifies classify each message event.
Example values include |
InternalMessageId |
Optional |
System.String |
The InternalMessageId parameter filters the message tracking log entries by the value of the InternalMessageId field. The InternalMessageId value is a message identifier that's assigned by the Exchange server that's currently processing the message. The value of the internal-message-id for a specific message is different in the message tracking log of every Exchange server that's involved in the delivery of the message. |
MessageId |
Optional |
System.String |
The MessageId parameter filters the message tracking log
entries by the value of the MessageId field. The value of
MessageId corresponds to the value of the
|
MessageSubject |
Optional |
System.String |
The MessageSubject parameter filters the message tracking
log entries by the value of the message subject. The value of the
MessageSubject parameter automatically supports partial
matches without using wildcards or special characters. For example,
if you specify the MessageSubject value |
Recipients |
Optional |
System.String[] |
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. |
Reference |
Optional |
System.String |
The Reference parameter filters the message tracking log entries by the value of the Reference field. The Reference field contains additional information for specific types of events. For example, the Reference field value for a DSN message tracking entry contains the InternalMessageId value of the message that caused the DSN. For many types of events, the value of Reference is blank. |
ResultSize |
Optional |
Microsoft.Exchange.Data.Unlimited |
The ResultSize parameter specifies the maximum number of
results to return. If you want to return all requests that match
the query, use |
Sender |
Optional |
System.String |
The Sender parameter filters the message tracking log entries by the sender's SMTP email address. |
Server |
Optional |
Microsoft.Exchange.Configuration.Tasks.ServerIdParameter |
The Server parameter specifies the Exchange server on which you want to run this command. You can use any value that uniquely identifies the server. For example:
If you don't use the Server parameter, the command is run on the local server. |
Start |
Optional |
System.DateTime |
The Start parameter specifies the start date and time of the date range. Use the short date format defined in the Regional Options settings for the computer on which the command is run. For example, if the computer is configured to use the short date format mm/dd/yyyy, enter 03/01/2010 to specify March 1, 2010. 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, you must enclose the argument in quotation marks ("), for example, "10/05/2010 5:00 PM". |
Input Types
To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.
Return Types
To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.