Files
Intune/intune/Externally Sourced Remediations/Reporting/Get-PendingRebootReport/Detect-PendingRebootReport.ps1
2025-05-19 15:19:36 -04:00

10 lines
307 B
PowerShell

# Check for pending reboot
$pendingReboot = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\RebootPending" -ErrorAction SilentlyContinue
if ($pendingReboot) {
Write-Output "Reboot is pending."
} else {
Write-Output "No reboot pending."
}
Exit 0