0

I want to perform mailbox audit search for mailbox owner's actions. I found one command on technet

Search-MailboxAuditLog -Identity firstname.lastname -LogonTypes Owner -ShowDetails -StartDate 11/27/2014 -EndDate 11/27/2012 | Where-Object {$_.Operation -eq "Create"}

I am trying to get output for mailbox owner's action for his mailbox like sent or received mails. Is there any other option to check mailbox owner has sent to or received emails from whom for specific time period? above mentioned command does not give any output

amitsgokhale
  • 21
  • 1
  • 1
  • 2

1 Answers1

1

If you're after a record of messages sent and recieved then get-messagetrackinglog is probably the command you're after.

Paul Haldane
  • 4,517
  • 1
  • 21
  • 32