Updated check-uptime.ps1

This commit is contained in:
Markus Fleschutz 2024-10-16 10:32:57 +02:00
parent 01af86446e
commit 7a2dfa72ec

View File

@ -47,7 +47,7 @@ try {
$pending = ""
if ($IsLinux) {
if (Test-Path "/var/run/reboot-required") {
$status = "⚠️ "
$status = "⚠️"
$pending = "with pending reboot (found /var/run/reboot-required)"
}
} else {
@ -83,7 +83,7 @@ try {
$reason += ", '...\CurrentControlSet\Services\Netlogon' with 'AvoidSpnSet'"
}
if ($reason -ne "") {
$status = "⚠️ "
$status = "⚠️"
$pending = "with pending reboot ($($reason.substring(2)) in registry)"
}
}