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

Deploy Agent

The SD RMM agent does monitoring, EDR telemetry, and read-only command execution today — one lightweight binary, least-privilege, cross-platform. Agent v{{ version }}

{% if orgs and (installers.windows or installers.macos) %}

⚡ One-click onboarding recommended

Pick an organization, download the installer, and run it on the device — it enrolls automatically. No token to copy.


{% if installers.windows %}⊞ Download for Windows {{ installers.windows }} MB{% endif %} {% if installers.macos %} Download for macOS {{ installers.macos }} MB{% endif %}

Each download embeds a fresh single-use enrollment token for the selected org. Windows installs as a SYSTEM task; macOS installs the agent + menu-bar app. Requires admin rights on the target device.

{% endif %}
1

Pick an organization

{% if is_admin %}Open Admin → choose or create an org.{% else %}Ask a super-admin to generate an install token for the org.{% endif %}

2

Generate an install token

On the org page, click Create install token. Tokens are single-use and expiring.

3

Run the one-liner

Paste the token into the command for the target OS below, on the device (Administrator / root).

Windows x64 · ARM64

Installs as a SYSTEM scheduled task. Auto-detects ARM64 vs x64.

powershell -ExecutionPolicy Bypass -Command "& { $env:RMM_TOKEN='<TOKEN>'; irm https://rmm.example.com/static/downloads/install.ps1 | iex }"

macOS Apple Silicon · Intel

Installs as a launchd daemon.

curl -fsSL https://rmm.example.com/static/downloads/install.sh | sudo sh -s -- <TOKEN>

Linux x64 · ARM64 · server / desktop

Installs as a systemd unit running as the least-privilege sd-rmm-agent user.

curl -fsSL https://rmm.example.com/static/downloads/install.sh | sudo sh -s -- <TOKEN>
Windows Server: the Windows x64 build runs on Windows Server 2012 R2, 2016, 2019, 2022, and 2025 (and Windows 10 / 11) — same installer, same SYSTEM scheduled task. Use the ARM64 build only for ARM-based Windows.

Direct downloads

For offline / imaging / MDM deployment. Enroll manually: sd-rmm-agent enroll --server https://rmm.example.com --token <TOKEN>

{% for b in bins %} {% endfor %}
OSArchitectureNotesSize
{{ b.os }} {{ b.arch }} {{ b.note }} {% if b.size_mb %}{{ b.size_mb }} MB{% else %}—{% endif %} Download

Same agent powers the alerting, EDR, and per-device Security tab. The installer above also drops the MeshCentral remote-control agent (joins the “SD Managed” group) so one command delivers monitoring + EDR + remote desktop — one-click remote control from each device page. Set RMM_NO_MESH=1 before running to skip remote control. (Windows, Linux & macOS. On macOS, remote desktop also needs the user to grant Screen Recording + Accessibility permission to the agent.)

{% endblock %}