Alert for machine not restarted for x days
Hi All, is it possible to create an alert where a machine has not been restarted for x days ?
Thanks
Jason
Comments
-
I think it would be possible to great a custom, script-based threshold item. But it would be more manageable, if you used advanced report with a look that displays desktops that haven't rebooted in X days - I currently do this. Then you would just schedule to send that via email when you like.
I have a dashboard with, pending reboots, new agents, no reboot 21 days, last reboot, etc that works well.
DP0 -
Great, i'll look at the reporting solution
0 -
Hey @Jason Lawrence , Sarah from Atera here.
Keep the community posted on how the reports/script-based threshold works for you! Always helpful to hear how Atera clients are utilizing features.
0 -
Hi @Sarah_from_Atera , I can't do the report solution as my plan doesn't include the Advanced Reports :(
I'll see if I can find a way using script-based threshold
0 -
Hey @Jason Lawrence, if you are interested in checking out the Advanced Reporting, check out this demo. You can then upgrade by going to Admin > Subscription.
0 -
Reporting uptime should not be an advanced feature behind a paywall but should be for anyone to use. It is such a basic thing.
1 -
Created a script based threshold profile using the following PS code:
$lastbootuptime = (Get-CimInstance -ClassName Win32_OperatingSystem).LastBootUpTime
$currentdate = Get-Date
$noofdayssincelastbootup = ($currentdate - $lastbootuptime).Days
return $noofdayssincelastbootup
2 -
I'm still getting my head around how script based alerts work - did you set it up like this?
Yup just tried it! Now I'll send a pop-up telling the user to restart asap ; ) too easy.
1 -
Exactly.
Unfortunately if Fast Startup is enabled, which it is by default, then this tells you when the machine last restarted, not when it was last shutdown and powered on by the user. I've decided to disable Fast Startup for all users, using this script, so now I get a true reading of who has not restarted/powered off & on.
$RegistryPath = 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager\Power'
$Name = 'HiberbootEnabled'
$Value = '0'If (-NOT (Test-Path $RegistryPath)) {
New-Item -Path $RegistryPath -Force | Out-Null
}New-ItemProperty -Path $RegistryPath -Name $Name -Value $Value -PropertyType DWORD -Force
2 -
Thanks for the script - I'm finding a bunch of computer's aren't installing updates because fast startup. Users shutdown, but the computer hasn't 'restarted' and they therefore still are being asked to restart.
0
Topics
- All Topics
- 41 Getting started
- 25 Read before posting
- 8 Meet and greet
- 237 General
- 64 News and announcements
- 1 Swag
- 1 Roadmap updates
- 79 Resources
- 12 Knowledge Base
- 16 Webinars
- 1 Shared Script Library
- 2 Blog
- 19 Pro Tips
- 27 Got an idea?
- 3 Atera Academy
- 2 ActionAI
- 1 Copilot
- 140 Remote Monitoring and Management
- 84 Remote Monitoring
- 27 Patch Management
- 105 Professional Services Automation
- 64 Helpdesk
- 17 Billing
- 21 Reporting
- 36 Integrations & add-ons
- 20 Integrations
- 10 Add-ons
- 103 Scripting and automations
- 61 Scripts
- 30 Automations