Step 1: Get the Microsoft Defender for Endpoint onboarding package
- In Microsoft 365 Defender, navigate to Settings > Onboarding.
- Select macOS as the operating system and Mobile Device Management / Microsoft Intune as the deployment method.
- Select Download onboarding package (WindowsDefenderATPOnboardingPackage.zip).
- Extract
WindowsDefenderATPOnboardingPackage.zip
. - Copy the file to your preferred location. For example,
C:\Users\JaneDoe_or_JohnDoe.contoso\Downloads\WindowsDefenderATPOnboardingPackage_macOS_MDM_contoso\jamf\WindowsDefenderATPOnboarding.plist
.
Step 2: Create a configuration profile in Jamf Pro using the onboarding package
- Locate the file
WindowsDefenderATPOnboarding.plist
from the previous section. - Sign in to Jamf Pro, navigate to Computers > Configuration Profiles, and select New.
- Enter the following details:
General:
- Name: MDATP onboarding for macOS
- Description: MDATP EDR onboarding for macOS
- Category: None
- Distribution Method: Install Automatically
- Level: Computer Level
- Navigate to the Application & Custom Settings page and select Upload > Add.
- Select Upload File (PLIST file) then in Preference Domain enter:
com.microsoft.wdav.atp
. - Select Open and select the onboarding file.
- Select Upload.
- Select the Scope tab.
- Select the target computers.
- Select Save.
- Select Done.
Step 3: Configure Microsoft Defender for Endpoint settings
You can either use JAMF Pro GUI to edit individual settings of the Microsoft Defender for Endpoint configuration, or use the legacy method by creating a configuration Plist in a text editor, and uploading it to JAMF Pro.
Note that you must use exact com.microsoft.wdav
as the Preference Domain, Microsoft Defender for Endpoint uses only this name and com.microsoft.wdav.ext
to load its managed settings!
(The com.microsoft.wdav.ext
version may be used in rare cases when you prefer to use GUI method, but also need to configure a setting that has not been added to the schema yet.)
GUI method
- Download schema.json file from Defender’s GitHub repository and save it to a local file:
Bash
curl -o ~/Documents/schema.json https://raw.githubusercontent.com/microsoft/mdatp-xplat/master/macos/schema/schema.json
- Create a new Configuration Profile under Computers -> Configuration Profiles, enter the following details on the General tab:
- Name: MDATP MDAV configuration settings
- Description:<blank>
- Category: None (default)
- Level: Computer Level (default)
- Distribution Method: Install Automatically (default)
- Scroll down to the Application & Custom Settings tab, select External Applications, click Add and use Custom Schema as Source to use for the preference domain.
- Enter
com.microsoft.wdav
as the Preference Domain, click on Add Schema and Upload the schema.json file downloaded on Step 1. Click Save. - You can see all supported Microsoft Defender for Endpoint configuration settings below, under Preference Domain Properties. Click Add/Remove properties to select the settings that you want to be managed, and click Ok to save your changes. (Settings left unselected will not be included into the managed configuration, an end user will be able to configure those settings on their machines.)
- Change values of the settings to desired values. You can click More information to get documentation for a particular setting. (You may click Plist preview to inspect what the configuration plist will look like. Click Form editor to return to the visual editor.)
- Select the Scope tab.
- Select Contoso’s Machine Group.
- Select Add, then select Save.
- Select Done. You’ll see the new Configuration profile.
Microsoft Defender for Endpoint adds new settings over time. These new settings will be added to the schema, and a new version will be published to Github. All you need to do to have updates is to download an updated schema, edit existing configuration profile, and Edit schema at the Application & Custom Settings tab.
Legacy method
- Use the following Microsoft Defender for Endpoint configuration settings:
- enableRealTimeProtection
- passiveMode
Note
Not turned on by default, if you are planning to run a third-party AV for macOS, set it to
true
.- exclusions
- excludedPath
- excludedFileExtension
- excludedFileName
- exclusionsMergePolicy
- allowedThreats
Note
EICAR is on the sample, if you are going through a proof-of-concept, remove it especially if you are testing EICAR.
- disallowedThreatActions
- potentially_unwanted_application
- archive_bomb
- cloudService
- automaticSampleSubmission
- tags
- hideStatusMenuIcon
For information, see Property list for JAMF full configuration profile.
XML<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>antivirusEngine</key> <dict> <key>enableRealTimeProtection</key> <true/> <key>passiveMode</key> <false/> <key>exclusions</key> <array> <dict> <key>$type</key> <string>excludedPath</string> <key>isDirectory</key> <false/> <key>path</key> <string>/var/log/system.log</string> </dict> <dict> <key>$type</key> <string>excludedPath</string> <key>isDirectory</key> <true/> <key>path</key> <string>/home</string> </dict> <dict> <key>$type</key> <string>excludedFileExtension</string> <key>extension</key> <string>pdf</string> </dict> <dict> <key>$type</key> <string>excludedFileName</string> <key>name</key> <string>cat</string> </dict> </array> <key>exclusionsMergePolicy</key> <string>merge</string> <key>allowedThreats</key> <array> <string>EICAR-Test-File (not a virus)</string> </array> <key>disallowedThreatActions</key> <array> <string>allow</string> <string>restore</string> </array> <key>threatTypeSettings</key> <array> <dict> <key>key</key> <string>potentially_unwanted_application</string> <key>value</key> <string>block</string> </dict> <dict> <key>key</key> <string>archive_bomb</string> <key>value</key> <string>audit</string> </dict> </array> <key>threatTypeSettingsMergePolicy</key> <string>merge</string> </dict> <key>cloudService</key> <dict> <key>enabled</key> <true/> <key>diagnosticLevel</key> <string>optional</string> <key>automaticSampleSubmission</key> <true/> </dict> <key>edr</key> <dict> <key>tags</key> <array> <dict> <key>key</key> <string>GROUP</string> <key>value</key> <string>ExampleTag</string> </dict> </array> </dict> <key>userInterface</key> <dict> <key>hideStatusMenuIcon</key> <false/> </dict> </dict> </plist>
- Save the file as
MDATP_MDAV_configuration_settings.plist
. - In the Jamf Pro dashboard, open Computers, and there Configuration Profiles. Click *New( and switch to the General tab.
- Enter the following details:
General
- Name: MDATP MDAV configuration settings
- Description:<blank>
- Category: None (default)
- Distribution Method: Install Automatically(default)
- Level: Computer Level(default)
- In Application & Custom Settings select Configure.
- Select Upload File (PLIST file).
- In Preferences Domain, enter
com.microsoft.wdav
, then select Upload PLIST File. - Select Choose File.
- Select the MDATP_MDAV_configuration_settings.plist, then select Open.
- Select Upload.
Note
If you happen to upload the Intune file, you’ll get the following error:
- Select Save.
- The file is uploaded.
- Select the Scope tab.
- Select Contoso’s Machine Group.
- Select Add, then select Save.
- Select Done. You’ll see the new Configuration profile.
Step 4: Configure notifications settings
These steps are applicable of macOS 10.15 (Catalina) or newer.
- In the Jamf Pro dashboard, select Computers, then Configuration Profiles.
- Click New, and enter the following details for Options:
- Tab General:
- Name: MDATP MDAV Notification settings
- Description: macOS 10.15 (Catalina) or newer
- Category: None (default)
- Distribution Method: Install Automatically (default)
- Level: Computer Level (default)
- Tab Notifications, click Add, and enter the following values:
- Bundle ID:
com.microsoft.wdav.tray
- Critical Alerts: Click Disable
- Notifications: Click Enable
- Banner alert type: Select Include and Temporary (default)
- Notifications on lock screen: Click Hide
- Notifications in Notification Center: Click Display
- Badge app icon: Click Display
- Bundle ID:
- Tab Notifications, click Add one more time, scroll down to New Notifications Settings
- Bundle ID:
com.microsoft.autoupdate2
- Configure the rest of the settings to the same values as above
Note that now you have two ‘tables’ with notification configurations, one for Bundle ID: com.microsoft.wdav.tray, and another for Bundle ID: com.microsoft.autoupdate2. While you can configure alert settings per your requirements, Bundle IDs must be exactly the same as described before, and Include switch must be On for Notifications.
- Bundle ID:
- Tab General:
- Select the Scope tab, then select Add.
- Select Contoso’s Machine Group.
- Select Add, then select Save.
- Select Done. You’ll see the new Configuration profile.
Step 5: Configure Microsoft AutoUpdate (MAU)
- Use the following Microsoft Defender for Endpoint configuration settings:
XML
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>ChannelName</key> <string>Current</string> <key>HowToCheck</key> <string>AutomaticDownload</string> <key>EnableCheckForUpdatesButton</key> <true/> <key>DisableInsiderCheckbox</key> <false/> <key>SendAllTelemetryEnabled</key> <true/> </dict> </plist>
- Save it as
MDATP_MDAV_MAU_settings.plist
. - In the Jamf Pro dashboard, select General.
- Enter the following details:
General
- Name: MDATP MDAV MAU settings
- Description: Microsoft AutoUpdate settings for MDATP for macOS
- Category: None (default)
- Distribution Method: Install Automatically(default)
- Level: Computer Level(default)
- In Application & Custom Settings select Configure.
- Select Upload File (PLIST file).
- In Preference Domain enter:
com.microsoft.autoupdate2
, then select Upload PLIST File. - Select Choose File.
- Select MDATP_MDAV_MAU_settings.plist.
- Select Upload.
- Select Save.
- Select the Scope tab.
- Select Add.
- Select Done.
Step 6: Grant full disk access to Microsoft Defender for Endpoint
- In the Jamf Pro dashboard, select Configuration Profiles.
- Select + New.
- Enter the following details:
General
- Name: MDATP MDAV – grant Full Disk Access to EDR and AV
- Description: On macOS Catalina or newer, the new Privacy Preferences Policy Control
- Category: None
- Distribution method: Install Automatically
- Level: Computer level
- In Configure Privacy Preferences Policy Control select Configure.
- In Privacy Preferences Policy Control, enter the following details:
- Identifier:
com.microsoft.wdav
- Identifier Type: Bundle ID
- Code Requirement:
identifier "com.microsoft.wdav" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = UBF8T346G9
- Identifier:
- Select + Add.
- Under App or service: Set to SystemPolicyAllFiles
- Under “access”: Set to Allow
- Select Save (not the one at the bottom right).
- Click the
+
sign next to App Access to add a new entry. - Enter the following details:
- Identifier:
com.microsoft.wdav.epsext
- Identifier Type: Bundle ID
- Code Requirement:
identifier "com.microsoft.wdav.epsext" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = UBF8T346G9
- Identifier:
- Select + Add.
- Under App or service: Set to SystemPolicyAllFiles
- Under “access”: Set to Allow
- Select Save (not the one at the bottom right).
- Select the Scope tab.
- Select + Add.
- Select Computer Groups > under Group Name > select Contoso’s MachineGroup.
- Select Add.
- Select Save.
- Select Done.
Alternatively, you can download fulldisk.mobileconfig and upload it to JAMF Configuration Profiles as described in Deploying Custom Configuration Profiles using Jamf Pro|Method 2: Upload a Configuration Profile to Jamf Pro.
Step 7: Approve Kernel extension for Microsoft Defender for Endpoint
Caution
Apple Silicon (M1) devices do not support KEXT. Installation of a configuration profile consisting KEXT policies will fail on these devices.
- In the Configuration Profiles, select + New.
- Enter the following details:
General
- Name: MDATP MDAV Kernel Extension
- Description: MDATP kernel extension (kext)
- Category: None
- Distribution Method: Install Automatically
- Level: Computer Level
- In Configure Approved Kernel Extensions select Configure.
- In Approved Kernel Extensions Enter the following details:
- Display Name: Microsoft Corp.
- Team ID: UBF8T346G9
- Select the Scope tab.
- Select + Add.
- Select Computer Groups > under Group Name > select Contoso’s Machine Group.
- Select + Add.
- Select Save.
- Select Done.
Alternatively, you can download kext.mobileconfig and upload it to JAMF Configuration Profiles as described in Deploying Custom Configuration Profiles using Jamf Pro|Method 2: Upload a Configuration Profile to Jamf Pro.
Step 8: Approve System extensions for Microsoft Defender for Endpoint
- In the Configuration Profiles, select + New.
- Enter the following details:
General
- Name: MDATP MDAV System Extensions
- Description: MDATP system extensions
- Category: None
- Distribution Method: Install Automatically
- Level: Computer Level
- In System Extensions select Configure.
- In System Extensions enter the following details:
- Display Name: Microsoft Corp. System Extensions
- System Extension Types: Allowed System Extensions
- Team Identifier: UBF8T346G9
- Allowed System Extensions:
- com.microsoft.wdav.epsext
- com.microsoft.wdav.netext
- Select the Scope tab.
- Select + Add.
- Select Computer Groups > under Group Name > select Contoso’s Machine Group.
- Select + Add.
- Select Save.
- Select Done.
Step 9: Configure Network Extension
As part of the Endpoint Detection and Response capabilities, Microsoft Defender for Endpoint on macOS inspects socket traffic and reports this information to the Microsoft Defender Security Center portal. The following policy allows the network extension to perform this functionality.
These steps are applicable of macOS 10.15 (Catalina) or newer.
- In the Jamf Pro dashboard, select Computers, then Configuration Profiles.
- Click New, and enter the following details for Options:
- Tab General:
- Name: Microsoft Defender ATP Network Extension
- Description: macOS 10.15 (Catalina) or newer
- Category: None (default)
- Distribution Method: Install Automatically (default)
- Level: Computer Level (default)
- Tab Content Filter:
- Filter Name: Microsoft Defender ATP Content Filter
- Identifier:
com.microsoft.wdav
- Leave Service Address, Organization, User Name, Password, Certificate blank (Include is not selected)
- Filter Order: Inspector
- Socket Filter:
com.microsoft.wdav.netext
- Socket Filter Designated Requirement:
identifier "com.microsoft.wdav.netext" and anchor apple generic and certificate 1[field.1.2.840.113635.100.6.2.6] /* exists */ and certificate leaf[field.1.2.840.113635.100.6.1.13] /* exists */ and certificate leaf[subject.OU] = UBF8T346G9
- Leave Network Filter fields blank (Include is not selected)
Note that Identifier, Socket Filter and Socket Filter Designated Requirement exact values as specified above.
- Tab General:
Note
Jamf supports built-in content filter settings which can be set directly through the interface.
- Select the Scope tab.
- Select + Add.
- Select Computer Groups > under Group Name > select Contoso’s Machine Group.
- Select + Add.
- Select Save.
- Select Done.
Alternatively, you can download netfilter.mobileconfig and upload it to JAMF Configuration Profiles as described in Deploying Custom Configuration Profiles using Jamf Pro|Method 2: Upload a Configuration Profile to Jamf Pro.
Step 10: Schedule scans with Microsoft Defender for Endpoint on macOS
Follow the instructions on Schedule scans with Microsoft Defender for Endpoint on macOS.
Step 11: Deploy Microsoft Defender for Endpoint on macOS
- Navigate to where you saved
wdav.pkg
. - Rename it to
wdav_MDM_Contoso_200329.pkg
. - Open the Jamf Pro dashboard.
- Select your computer and click the gear icon at the top, then select Computer Management.
- In Packages, select + New.
- In New Package Enter the following details:
General tab
- Display Name: Leave it blank for now. Because it will be reset when you choose your pkg.
- Category: None (default)
- Filename: Choose File
Open the file and point it to
wdav.pkg
orwdav_MDM_Contoso_200329.pkg
. - Select Open. Set the Display Name to Microsoft Defender Advanced Threat Protection and Microsoft Defender Antivirus.
Manifest File is not required. Microsoft Defender for Endpoint works without Manifest File.
Options tab: Keep default values.
Limitations tab: Keep default values.
- Select Save. The package is uploaded to Jamf Pro.
It can take a few minutes for the package to be available for deployment.
- Navigate to the Policies page.
- Select + New to create a new policy.
- In General Enter the following details:
- Display name: MDATP Onboarding Contoso 200329 v100.86.92 or later
- Select Recurring Check-in.
- Select Save.
- Select Packages > Configure.
- Select the Add button next to Microsoft Defender Advanced Threat Protection and Microsoft Defender Antivirus.
- Select Save.
- Select the Scope tab.
- Select the target computers.
Scope
Select Add.
Self-Service
- Select Done.