M365 Audit Scritps & System Reboot Checks
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
$Uptime= get-computerinfo | Select-Object OSUptime
|
||||
if ($Uptime.OsUptime.Days -ge 7){
|
||||
Write-Output "Device has not rebooted on $($Uptime.OsUptime.Days) days, notify user to reboot"
|
||||
Exit 1
|
||||
}else {
|
||||
Write-Output "Device has rebooted $($Uptime.OsUptime.Days) days ago, all good"
|
||||
Exit 0
|
||||
}
|
||||
Reference in New Issue
Block a user