Operating System Compatibility Matrix

This topic outlines supported operating systems for installing the Ivanti Neurons agent, and the capabilities that are supported by agents installed on these systems.

Revision history

This topic was last updated on September 3, 2026.

Legend

Icon, Supported- Supported: Ivanti provides full technical support for the corresponding OS or application.

Icon, Partially supported- Partially Supported: Ivanti provides full technical support for the corresponding OS or application, however some functionality may be limited and an additional update may be required.

Icon, Not supported- Not Supported: Ivanti does not provide support for the corresponding OS or application. Using the OS or application is not recommended, and may result in various problems.

Neurons Agent

Microsoft Windows

For more information on cipher list for Windows, see Ivanti Neurons TLS 1.2 Configuration.

 

Agent

Distribution

Automation

Connector

Passive Discovery (CSEP)

Deployment

Discovery

Discovery Agentless

Edge Intelligence

Inventory

Patch

Remote Control

Microsoft Windows
10

11

Microsoft Windows Server
2012

2012 R2

2016

2019

2022

2025

ARM64 (Microsoft Windows)

 

11

Microsoft Windows Server Core Edition
2022

For Microsoft Windows 10 and 11, the Ivanti Neurons Agent is only supported on releases that are inside their support window.
For more information about Microsoft support windows, see Product and Services Lifecycle Information.

* Microsoft Windows Server 2012 and 2012 R2 have reached End of Life. You need an additional subscription to be able to receive Microsoft ESU content. Please contact Ivanti Support for more information.

Apple macOS

 

Agent

Automation

Edge Intelligence

Inventory

Patch

Remote Control

11.x

12.x

13.x

14.x

15.x

26.x

An Ivanti Neurons agent that is installed on these operating systems cannot perform Deployment and/or Discovery tasks, however:

  • the Neurons agent can be deployed to devices with these operating systems, using Windows devices with the Neurons agent installed and the Deployment capability enabled. More information about Agent Policy Capabilities.
  • devices with these operating systems can be discovered by Ivanti Neurons for Discovery. More information about Neurons for Discovery.

Linux

 

Agent

Inventory

Patch

Amazon 2023

Amazon v2

Oracle Linux v7

Oracle Linux v8

Oracle Linux v9

Oracle Linux v10

CentOS 7

RHEL v7

RHEL v8

RHEL v9

RHEL v10

Rocky v8

Rocky v9

Rocky v10

SUSE v12

SUSE v15

Ubuntu v20

Ubuntu v22

Ubuntu v24.04

An Ivanti Neurons agent that is installed on these operating systems cannot perform Deployment and/or Discovery tasks, however:

  • the Neurons agent can be deployed to devices with these operating systems, using Windows devices with the Neurons agent installed and the Deployment capability enabled. More information about Agent Policy Capabilities.
  • devices with these operating systems can be discovered by Ivanti Neurons for Discovery. More information about Neurons for Discovery.

CentOS 7, RHEL v7, and Amazon v2 have reached the end of vendor support. As a result, Ivanti will be deprecating support for Amazon v2 on June 30th, 2026, and CentOS 7 and RHEL 7 on December 5th, 2026. Perform certificate updates on the unsupported platform to establish secure connections to Ivanti cloud services. For more information, refer to the Certificate Update for Unsupported Platform section.

Certificate Update for Unsupported Platform

Operating systems that no longer receive updates from their vendors because they have reached end of support may have outdated certificates in their stores. As a result, the Ivanti agent might fail to establish secure connections to Ivanti cloud services unless these certificates are updated.

To update the certificate for an unsupported platform, follow these steps:

  1. Download and curl the certificate: -fsSLO http://crt.sectigo.com/SectigoPublicServerAuthenticationRootR46.crt.

  2. Run the following command to convert the certificate to PEM format.

    openssl x509 -inform DER \
    -in SectigoPublicServerAuthenticationRootR46.crt \
    -outform PEM
    -out sectigo-r46.pem

  3. Verify the converted certificate has a SHA-256 fingerprint. Run the following command to verify the SHA-256 fingerprint:

    openssl x509 -in sectigo-r46.pem -noout -subject -fingerprint -sha256

    After you run the above command, it displays the following fingerprint for verification.

    SHA256 Fingerprint=7B:B6:47:A6:2A:EE:AC:88:BF:25:7A:A5:22:D0:1F:FE:A3:95:E0:AB:45:C7:3F:93:F6:56:54:EC:38:F2:5A:06

  4. Install the certificate to the OS trust store by running the following command.

    sudo cp sectigo-r46.pem /etc/pki/ca-trust/source/anchors/
    sudo update-ca-trust extract

  5. Expose the CA bundle available to OpenSSL using the following commands:

    sudo mkdir -p /etc/ssl
    sudo ln -s /etc/pki/tls/certs/ca-bundle.crt /etc/ssl/cert.pem

  6. Restart the agent service to update the certificate.
    Run the following commands:

    systemctl stop ivanticloudagent.service
    systemctl start ivanticloudagent.service