Audit Log Search
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
[crayon–67ee7786e4b0e144984891 inline=“true” ] connect–exchangeonline $mbx = “joe@someaddress.com” $StartDate = (Get–Date).AddDays(–90); $EndDate = (Get–Date) $Records = (Search–UnifiedAuditLog –StartDate $StartDate –EndDate $EndDate –FreeText (Get–Mailbox $mbx).ExchangeGuid –resultsize 20) If (!($Records)) { Write–Host “No records found.”; break } Else { Write–Host “Processing” $Records.Count “audit records…” #$Report = [System.Collections.Generic.List[Object]]::new() # Create output file $report = @() ForEach ($Rec in $Records) { $AuditData = ConvertFrom–Json $Rec.Auditdata If ($AuditData.ResultStatus –eq “PartiallySucceeded”) { $EMailSubjects = “*** Not deleted by” + $AuditData.ClientInfoString + ” ***” } Else { $EmailSubjects = $AuditData.AffectedItems.Subject –join “, “ } $ReportLine = [PSCustomObject] @{ TimeStamp = Get–Date($AuditData.CreationTime) –format g User = $AuditData.UserId Action = $AuditData.Operation Test = $Rec.operations Status = $AuditData.ResultStatus Mailbox = $AuditData.MailboxOwnerUPN “Message Subjects” = $EmailSubjects Folder = $AuditData.Folder.Path.Split(“\”)[1] Client = $AuditData.ClientInfoString } $reportline $Report.Add($ReportLine) echo $test } } echo $report $Report | Sort Mailbox | Select Timestamp, Test, Action, User, Mailbox, “Message Subjects“, Folder | Out–GridView #> |
[/crayon]
Sorry! The Author has not filled his profile.