{% extends "base.html" %} {% block title %}Scheduled Tasks · SD RMM{% endblock %} {% block content %} {% include "_security_nav.html" %}

Scheduled Tasks

Run AV scans, patch scans, inventory or triage automatically on a daily/weekly cadence (PT).

{% if saved %}{% endif %}

Add a scheduled task

⚙️ Auto-deploy patches (per-OS) applies OS updates automatically in the chosen window with no per-device approval (the schedule is the authorization) — Windows via WUA, Linux via apt/dnf, macOS via softwareupdate. It can trigger reboots, so choose an off-hours window. Times are Pacific.

Tasks ({{ tasks|length }})

{% if tasks %} {% for t in tasks %} {% endfor %}
NameTaskTargetWhen (PT)Last runStatus
{{ t.name }} {{ types.get(t.ctype, t.ctype) }}{% if t.payload %} ({{ t.payload }}){% endif %} {{ 'All devices' if t.scope=='all' else aname.get(t.scope, t.scope[:12]) }} {{ '%02d:00'|format(t.hour) }} {{ t.cadence }} {{ t.last_run_at| pt('%m-%d %H:%M') if t.last_run_at else '—' }} {{ 'ENABLED' if t.enabled else 'disabled' }}
{% else %}

No scheduled tasks. Add one above — e.g. a nightly full AV scan across all devices at 03:00 UTC.

{% endif %}
{% endblock %}