Category filter
Custom configuration profile to disable Find My options in macOS devices
The Find My feature on your macOS devices can be quite useful if your device goes missing. The feature enables you to view the last known position of your device via iCloud or another linked device, giving you a better chance of finding it.
But if you don’t want others with access to your Apple ID to be able to monitor the Mac, or if you are fixing, selling, or handing down the device, turning off the Find My options could be helpful. IT admins can use a custom configuration profile to disable Find My options on multiple enrolled macOS devices by remotely deploying it using Hexnode’s Deploy Custom Configuration feature.
Configuration profile to disable Find My options
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
<?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>PayloadContent</key> <array> <dict> <key>PayloadDescription</key> <string>Configures restrictions</string> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>com.apple.applicationaccess.796E2CC4-538C-4602-A456-A69B1595474A</string> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>796E2CC4-538C-4602-A456-A69B1595474A</string> <key>PayloadVersion</key> <integer>1</integer> <key>allowFindMyDevice</key> <false/> <key>allowFindMyFriends</key> <false/> <key>allowFindMyFriendsModification</key> <false/> </dict> <dict> <key>DisableFMMiCloudSetting</key> <true/> <key>PayloadDisplayName</key> <string>iCloud Find My setting</string> <key>PayloadIdentifier</key> <string>com.apple.icloud.managed.8719CC23-8374-400B-8256-535672C99D9A</string> <key>PayloadType</key> <string>com.apple.icloud.managed</string> <key>PayloadUUID</key> <string>2729CC23-9774-460G-5156-574672C79H9A</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Find My</string> <key>PayloadIdentifier</key> <string>MacBook.445D8DF4-76B5-46C6-A934-00788DFACB05</string> <key>PayloadRemovalDisallowed</key> <false/> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>174A6965-0E32-4B1A-AB3F-028734772792</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
Successfully deploying the configuration profile enables the following configurations for macOS:
- allowFindMyDevice: If set to false, disables Find My Device in the Find My app.
- allowFindMyFriends: If set to false, disables Find My Friends in the Find My app.
- allowFindMyFriendsModification: If set to false, disables changes to Find My Friends.
- DisableFMMiCloudSetting: If set to true, disables the Find My Mac setting on iCloud. Available on macOS 10.15 and later versions.