testing errors

This commit is contained in:
2024-02-28 14:04:06 -05:00
parent 5e0e080be5
commit a3bd47580a
+3 -2
View File
@@ -1,7 +1,8 @@
Function Restart-EndpointOnUptime ([int]$MaxUptimeHours) {
# Check the last boot up time
$LastBootUpTime = Get-WmiObject -Class Win32_OperatingSystem | Select-Object -ExpandProperty LastBootUpTime
Try { $LastBootUpTime = Get-WmiObject -Class Win32_OperatingSystem1 -ErrorAction SilentlyContinue | Select-Object -ExpandProperty LastBootUpTime }
Catch { Write-Error $_.Exception.Message }
$LastBootUpTime = [Management.ManagementDateTimeConverter]::ToDateTime($LastBootUpTime)
# Calculate the difference in hours
@@ -13,7 +14,7 @@ Function Restart-EndpointOnUptime ([int]$MaxUptimeHours) {
If ($DifferenceInHours -gt $MaxUptimeHours) {
# Restart the computer
Write-Output "Restarting computer because it has not been restarted in the last ${MaxUptimeHours} hours."
#Restart-Computer
Restart-Computer
} Else {
Write-Output "No need to restart. The last restart was within ${MaxUptimeHours} hours."
}