AQUILA EDR Mass Deployment Via Microsoft Intune (EXE)

Overview

This guide explains how to install an Endpoint Detection & Response (EDR) solution on all devices managed through Microsoft Intune. The process ensures consistent protection across your organization’s endpoints by using Intune’s Endpoint security policies and app deployment features.

Prerequisites

Before beginning, confirm the following:


Step 1: Prepare the EDR Installer

  1. Obtain the official EDR installation package (MSI) from AQUILA

  2. If the installer is not in .intunewin format, convert it using the Microsoft Win32 Content Prep Tool.

Download tool: GitHub - microsoft/Microsoft-Win32-Content-Prep-Tool: A tool to wrap Win32 App and then it can be uploaded to Intune

Steps for preparing an Installer for Intune (.intunewin format)
Download the Packaging Tool

1. Go to Microsoft’s official download page: Win32 Content Prep Tool (GitHub)

2. Download the ZIP file to your computer.

Screenshot 2025-08-22 071813.png

3. Right-click the ZIP → Extract All…

image.png

4. Choose a location (for example: C:\IntuneWinAppUtil).

image.png

Prepare Your Installer Files
      1. Create a folder for your installer, for example:

        • C:\2. Source\EDR

      2. Place the Master installer inside that folder. Place also here the script files.

        • Master-Installer.ps1

        image.png


         

      3. Create another empty folder where the packaged file will be saved, for example:

        • C:\3. Output

Run the Packaging Tool

1. Go to the folder where you extracted the tool and run it

image.png

2. The tool will ask you a few questions. Enter the following:

image.png

image.png

image.png

image.png


Check the Result

Step 2: Add the EDR App to Intune

Sign in to the Microsoft Intune admin center → https://intune.microsoft.com

image.png

image.png

image.png

1. Select the app type:

2. Upload the prepared installer package. 

image.png

3. Configure App Information: name, description, publisher.

image.png

4. Set Program Install/Uninstall Commands.image.png

powershell.exe -ExecutionPolicy Bypass -File .\Master-Installer.ps1

-Open the PowerShell as Administrator.

-Get the Product Code of Aquila Agent by running this command on PowerShell.

$msiPath = "C:\Path\To\Aquila Agent.msi"
$installer = New-Object -ComObject WindowsInstaller.Installer
$database = $installer.OpenDatabase($msiPath, 0)
$view = $database.OpenView("SELECT Value FROM Property WHERE Property='ProductCode'")
$view.Execute()
$record = $view.Fetch()
$record.StringData(1)

image.png

msiexec /x "{Product Code}" /quiet /norestart

5. Under Requirements, select OS architecture and minimum version.

image.png

6. Add Detection Rules to confirm successful installation. image.png

image.png

Option A: MSI Product Code (recommended if you know it)

Option B: File exists

Option C: Registry key

7. Set Dependencies

image.png

8. Supersedence

image.png

9. Assignments

image.png

10. Review + Create

image.png

Step 3: Monitor Deployment

  1. In the Intune admin center, go to Apps → select your EDR app.

  2. Check Device install status to confirm successful installations.

    image.png

  If you need further assistance, kindly contact our technical support at support@cytechint.com for prompt assistance and guidance.


Revision #21
Created 24 June 2025 07:44:01
Updated 13 January 2026 12:45:21 by Richmond Abella