This test is designed to assess the candidate?s in-depth knowledge and practical skills in managing macOS devices using Jamf Pro, with a strong emphasis on security configurations and compliance policies. The test will cover the three primary areas of device management: Mobile Device Management (MDM), Mobile Application Management (MAM), and Endpoint Security.
Example Question:
#!/bin/bash
app="/Applications/Slack.app"
if [ ! -d "$app" ]; then
curl -o /tmp/slack.dmg "https://downloads.slack-edge.com/mac_releases/Slack-4.18.0.dmg"
hdiutil attach /tmp/slack.dmg
cp -R "/Volumes/Slack/Slack.app" /Applications/
hdiutil detach /Volumes/Slack
fi