Book Image

Microsoft Exchange 2010 PowerShell Cookbook

Book Image

Microsoft Exchange 2010 PowerShell Cookbook

Overview of this book

Table of Contents (22 chapters)
Microsoft Exchange 2010 PowerShell Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Configuring Administrator Audit Logging


Administrator Audit Logging allows you to track which cmdlets are being run within your Exchange organization. The log entries provide details about the cmdlet and parameters used when a command was executed, which objects were affected by the command, and the user who ran the cmdlet. In this recipe, you'll learn how to configure the options used to define the Administrator Audit Logging settings in your environment.

How to do it...

For new installations of Exchange 2010 SP1, Administrator Audit Logging is enabled by default. If you have upgraded to SP1 from the RTM version of Exchange 2010, then you may need to enable Administrator Audit Logging before you can report on which cmdlets are being run within your organization.

  1. To determine the current configuration, use the Get-AdminAuditLogConfig cmdlet:

  2. You can review the output and check the AdminAuditLogEnabled property. If this is set to false, use the Set-AdminAuditLogConfig cmdlet to enable administrator...