diff --git a/docs/howitallworks.md b/docs/howitallworks.md index 0d842f5e..5957e724 100644 --- a/docs/howitallworks.md +++ b/docs/howitallworks.md @@ -682,6 +682,10 @@ The Tactical RMM server updates an agent's patch list every 8 hours based on the !!!note Currently if the agent is not online at the time the patch policy is set to install, there is no "install as soon as it comes online". +!!!tip + Trying to get reboots to happen at specific times after Windows update? Set your `Reboot After Installation` to: Never
+ Then create a task that reboots at your preferred date/time + ### Log Files You can find 3 sets of detailed logs at `/rmm/api/tacticalrmm/tacticalrmm/private/log`. diff --git a/docs/management_cmds.md b/docs/management_cmds.md index 25373a54..221988d8 100644 --- a/docs/management_cmds.md +++ b/docs/management_cmds.md @@ -158,6 +158,12 @@ Change overdue time on all agents in client named *Example Client* to 14 minutes python manage.py bulk_change_checkin --overdue --client "Example Client" 14 ``` +!!!tip + You can cron it on the server to run every 30mins with something like
+ ```bash + */30 * * * * /rmm/api/env/bin/python /rmm/api/tacticalrmm/manage.py bulk_change_checkin --overdue --all 10 > /dev/null 2>&1 + ``` + ### Script based functions [Delete agents by client and site name by API](https://github.com/amidaware/community-scripts/blob/main/scripts_wip/TRMM_Mass_Delete_Agents.ps1)