forked from 12Knocksinna/Office365itpros
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReportActivityAlertAuditEvents.PS1
43 lines (40 loc) · 2.2 KB
/
ReportActivityAlertAuditEvents.PS1
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
42
43
# ReportActivityAlertAuditEvents.PS1
# Used as an example in Chapter 20
# https://github.com/12Knocksinna/Office365itpros/blob/master/ReportActivityAlertAuditEvents.PS1
$Records = (Search-UnifiedAuditLog -StartDate (Get-Date).AddDays(-90) -EndDate (Get-Date).AddDays(+1) -RecordType SecurityComplianceAlerts -Formatted -ResultSize 3000)
If ($Records.Count -eq 0) {
Write-Host "No alert audit records found." }
Else {
Write-Host "Processing" $Records.Count "audit records..."
$Report = [System.Collections.Generic.List[Object]]::new()
ForEach ($Rec in $Records) {
$AuditData = ConvertFrom-Json $Rec.Auditdata
$Data = ConvertFrom-Json $Auditdata.data
If ($Rec.Operations -eq "AlertTriggered") {
$ReportLine = [PSCustomObject]@{
TimeStamp = $Rec.CreationDate
User = $Data.f3u
Action = $Data.an
Status = $AuditData.ResultStatus
Severity = $AuditData.Severity
Workload = $AuditData.Source
Operation = $Rec.Operations
Category = $AuditData.Category }
$Report.Add($ReportLine) }
Else {
$ReportLine = [PSCustomObject]@{
TimeStamp = $Rec.CreationDate
User = $Data.eid
Action = $Data.lon
Status = $AuditData.ResultStatus
Severity = $AuditData.Severity
Workload = $AuditData.Source
Operation = $Rec.Operations
Category = $AuditData.Category }
$Report.Add($ReportLine) }
}}
$Report | Select Timestamp, Operation, User, Action
# An example script used to illustrate a concept. More information about the topic can be found in the Office 365 for IT Pros eBook https://gum.co/O365IT/
# and/or a relevant article on https://office365itpros.com or https://www.petri.com. See our post about the Office 365 for IT Pros repository # https://office365itpros.com/office-365-github-repository/ for information about the scripts we write.
# Do not use our scripts in production until you are satisfied that the code meets the need of your organization. Never run any code downloaded from the Internet without
# first validating the code in a non-production environment.