Category filter
Configuration profile to disallow account changes on iOS
This document helps you create a configuration profile to disallow account changes on iOS devices.
Administrators can disable account changes on the devices to limit the ability of users to make changes to account configurations. This can help to prevent unauthorized changes to Apple ID, email, contacts, or other account configurations deployed on the device. By disabling account modification, IT administrators or owners of the device can maintain control over the device and ensure that these configurations are not modified if the device is lost or stolen. With Hexnode’s Deploy Custom Configuration feature, you can push a profile to disallow users from making any account modifications on iOS devices.
Disable account modification
Here is the .plist file of a configuration profile to disable account modification on your iOS devices:
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>allowAccountModification</key> <false/> <key>PayloadIdentifier</key> <string>com.example.myrestrictionspayload</string> <key>PayloadType</key> <string>com.apple.applicationaccess</string> <key>PayloadUUID</key> <string>53bec1be-ffec-4f88-acbd-b02aee8f04a9</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Restrictions</string> <key>PayloadIdentifier</key> <string>com.example.myprofile</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>6020206c-12c2-4ada-987a-dd4c560ca73a</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> |
What happens at the device end?
After associating the configuration profile policy on the device, the user will be unable to modify their accounts. For instance, the user cannot make changes to the configured Apple ID from the device settings.