Manually Sync macOS Device with Intune
In Company Portal, click the ellipses and Check Status or press command+option+S.
To trigger a sync form the CLI, force close the Intune Agent process.
Use ps
liststo list running processes; the -A
flag specifies all running processes. Pipe the output to the grep
command and search for the Intune MDM agent.
ps -A | grep IntuneMdmAgent
This will showconfirms the Intuneagent MDM agentis running in the following location.
/Library/Intune/Microsoft Intune Agent.app/Contents/MacOS/IntuneMdmAgent
Kill the Intune MDM Agent. The agent will automatically restart and trigger a check-in and sync with Intune.
killall IntuneMdmAgent