Category filter
Configuration profile to disable device name modification on Apple TV
By default, Apple TV allows users to change the name of the device, which can lead to inconsistencies and security issues in a shared environment. To prevent this, you can use a custom configuration profile to disable device name modification and deploy this profile to Apple TVs using Hexnode’s Deploy Custom Configuration feature.
Disable device name modification
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 |
<?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>allowDeviceNameModification</key> <false/> <key>PayloadIdentifier</key> <string>com.apple.applicationaccess.656F5687-F0D2-45E8-9A3B-FE7E7366365B</string> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>656F5687-F0D2-45E8-9A3B-FE7E7366365B</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>AppleTV.18993B70-EF43-461C-8AA1-FBC1155B42AE</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>73A18D84-64BF-4CBB-A637-8B3D6223B7A4</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
Need more help?