Open a terminal
Windows: open PowerShell as administrator. Linux and macOS: open any shell with sudo privileges.
Endpoint & Device Security
Remove local admin rights with one command.
Deploy the Endpoint Privilege Manager agent on Linux, macOS, and Windows. A single installer served over HTTPS from get.epmsegura.cloud detects your platform and applies least privilege in minutes.
# Download and run the Segura EPM installer
$ curl -fsSL https://get.epmsegura.cloud/install | bash
# Download and run the Segura EPM installer
PS C:\> irm https://get.epmsegura.cloud/install | iex
irm is the alias for Invoke-RestMethod and iex for Invoke-Expression — the PowerShell equivalent of curl | bash. No execution policy change is required. The installer prompts for the enrollment key provided by your Segura administrator.
One URL, every platform: https://get.epmsegura.cloud/install detects your OS and installs the matching agent.
The installer handles dependencies, configures the agent, and enrolls the endpoint with your Segura platform.
Windows: open PowerShell as administrator. Linux and macOS: open any shell with sudo privileges.
Paste the curl | bash command — or irm | iex on Windows — and enter your enrollment key when prompted.
Confirm the service is running with segura-epm --version or Get-Service segura-epm. Policies apply on the next sync.
Supported platforms and prerequisites for the EPM agent.
$ curl -fsSL https://get.epmsegura.cloud/install | bash
PS C:\> irm https://get.epmsegura.cloud/install | iexPiping remote scripts straight into a shell should always be a conscious decision. Download the installer and review it before executing.
Download the script, read it with less, then run it locally.
$ curl -fsSL https://get.epmsegura.cloud/install -o epm-install.sh
$ less epm-install.sh
$ bash epm-install.sh
Save the script to disk, review it in Notepad, then execute it.
PS C:\> irm https://get.epmsegura.cloud/install -OutFile epm-install.ps1
PS C:\> notepad epm-install.ps1
PS C:\> .\epm-install.ps1
Check the agent version and service status. Privilege policies start applying as soon as the endpoint syncs with your Segura platform.
$ segura-epm --version
segura-epm 1.4.0 (endpoint-privilege-manager)
$ sudo systemctl status segura-epm
● segura-epm.service - Segura EPM Agent
Active: active (running)
PS C:\> Get-Service segura-epm
Status Name DisplayName
------ ---- -----------
Running segura-epm Segura EPM Agent