Applies to: Exchange Server 2013
Topic Last Modified: 2012-11-19
Administrator audit logs contain a record of all the cmdlets and parameters that have been run in the Exchange Management Shell and by the Exchange Administration Center (EAC). They're created on-demand when you run the Administrator audit log report in the EAC, or when you run the New-AdminAuditLogSearch cmdlet in the Shell. For more information about audit logs, see Administrator Audit Logging.
The audit logs are XML files and can contain multiple audit log entries. The following table describes each XML tag and its associated attributes.
Looking for management tasks related to Administrator audit logs? See Manage Administrator Audit Logging.
Audit log XML tags and attributes
Element | Attribute | Description | ||
---|---|---|---|---|
|
|
This is the XML document declaration tag. It's included in every audit log XML file and contains the XML version number and the character encoding value. |
||
|
|
This tag contains all the audit log entries in the XML file. The
There is only one |
||
|
|
This tag contains the audit log entry for an individual cmdlet.
This tag contains the There is one |
||
|
|
This attribute contains the user account of the user who ran the
cmdlet in the |
||
|
|
This attribute contains the name of the cmdlet that was run by
the user in the |
||
|
|
This attribute contains the object that was modified by the
cmdlet specified in the |
||
|
|
This attribute contains the date and time when the cmdlet in the
|
||
|
|
This attribute specifies whether the cmdlet in the
|
||
|
|
This attribute contains the error message generated if the
cmdlet in the |
||
|
|
This attribute contains the server on which the cmdlet specified
in the |
||
|
|
This tag contains all of the parameters specified when the
cmdlet was run. The There is one |
||
|
|
This tag contains an individual parameter that was specified
when the cmdlet was run. This tag contains the There can be multiple |
||
|
|
This attribute contains the name of the parameter that was specified on the cmdlet that was run. |
||
|
|
This attribute contains the value that was provided on the
parameter specified in the |
||
|
|
This tag contains all of the properties that were modified by
the cmdlet that was run. The There is one
|
||
|
|
This tag contains an individual property that was specified when
the cmdlet was run. This tag contains the There can be multiple |
||
|
|
This attribute contains the name of the property that was modified when the cmdlet was run. |
||
|
|
This attribute contains the value that was contained in the
property specified in the |
||
|
|
This attribute contains the value that the property in the
|
Example audit log entry
The following is an example of a typical audit log entry. Based on the information in log entry, we know the following occurred:
- On 10/18/2012 at 3:48 P.M. Pacific Daylight Time (UTC-7), the
user
Administrator
ran the cmdlet Set-Mailbox.
- The two following parameters were provided when the
Set-Mailbox cmdlet was run:
- Identity with a value of
david
- ProhibitSendReceiveQuota with a value of
10GB
- Identity with a value of
- The two following properties on the object
david
were modified:
Note: The modified properties are saved to the audit log because the LogLevel parameter on the Set-AdminAuditLogConfig
cmdlet was set toVerbose
in this example.- ProhibitSendReceiveQuota with a new value of
10GB
, which replaced the old value of35GB
- ProhibitSendReceiveQuota with a new value of
- The operation completed successfully without any errors.
Copy Code | |
---|---|
<?xml version="1.0" encoding="utf-8"?> <SearchResults> <Event Caller="corp.e15a.contoso.com/Users/Administrator" Cmdlet="Set-Mailbox" ObjectModified="corp.e15a.contoso.com/Users/david" RunDate="2012-10-18T15:48:15-07:00" Succeeded="true" Error="None" OriginatingServer="WIN8MBX (15.00.0516.032)"> <CmdletParameters> <Parameter Name="Identity" Value="david" /> <Parameter Name="ProhibitSendReceiveQuota" Value="10 GB (10,737,418,240 bytes)" /> </CmdletParameters> <ModifiedProperties> <Property Name="ProhibitSendReceiveQuota" OldValue="35 GB (37,580,963,840 bytes)" NewValue="10 GB (10,737,418,240 bytes)" /> </ModifiedProperties> </Event> </SearchResults> |