<!--
{
  "availability" : [
    "macOS: 10.7.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "DeviceManagement",
  "identifier" : "/documentation/DeviceManagement/TimeMachine",
  "metadataVersion" : "0.1.0",
  "role" : "Device Management Profile",
  "symbol" : {
    "kind" : "Device Management Profile",
    "modules" : [
      "Device Management"
    ],
    "preciseIdentifier" : "mdm-profiles:TimeMachine"
  },
  "title" : "TimeMachine"
}
-->

# TimeMachine

The payload that configures Time Machine.

```
object TimeMachine
```

## Discussion

Specify `com.apple.MCX.TimeMachine` as the payload type.

### Profile availability

|||
|--------------------------|-----|
|Device channel            |macOS|
|User channel              |N/A  |
|Allow manual install      |macOS|
|Requires supervision      |N/A  |
|Requires user-approved MDM|N/A  |
|Allowed in user enrollment|N/A  |
|Allow multiple payloads   |N/A  |

### Profile example

```plist
<?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>AutoBackup</key>
            <true/>
            <key>BackupAllVolumes</key>
            <true/>
            <key>BackupDestURL</key>
            <string>server.example.com</string>
            <key>BackupSizeMB</key>
            <integer>1000</integer>
            <key>BackupSkipSys</key>
            <false/>
            <key>MobileBackups</key>
            <true/>
            <key>SkipPaths</key>
            <array>
                <string>/Users/Shared</string>
            </array>
            <key>PayloadIdentifier</key>
            <string>com.example.mytimemachinepayload</string>
            <key>PayloadType</key>
            <string>com.apple.MCX.TimeMachine</string>
            <key>PayloadUUID</key>
            <string>5f0be3a6-c9b8-44db-a2ae-414311772fdb</string>
            <key>PayloadVersion</key>
            <integer>1</integer>
        </dict>
    </array>
    <key>PayloadDisplayName</key>
    <string>Time Machine</string>
    <key>PayloadIdentifier</key>
    <string>com.example.myprofile</string>
    <key>PayloadType</key>
    <string>Configuration</string>
    <key>PayloadUUID</key>
    <string>68ca5f6c-13e8-43c3-b2ee-8bc405f5eed5</string>
    <key>PayloadVersion</key>
    <integer>1</integer>
</dict>
</plist>
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)