Category filter
Custom configuration profile to set date and time automatically on tvOS devices
Accurate date and time settings are critical to the effective operation of any device, including Apple TV. Setting the wrong date and time on a tvOS device might result in incorrect content availability (updates, apps, streaming services), app functionality issues, or compromise security features like certificate validation and secure connections. It can also cause syncing issues with other devices, such as iPhones, iPads, or Macs, disrupting features like AirPlay, HomeKit, and iCloud syncing. To ensure that the tvOS device sets the date and time automatically based on its current location, users can manually enable the ‘Set Automatically’ feature under Date & Time settings. As an administrator, you can also use a custom configuration profile to achieve the same. Hexnode allows IT admins to remotely deploy this configuration profile to multiple tvOS devices enrolled in the UEM via the Deploy Custom Configuration feature.
Configuration profile to set date and time automatically
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 56 57 58 59 60 61 |
<?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>forceAutomaticDateAndTime</key> <true/> <key>PayloadIdentifier</key> <string>com.example.restrictionspayload</string> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>13brc1be-efwc-4f88-wcbd-b52aee1f02a9</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>com.example.tvosprofile</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>3010216a-12q2-4wda-187a-ed4c540ca73a</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
Set the value of the forceAutomaticDateAndTime
key to true in the configuration profile to set the date and time of the tvOS device automatically based on the current location.
What happens at the device end?
Once the policy and custom configuration are associated, you can navigate to Settings > General > DATE AND TIME to see the Set Automatically feature turned on. The feature can no longer be manually disabled by the user.