By leveraging AgileBlue's .pkg version of the Cerulean Agent Mac installer, users can deploy the agent via Microsoft Intune.
Supported Cerulean Agent Versions
- 2304.3.3
Download Your Intune-Compatible Installer
- Log in to the AgileBlue Cerulean AI SecOps Platform
- Navigate to Agents in the left-hand menu
- Identify the Mac installer compatible with your environment:
- Mac Agent Installer: Mac devices with Intel chips (typically devices manufactured in 2020 and earlier)
- Mac ARM Agent Installer: Mac devices with ARM processors (more common)
- Click PKG on the corresponding installer card to download the file
- NOTE: A pop-up will appear that references your API Key. The API Key will be required during the setup of your deployment package.
Create Your Deployment Package
- Log in to your Microsoft Intune Portal
- In the left-hand menu, select Apps
- Click macOS apps then select +Add
- Choose macOS app (PKG) from the app type dropdown and click Select
- Upload the .pkg file downloaded in the previous section
- Fill out the required fields under App information then click Next
- Name: Ex. Cerulean Installer (Mac)
- Description: Ex. Installs the AgileBlue Cerulean Agent on Mac devices
- Publisher: AgileBlue
- Leave Pre-install script blank
- Add the following to Post-install script (be sure to insert your dedicated API Key in place of APIKEYHERE in the final line)
#! /bin/bash#
check if binary is present on system
if [ -f /usr/local/cerulean/cerulean-agent ]; then
exit 0
fi
#perform the installation
max_attempts=10
attempt=1
while true
do
if [ -f /Applications/cerulean-arm.app/Contents/MacOS/mac_arm_installer3 ]; then
break
fi
if [ $attempt -ge $max_attempts ]; then
exit 1
fi
attempt=$((attempt + 1))
sleep 30
done
cd /Applications/cerulean-arm.app/Contents/MacOS
sudo ./mac_arm_installer3 install -a APIKEYHERE -u https://agentapi.agileblue.com - Click Review + save
- Select macOS Monterey 12.0 from the Minimum operating system dropdown then hit Next
- Toggle Ignore app version to No
- Fill out the App bundle ID (CFBundleIdentifier) and App version (CFBundleShortVersionString)
- App bundle ID: com.cerulean-agent
- App version: 2304.3.3
- Assign any device groups intended to receive the Cerulean Agent then select Next
- Review all information for accuracy then click Create
Need Help?
AgileBlue is always here to support you and ensure you are 100% successful. If there are any issues with the installation or if you have any questions, please reach out to AgileBlue Support.
Email: support@agileblue.com
Phone: (216) 606-9400🚨