Manually Sync Device with Intune
ps
lists 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 show the Intune MDM agent 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