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

Generating mailbox audit log reports


After you've enabled mailbox audit logging, there are two ways from within the Exchange Management shell that you can search the logs and generate reports. In this recipe, you'll learn how to use both synchronous and asynchronous mailbox audit log searches from the Exchange Management Shell.

How to do it...

  1. To perform a synchronous mailbox audit log search, use the Search-MailboxAuditLog cmdlet. After executing the following command, the results will be displayed in the shell:

    Search-MailboxAuditLog -Identity dsmith -ShowDetails
  2. To perform an asynchronous search, use the New-MailboxAuditLogSearch cmdlet:

    
    New-MailboxAuditLogSearch -Name Search1 `
    -Mailboxes dsmith,bjones `
    -LogonTypes admin,delegate `
    -StartDate 1/1/11 `
    -EndDate 1/15/11 `
    -ShowDetails `
    -StatusMailRecipients [email protected]

The asynchronous search will run in the background, and the results will be sent via e-mail in XML format to address specified with the –StatusMailRecipients cmdlet...