{% extends "base.html" %} {% block title %}Patching · SD RMM{% endblock %} {% block content %}

Patching

Pending OS updates across the fleet. Click a device to scan or apply.

{% if user.is_super_admin %}
⚙️ Auto-patch schedule
{% endif %}
{{ kpis.scanned }}/{{ kpis.devices }}
Devices scanned
{{ kpis.available }}
Updates pending
{{ kpis.security }}
Security updates
{{ kpis.reboots }}
Awaiting reboot
{{ kpis.devices }}
Total devices
{% if rows %} {% for r in rows %} {% if r.st %} {% else %} {% endif %} {% endfor %}
DeviceOrganizationOSAvailableSecurityRebootLast scan (PT)
{{ r.agent.hostname }} {{ r.org_name }} {{ r.agent.os }} {{ r.agent.os_version or '' }}{% if r.st.available %}{{ r.st.available }}{% else %}0{% endif %} {% if r.st.security %}{{ r.st.security }}{% else %}0{% endif %} {% if r.st.reboot_required %}required{% else %}no{% endif %} {{ r.st.last_scan_at| pt('%m-%d %H:%M') }}not scannednever
{% else %}

No devices yet. Once agents (v0.4.5+) check in they report patch status within a few minutes.

{% endif %}
{% endblock %}