How to Deploy Malwarebytes via Intune (Win32 App Packaging Guide)
Malwarebytes for Teams (the business/endpoint version) can be deployed via Intune as a Win32 app. Unlike the consumer version, the business endpoint agent checks in to the Malwarebytes Nebula console for policy and reporting. This guide covers deploying the endpoint agent and connecting it to your Nebula account automatically on install.
Prerequisites
- A Malwarebytes for Teams or Malwarebytes Endpoint Protection licence
- Access to the Malwarebytes Nebula console (cloud.malwarebytes.com)
- Your Nebula Account ID and Group ID - available in the Nebula console under Settings → Software
Download the endpoint agent
Log in to the Nebula console at cloud.malwarebytes.com, go to Settings → Downloads, and download the Windows Endpoint Agent. The filename will be something like MBSetup.exe.
Wrap with the Content Prep Tool
IntuneWinAppUtil.exe -c "C:\AppSource\Malwarebytes" -s "MBSetup.exe" -o "C:\IntunePackages"
Add the app in Intune
- Upload the .intunewin file
- Name: Malwarebytes Endpoint Agent
- Publisher: Malwarebytes Inc.
Install and uninstall commands
The install command links the agent to your Nebula account automatically. Replace YOUR_ACCOUNT_ID and YOUR_GROUP_ID with the values from your Nebula console.
Detection rule
You can also check the Malwarebytes service is registered:
# Detect Malwarebytes endpoint agent
$service = Get-Service -Name "MBAMService" -ErrorAction SilentlyContinue
if ($service) {
Write-Output "Detected: MBAMService status $($service.Status)"
exit 0
} else {
exit 1
}Known gotchas
Devices not appearing in the Nebula console after install
If the device installs successfully but does not appear in Nebula, check the Account ID and Group ID values in the install command. A wrong Account ID means the agent cannot register. Check the Malwarebytes service is running on the device with Get-Service MBAMService.
Conflict with Windows Defender
Malwarebytes Endpoint Protection can be configured to run alongside Windows Defender rather than replace it. The default behaviour depends on your Nebula policy. Check your Nebula policy settings to confirm whether Malwarebytes is set to co-exist with Defender or take over real-time protection.
Malwarebytes flagging legitimate software during deployment
If Malwarebytes is deployed to a device that already has apps installed, it may flag some installers or tools as potentially unwanted programs. This is more common with cracked tools or grey-area software. If you get false positive alerts in Nebula during rollout, check the policy exclusions and add trusted paths where needed.
Frequently Asked Questions
Use the install command: MBSetup.exe /verysilent /sp- /suppressmsgboxes ACCOUNT=YOUR_ACCOUNT_ID GROUP=YOUR_GROUP_ID. Get your IDs from the Nebula console under Settings > Downloads.
Log in to cloud.malwarebytes.com, go to Settings > Downloads. The Account ID and Group ID are shown next to the Windows Endpoint Agent installer download.
Check the Account ID and Group ID in your install command are correct. Also verify the MBAMService is running on the device using Get-Service MBAMService in PowerShell.
Malwarebytes can be configured to co-exist with Defender or replace it for real-time protection. The default behaviour is controlled by your Nebula policy settings.