Windows Update Failure Alert Notification
This script is designed to run as a scheduled Azure Automation runbook. It scans all Windows Update rings (Windows Update for Business configurations), collects per-device deployment status, and sends an email report when devices are in an error or conflict state. Feature update profiles past or near their end-of-support date are included as warnings. This surfaces silently failing update deployments before they turn into unpatched device populations.
New to runbook deployment? Follow the step-by-step guide from the Deploy to Azure button to the first scheduled run, including granting Graph permissions to the managed identity.
// QUALITY CHECKS
Validation status
Quality checks
All checks pass- ParsePass
- LintPass
- MetadataPass
- Runbook-readyPass
- Module depsPass
Tests run automatically on every change. What does each check mean?
// REQUIRED PERMISSIONS
Microsoft Graph scopes
DeviceManagementConfiguration.Read.AllAllows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups, without a signed-in user.
Mail.SendAllows the app to send mail as the signed-in user, without a signed-in user.
Running this as an Azure Automation runbook? These scopes must be granted to the account's managed identity, which has no portal UI. The deployment walkthrough shows the exact Cloud Shell commands.
// CHANGELOG
Version history
Entry · 01
1.0 - Initial release
// CODE
Source
<#
.TITLE
Windows Update Failure Alert Notification
.SYNOPSIS
Automated runbook that monitors Windows Update ring deployment errors and emails administrators the failing devices.
.DESCRIPTION
This script is designed to run as a scheduled Azure Automation runbook. It scans
all Windows Update rings (Windows Update for Business configurations), collects
per-device deployment status, and sends an email report when devices are in an
error or conflict state. Feature update profiles past or near their end-of-support
date are included as warnings. This surfaces silently failing update deployments
before they turn into unpatched device populations.
.TAGS
Notification
.MINROLE
Intune Administrator
.PERMISSIONS
DeviceManagementConfiguration.Read.All,Mail.Send
.AUTHOR
Ugur Koc
.VERSION
1.0
.CHANGELOG
1.0 - Initial release
.LASTUPDATE
2026-07-20
.EXECUTION
RunbookOnly
.OUTPUT
Email
.SCHEDULE
Weekly
.CATEGORY
Notification
.EXAMPLE
.\windows-update-failure-alert.ps1 -EmailRecipients "admin@company.com" -SenderUPN "intune-alerts@company.com"
Scans update rings and emails the failure report to admin@company.com
.EXAMPLE
.\windows-update-failure-alert.ps1 -EmailRecipients "admin@company.com,ops@company.com" -SenderUPN "intune-alerts@company.com" -AlwaysSend
Sends the report to multiple recipients even when no failures were found
.NOTES
- Requires Microsoft.Graph.Authentication module
- For Azure Automation, configure Managed Identity with the required permissions
- The Automation account's managed identity requires Mail.Send permission for the SenderUPN mailbox
- By default the email is only sent when at least one device error or profile warning exists; use -AlwaysSend for a weekly status mail
- Uses beta Graph endpoints because update ring device statuses are exposed there
- Local interactive sign-in uses the MgGraphCommunity module to avoid the Graph SDK's mandatory WAM broker on Windows
#>
[CmdletBinding()]
param(
[Parameter(Mandatory = $true, HelpMessage = "Comma-separated list of email addresses to send notifications")]
[ValidateNotNullOrEmpty()]
[string]$EmailRecipients,
[Parameter(Mandatory = $true, HelpMessage = "Mailbox UPN used as the notification sender (managed identity needs Mail.Send permission for it)")]
[ValidateNotNullOrEmpty()]
[string]$SenderUPN,
[Parameter(Mandatory = $false, HelpMessage = "Send the report even when no failures were found")]
[switch]$AlwaysSend,
[Parameter(Mandatory = $false, HelpMessage = "Days before feature update end-of-support to include a warning")]
[ValidateRange(1, 730)]
[int]$EndOfSupportWarningDays = 180,
[Parameter(Mandatory = $false, HelpMessage = "Force module installation without prompting")]
[switch]$ForceModuleInstall
)
# ============================================================================
# ENVIRONMENT DETECTION AND SETUP
# ============================================================================
function Initialize-RequiredModule {
param(
[string[]]$ModuleNames,
[bool]$IsAutomationEnvironment,
[bool]$ForceInstall = $false
)
foreach ($ModuleName in $ModuleNames) {
Write-Verbose "Checking module: $ModuleName"
$module = Get-Module -ListAvailable -Name $ModuleName | Select-Object -First 1
if (-not $module) {
if ($IsAutomationEnvironment) {
$errorMessage = @"
Module '$ModuleName' is not available in this Azure Automation Account.
To resolve this issue:
1. Go to Azure Portal
2. Navigate to your Automation Account
3. Go to 'Modules' > 'Browse Gallery'
4. Search for '$ModuleName'
5. Click 'Import' and wait for installation to complete
Required modules for this script:
- Microsoft.Graph.Authentication
"@
throw $errorMessage
}
else {
Write-Information "Module '$ModuleName' not found. Installing..." -InformationAction Continue
if (-not $ForceInstall) {
$response = Read-Host "Install module '$ModuleName'? (Y/N)"
if ($response -notmatch '^[Yy]') {
throw "Module '$ModuleName' is required but installation was declined."
}
}
try {
$isAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
$scope = if ($isAdmin) { "AllUsers" } else { "CurrentUser" }
Install-Module -Name $ModuleName -Scope $scope -Force -AllowClobber -Repository PSGallery
Write-Information "✓ Successfully installed '$ModuleName'" -InformationAction Continue
}
catch {
throw "Failed to install module '$ModuleName': $($_.Exception.Message)"
}
}
}
Import-Module -Name $ModuleName -Force -ErrorAction Stop
}
}
# Detect execution environment
$IsAzureAutomation = $null -ne $PSPrivateMetadata.JobId.Guid
# Initialize required modules
$RequiredModules = @("Microsoft.Graph.Authentication")
# MgGraphCommunity gives WAM-free interactive sign-in for local runs
if (-not $IsAzureAutomation) {
$RequiredModules += "MgGraphCommunity"
}
try {
Initialize-RequiredModule -ModuleNames $RequiredModules -IsAutomationEnvironment $IsAzureAutomation -ForceInstall $ForceModuleInstall
Write-Verbose "✓ All required modules are available"
}
catch {
Write-Error "Module initialization failed: $_"
exit 1
}
# ============================================================================
# AUTHENTICATION
# ============================================================================
try {
if ($IsAzureAutomation) {
Write-Output "Connecting to Microsoft Graph using Managed Identity..."
Connect-MgGraph -Identity -NoWelcome -ErrorAction Stop
}
else {
Write-Information "Connecting to Microsoft Graph..." -InformationAction Continue
$Scopes = @(
"DeviceManagementConfiguration.Read.All",
"Mail.Send"
)
Connect-MgGraphCommunity -Scopes $Scopes -NoWelcome -ErrorAction Stop
}
Write-Information "✓ Successfully connected to Microsoft Graph" -InformationAction Continue
}
catch {
Write-Error "Failed to connect to Microsoft Graph: $($_.Exception.Message)"
exit 1
}
# ============================================================================
# HELPER FUNCTIONS
# ============================================================================
function Get-MgGraphAllPage {
param(
[Parameter(Mandatory = $true)]
[string]$Uri,
[int]$DelayMs = 100
)
$AllResults = @()
$NextLink = $Uri
$RequestCount = 0
do {
try {
if ($RequestCount -gt 0) {
Start-Sleep -Milliseconds $DelayMs
}
$Response = Invoke-MgGraphRequest -Uri $NextLink -Method GET
$RequestCount++
if ($Response.value) {
$AllResults += $Response.value
}
else {
$AllResults += $Response
}
$NextLink = $Response.'@odata.nextLink'
}
catch {
if ($_.Exception.Message -like "*429*" -or $_.Exception.Message -like "*throttled*") {
Write-Information "Rate limit hit, waiting 60 seconds..." -InformationAction Continue
Start-Sleep -Seconds 60
continue
}
Write-Warning "Error fetching data from $NextLink : $($_.Exception.Message)"
break
}
} while ($NextLink)
# Comma keeps PowerShell from unrolling a single-item array on return
return , $AllResults
}
function Send-EmailNotification {
[CmdletBinding(SupportsShouldProcess)]
param(
[string[]]$Recipients,
[string]$Subject,
[string]$Body
)
try {
foreach ($Recipient in $Recipients) {
$Message = @{
subject = $Subject
body = @{
contentType = "HTML"
content = $Body
}
toRecipients = @(
@{
emailAddress = @{
address = $Recipient
}
}
)
}
$RequestBody = @{
message = $Message
} | ConvertTo-Json -Depth 10
if ($PSCmdlet.ShouldProcess($Recipient, "Send Email Notification")) {
$Uri = "https://graph.microsoft.com/v1.0/users/$SenderUPN/sendMail"
Invoke-MgGraphRequest -Uri $Uri -Method POST -Body $RequestBody -ContentType "application/json" | Out-Null
Write-Information "✓ Email sent to $Recipient via Microsoft Graph" -InformationAction Continue
}
}
return $true
}
catch {
Write-Error "Failed to send email notification: $($_.Exception.Message)"
return $false
}
}
# Function creates email content, does not change system state
function New-EmailBody {
param(
[array]$RingErrors,
[array]$ProfileWarnings,
[int]$RingCount
)
$errorRows = ""
foreach ($row in $RingErrors) {
$errorRows += @"
<tr>
<td>$([System.Net.WebUtility]::HtmlEncode($row.RingName))</td>
<td>$([System.Net.WebUtility]::HtmlEncode($row.DeviceName))</td>
<td>$([System.Net.WebUtility]::HtmlEncode($row.UserPrincipalName))</td>
<td>$([System.Net.WebUtility]::HtmlEncode($row.Status))</td>
<td>$([System.Net.WebUtility]::HtmlEncode([string]$row.LastReported))</td>
</tr>
"@
}
$warningRows = ""
foreach ($row in $ProfileWarnings) {
$warningRows += @"
<tr>
<td>$([System.Net.WebUtility]::HtmlEncode($row.ProfileName))</td>
<td>$([System.Net.WebUtility]::HtmlEncode($row.Warning))</td>
</tr>
"@
}
$errorSection = if ($RingErrors.Count -gt 0) {
@"
<h3>Devices with update deployment errors ($($RingErrors.Count))</h3>
<table border="1" cellpadding="6" cellspacing="0" style="border-collapse: collapse;">
<tr style="background-color: #f2f2f2;">
<th>Update Ring</th><th>Device</th><th>User</th><th>Status</th><th>Last Reported</th>
</tr>
$errorRows
</table>
"@
}
else {
"<p>No devices are in an error state for any update ring.</p>"
}
$warningSection = if ($ProfileWarnings.Count -gt 0) {
@"
<h3>Feature update profile warnings ($($ProfileWarnings.Count))</h3>
<table border="1" cellpadding="6" cellspacing="0" style="border-collapse: collapse;">
<tr style="background-color: #f2f2f2;">
<th>Profile</th><th>Warning</th>
</tr>
$warningRows
</table>
"@
}
else {
""
}
return @"
<html>
<body style="font-family: Segoe UI, Arial, sans-serif;">
<h2>Windows Update Failure Report</h2>
<p>Generated: $(Get-Date -Format 'yyyy-MM-dd HH:mm') | Update rings scanned: $RingCount</p>
$errorSection
$warningSection
<p style="color: #666; font-size: 12px;">Generated automatically by the IntuneAutomation windows-update-failure-alert runbook.</p>
</body>
</html>
"@
}
# ============================================================================
# MAIN SCRIPT LOGIC
# ============================================================================
try {
Write-Information "Scanning Windows Update rings..." -InformationAction Continue
$allConfigurations = Get-MgGraphAllPage -Uri "https://graph.microsoft.com/beta/deviceManagement/deviceConfigurations"
$updateRings = @($allConfigurations | Where-Object { $_.'@odata.type' -like "*windowsUpdateForBusinessConfiguration" })
Write-Information "✓ Found $($updateRings.Count) update rings" -InformationAction Continue
[System.Collections.Generic.List[Object]]$ringErrors = @()
foreach ($ring in $updateRings) {
$deviceStatuses = Get-MgGraphAllPage -Uri "https://graph.microsoft.com/beta/deviceManagement/deviceConfigurations/$($ring.id)/deviceStatuses"
foreach ($status in @($deviceStatuses)) {
if ($status.status -in @("error", "conflict")) {
$lastReported = if ($status.lastReportedDateTime) { [DateTime]::Parse($status.lastReportedDateTime.ToString()).ToString("yyyy-MM-dd HH:mm") } else { "" }
$ringErrors.Add([PSCustomObject]@{
RingName = $ring.displayName
DeviceName = $status.deviceDisplayName
UserPrincipalName = $status.userPrincipalName
Status = $status.status
LastReported = $lastReported
})
}
}
}
Write-Information "✓ Found $($ringErrors.Count) device error(s) across all rings" -InformationAction Continue
# Feature update profiles near or past end of support
[System.Collections.Generic.List[Object]]$profileWarnings = @()
$featureProfiles = Get-MgGraphAllPage -Uri "https://graph.microsoft.com/beta/deviceManagement/windowsFeatureUpdateProfiles"
foreach ($featureProfile in @($featureProfiles)) {
if (-not $featureProfile.endOfSupportDate) { continue }
$endOfSupport = [DateTime]::Parse($featureProfile.endOfSupportDate.ToString())
$daysLeft = [math]::Round(($endOfSupport - (Get-Date)).TotalDays, 0)
if ($daysLeft -lt 0) {
$profileWarnings.Add([PSCustomObject]@{
ProfileName = $featureProfile.displayName
Warning = "Target version '$($featureProfile.featureUpdateVersion)' is PAST end of support ($($endOfSupport.ToString('yyyy-MM-dd')))"
})
}
elseif ($daysLeft -le $EndOfSupportWarningDays) {
$profileWarnings.Add([PSCustomObject]@{
ProfileName = $featureProfile.displayName
Warning = "Target version '$($featureProfile.featureUpdateVersion)' reaches end of support in $daysLeft days ($($endOfSupport.ToString('yyyy-MM-dd')))"
})
}
}
# ----- Send notification -----
$totalFindings = $ringErrors.Count + $profileWarnings.Count
if ($totalFindings -eq 0 -and -not $AlwaysSend) {
Write-Information "No update failures or profile warnings found - no email sent (use -AlwaysSend for status mails)" -InformationAction Continue
}
else {
$recipients = @($EmailRecipients -split "," | ForEach-Object { $_.Trim() } | Where-Object { $_ })
$subject = if ($totalFindings -gt 0) {
"Intune Alert: $($ringErrors.Count) Windows Update deployment errors"
}
else {
"Intune Status: Windows Update deployments healthy"
}
$body = New-EmailBody -RingErrors @($ringErrors) -ProfileWarnings @($profileWarnings) -RingCount $updateRings.Count
$sendResult = Send-EmailNotification -Recipients $recipients -Subject $subject -Body $body
if (-not $sendResult) {
throw "Email notification failed"
}
}
# Summary
Write-Information "`n========================================" -InformationAction Continue
Write-Information "Windows Update Failure Alert Summary" -InformationAction Continue
Write-Information "========================================" -InformationAction Continue
Write-Information "Update rings scanned: $($updateRings.Count)" -InformationAction Continue
Write-Information "Device errors found: $($ringErrors.Count)" -InformationAction Continue
Write-Information "Profile warnings: $($profileWarnings.Count)" -InformationAction Continue
Write-Information "========================================" -InformationAction Continue
}
catch {
Write-Error "Script execution failed: $($_.Exception.Message)"
exit 1
}
finally {
try {
$null = Disconnect-MgGraph
Write-Information "✓ Disconnected from Microsoft Graph" -InformationAction Continue
}
catch {
Write-Verbose "Graph disconnection completed"
}
}
// NOTES
Author notes
- Requires Microsoft.Graph.Authentication module - For Azure Automation, configure Managed Identity with the required permissions - The Automation account's managed identity requires Mail.Send permission for the SenderUPN mailbox - By default the email is only sent when at least one device error or profile warning exists; use -AlwaysSend for a weekly status mail - Uses beta Graph endpoints because update ring device statuses are exposed there - Local interactive sign-in uses the MgGraphCommunity module to avoid the Graph SDK's mandatory WAM broker on Windows
// RELATED
Scripts that travel together.
Picked by shared tags, category, and script type — nothing magic, just metadata overlap.
App Deployment Failure Alert Notification
This script is designed to run as a scheduled Azure Automation runbook that monitors application deployment status in Microsoft Intune and identifies applications with high failure rates or deployment issues. It tracks deployment success rates, identifies required applications with failures, and sends email notifications to administrators with detailed deployment reports. The script helps maintain application availability and user productivity by proactively alerting on deployment failures and providing actionable insights for remediation.
NotificationApple Token Expiration Alert Notification
This script is designed to run as a scheduled Azure Automation runbook that monitors the expiration status of Apple Device Enrollment Program (DEP) tokens and Apple Push Notification Service (APNS) certificates in Microsoft Intune. When tokens or certificates are approaching expiration or have expired, the script sends email notifications to specified recipients using Microsoft Graph Mail API.
NotificationDevice Compliance Drift Alert Notification
This script is designed to run as a scheduled Azure Automation runbook that monitors device compliance status in Microsoft Intune and identifies devices that have fallen out of compliance. It tracks compliance trends, identifies patterns of compliance deterioration, and sends email notifications to administrators with detailed compliance reports. The script helps maintain security posture by proactively alerting on compliance drift and providing actionable insights for remediation.
Notification