{% extends "base.html" %} {% block title %}Computers · SD RMM{% endblock %} {% block content %} {% set orgq = ('&org=' ~ sel.id) if sel else '' %}

Computers

Every managed device in {% if sel %}{{ sel.name }}{% else %}the estate{% endif %}, with its health grade from the 8-check posture scorer.

Export to CSV Add devices
{% if saved %}{% endif %}
{% if sel %}{% endif %} {% if applied %}{{ applied }} filter{{ '' if applied == 1 else 's' }} applied ×{% endif %}
0 selected {% if user.is_super_admin %} {% endif %} Last updated {{ now| pt('%b %d, %H:%M') }}
{% for r in rows %} {% else %} {% endfor %}
  Name Operating system Last active IP address EDR Scan engine Detections Updates CPU / RAM / disk Agent Organization
{{ r.grade }} {{ r.agent.hostname }} {% if r.isolated %}isolated{% endif %} {% if r.reboot %}reboot{% endif %} {{ r.os }}
{{ r.os_version }}
{% if r.online %}Online {% else %}{% if r.age_s is none %}never{% elif r.age_s > 86400 %}{{ r.age_s // 86400 }}d ago{% elif r.age_s > 3600 %}{{ r.age_s // 3600 }}h ago{% else %}{{ r.age_s // 60 }}m ago{% endif %}{% endif %} {{ r.ip }} {% if r.edr %}on{% else %}off{% endif %} {%- if not r.av %}unknown {%- elif r.av|lower == 'none' %}no engine {%- else %}{{ r.av }}{% endif %} {% if r.open_det %}{{ r.open_det }}{% else %}0{% endif %} {% if r.sec_pending is none %} {% elif r.sec_pending %}{{ r.sec_pending }} security {% else %}current{% endif %} {{ r.cpu if r.cpu is not none else '–' }}% / {{ r.ram if r.ram is not none else '–' }}% / {{ r.disk if r.disk is not none else '–' }}% {{ r.version }}{% if r.drift %}
latest {{ latest_ver }}
{% endif %}
{{ r.org }}
{% if applied %}No devices match this filter.{% else %}No devices enrolled yet. Deploy an agent ›{% endif %}
{{ rows|length }} of {{ grand }} devices · 0 selected

Health grade comes from the platform's 8-check posture scorer (agent online, agent up to date, EDR enabled, no pending security updates, no reboot pending, no open critical detections, not isolated, no critical/high vulnerabilities). There is no tamper-protection, encryption status or “last user” telemetry in this platform, so those Sophos columns are absent rather than faked. Bulk EDR toggles are super-admin only, matching the single-device control.

{% endblock %}