-
Notifications
You must be signed in to change notification settings - Fork 574
/
FetchServiceMessagesGraph.ps1
199 lines (182 loc) · 7.5 KB
/
FetchServiceMessagesGraph.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# FetchServiceMessagesGraph.ps1
# Fetch Service Messages from the Microsoft Graph
# https://github.com/12Knocksinna/Office365itpros/blob/master/FetchServiceMessagesGraph.ps1
# Updated 5-Feb-2024 to use the Microsoft Graph PowerShell cmdlets based on the service communications API
Connect-MgGraph -NoWelcome -Scopes ServiceMessage.Read.All
$CSVOutputFile = "c:\temp\MessageCenterPosts.csv"
# Fetch information from Graph
Write-Host "Fetching Microsoft 365 Message Center Notifications..."
[array]$MCPosts = Get-MgServiceAnnouncementMessage -Sort 'LastmodifiedDateTime desc' -All
# And Report what we find
Write-Host "Generating a report..."
$Report = [System.Collections.Generic.List[Object]]::new()
ForEach ($M in $MCPosts) {
[array]$Services = $M.Services
If ([string]::IsNullOrEmpty($M.ActionRequiredByDateTime)) { # No action required date
$ActionRequiredDate = $null
} Else {
$ActionRequiredDate = Get-Date($M.ActionRequiredByDateTime) -format "dd-MMM-yyyy"
}
# Get age of update
$Age = New-TimeSpan($M.LastModifiedDateTime)
$AgeSinceStart = New-TimeSpan($M.StartDateTime)
# Trim the message text
$Body = $M | Select-Object -ExpandProperty Body
$HTML = New-Object -Com "HTMLFile"
$HTML.write([ref]$body.content)
$MCPostText = $HTML.body.innerText
$ReportLine = [PSCustomObject] @{
MessageId = $M.Id
Title = $M.Title
Workloads = ($Services -join ",")
Category = $M.category
'Start Time' = Get-Date($M.StartDateTime) -format "dd-MMM-yyyy HH:mm"
'End Time' = Get-Date($M.EndDateTime) -format "dd-MMM-yyyy HH:mm"
'Last Update' = Get-Date($M.LastModifiedDateTime) -format "dd-MMM-yyyy HH:mm"
'Action Required by' = $ActionRequiredDate
MessageText = $MCPostText
Age = ("{0} days {1} hours" -f $Age.Days.ToString(), $Age.Hours.ToString())
IsRead = $M.ViewPoint.IsRead
IsDismissed = $M.ViewPoint.IsDismissed
MinutesSinceUpdate = $Age.TotalMinutes
MinutesSinceStart = $AgeSinceStart.TotalMinutes
}
$Report.Add($ReportLine) }
$Report | Sort-Object {$_.'Last Update' -as [DateTime]} -Descending | `
Select-Object MessageId, Title, Category, 'Last Update', 'Action Required By', Age | Out-GridView
$Report | Export-CSV -NoTypeInformation $CSVOutputFile
Clear-Host
# Figure out how many MC posts are for each workload
[int]$TeamsMC = 0; [int]$ExchangeMC = 0; [int]$SharePointMC = 0; [int]$OtherMC = 0
[int]$StreamMC = 0; [int]$PlannerDelays = 0; [int]$IntuneMC = 0; [int]$OneDriveMC = 0; [int]$WebAppsMC = 0
[int]$VivaMC = 0; [int]$M365AppsMC = 0; [int]$M365SuiteMC = 0; [int]$DefenderMC = 0
ForEach ($R in $Report) {
Switch -wildcard ($R.Workloads) {
"*Teams*" {
$TeamsMC++
}
"Exchange*" {
$ExchangeMC++
}
"SharePoint*" {
$SharePointMC++
}
"*Viva*" {
$VivaMC++
}
"Microsoft 365 apps" {
$M365AppsMC++
}
"*Stream*" {
$StreamMC++
}
"*Defender*" {
$DefenderMC++
}
"*Planner*" {
$PlannerMC++
}
"*OneDrive*" {
$OneDriveMC++
}
"Microsoft 365 suite" {
$M365SuiteMC++
}
"*Intune*" {
$IntuneMC++
}
"*web*" {
$WebAppsMC++
}
Default {
$OtherMC++
}
}
}
# Figure out delays
$DelayedPosts = $Report | Where-Object {$_.Title -like "*(Updated)*"}
[int]$TeamsDelays = 0; [int]$ExchangeDelays = 0; [int]$SharePointDelays = 0; [int]$OtherDelays = 0
[int]$StreamDelays = 0; [int]$PlannerDelays = 0; [int]$IntuneDelays = 0; [int]$OneDriveDelays = 0; [int]$WebAppsDelays = 0
[int]$VivaDelays = 0; [int]$M365AppsDelays = 0; [int]$M365SuiteDelays = 0; [int]$DefenderDelays = 0
ForEach ($Delay in $DelayedPosts) {
Switch -wildcard ($Delay.Workloads) {
"*Teams*" {
$TeamsDelays++
}
"Exchange*" {
$ExchangeDelays++
}
"SharePoint*" {
$SharePointDelays++
}
"*Viva*" {
$VivaDelays++
}
"Microsoft 365 apps" {
$M365AppsDelays++
}
"*Stream*" {
$StreamDelays++
}
"*Defender*" {
$DefenderDelays++
}
"*Planner*" {
$PlannerDelays++
}
"*OneDrive*" {
$OneDriveDelays++
}
"Microsoft 365 suite" {
$M365SuiteDelays++
}
"*Intune*" {
$IntuneDelays++
}
"*web*" {
$WebAppsDelays++
}
Default {
$OtherDelays++
}
}
}
$PercentDelayed = ($DelayedPosts.count/$Report.count).toString('P')
$PercentExchange = ($ExchangeDelays/$ExchangeMC).toString('P')
$PercentIntune = ($IntuneDelays/$IntuneMC).toString('P')
$PercentM365Apps = ($M365AppsDelays/$M365AppsMC).toString('P')
$PercentM365Suite = ($M365SuiteDelays/$M365SuiteMC).toString('P')
$PercentWebApps = ($WebAppsDelays/$WebAppsMC).toString('P')
$PercentDefender = ($DefenderDelays/$DefenderMC).toString('P')
$PercentOneDrive = ($OneDriveDelays/$OneDriveMC).toString('P')
$PercentPlanner = ($PlannerDelays/$PlannerMC).toString('P')
$PercentSharePoint = ($SharePointDelays/$SharePointMC).toString('P')
$PercentStream = ($StreamDelays/$StreamMC).toString('P')
$PercentTeams = ($TeamsDelays/$TeamsMC).toString('P')
$PercentViva = ($VivaDelays/$VivaMC).toString('P')
$PercentOther = ($OtherDelays/$OtherMC).toString('P')
Write-Host ""
Write-Host ("{0} message center posts analyzed - report data is available in {1}." -f $MCPosts.count, $CSVOutputFile)
Write-Host ""
Write-Host ("Number of delayed posts: {0} ({1})" -f $DelayedPosts.count, $PercentDelayed)
Write-Host ""
Write-Host "Delayed Posts by Workload"
Write-Host "-------------------------"
Write-Host ""
Write-Host ("Exchange Online {0} ({1})" -f $ExchangeDelays, $PercentExchange)
Write-Host ("Intune {0} ({1})" -f $IntuneDelays, $PercentIntune)
Write-Host ("Microsoft 365 apps {0} ({1})" -f $M365AppsDelays, $PercentM365Apps)
Write-Host ("Microsoft 365 suite {0} ({1})" -f $M365SuiteDelays, $PercentM365Suite)
Write-Host ("Microsoft 365 for the web {0} ({1})" -f $WebAppsDelays, $PercentWebApps)
Write-Host ("Microsoft Defender {0} ({1})" -f $DefenderDelays, $PercentDefender)
Write-Host ("OneDrive for Business {0} ({1})" -f $OneDriveDelays, $PercentOneDrive)
Write-Host ("Planner {0} ({1})" -f $PlannerDelays, $PercentPlanner)
Write-Host ("SharePoint Online {0} ({1})" -f $SharePointDelays, $PercentSharePoint)
Write-Host ("Stream {0} ({1})" -f $StreamDelays, $PercentStream)
Write-Host ("Teams {0} ({1})" -f $TeamsDelays, $PercentTeams)
Write-Host ("Viva {0} ({1})" -f $VivaDelays, $PercentViva)
Write-Host ("Other workloads {0} ({1})" -f $OtherDelays, $PercentOther)
# 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.practical365.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.