Last active
December 2, 2020 07:50
-
-
Save MacChuck/f49325a0598114511287d19396843985 to your computer and use it in GitHub Desktop.
Disables Find My Mac option in macOS Catalina.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>PayloadDisplayName</key> | |
<string>Restrictions</string> | |
<key>PayloadIdentifier</key> | |
<string>com.github.erikberglund.ProfileCreator.[uuid].com.apple.applicationaccess.[uuid]</string> | |
<key>PayloadType</key> | |
<string>com.apple.applicationaccess</string> | |
<key>PayloadUUID</key> | |
<string>[uuid]</string> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
<key>allowCloudFMM</key> | |
<false/> | |
</dict> | |
<dict> | |
<key>DisableFMMiCloudSetting</key> | |
<true/> | |
<key>PayloadDisplayName</key> | |
<string>iCloud Find My</string> | |
<key>PayloadIdentifier</key> | |
<string>com.github.erikberglund.ProfileCreator.[uuid].com.apple.icloud.managed.[uuid]</string> | |
<key>PayloadOrganization</key> | |
<string></string> | |
<key>PayloadType</key> | |
<string>com.apple.icloud.managed</string> | |
<key>PayloadUUID</key> | |
<string>[uuid]</string> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
</dict> | |
</array> | |
<key>PayloadDisplayName</key> | |
<string>Disable Find my Mac Checkbox</string> | |
<key>PayloadIdentifier</key> | |
<string>com.github.erikberglund.ProfileCreator.[uuid]</string> | |
<key>PayloadOrganization</key> | |
<string>org name</string> | |
<key>PayloadScope</key> | |
<string>System</string> | |
<key>PayloadType</key> | |
<string>Configuration</string> | |
<key>PayloadUUID</key> | |
<string>[uuid]</string> | |
<key>PayloadVersion</key> | |
<integer>1</integer> | |
</dict> | |
</plist> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment