You can configure Home Screen Layout settings for iPhone, iPad, and Apple TV devices enrolled in a [[mobile device management (MDM)]] solution. [Home Screen Layout MDM payload settings for Apple devices - Apple Support](https://support.apple.com/guide/deployment/home-screen-layout-payload-settings-dep6d9bdb6e8/web) Here is an example of an XML payload ```XML <?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>Dock</key> <array> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.apple.mobilesafari</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.microsoft.Office.Outlook</string> </dict> </array> <key>Pages</key> <array> <array> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.apple.mobileslideshow</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.apple.camera</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.apple.Maps</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.microsoft.Office.Excel</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.microsoft.Office.Word</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.local.procore</string> </dict> <dict> <key>Type</key> <string>Application</string> <key>BundleID</key> <string>com.loupe.PlanGrid</string> </dict> </array> </array> <key>PayloadIdentifier</key> <string>com.example.myhomescreenlayoutpayload</string> <key>PayloadType</key> <string>com.apple.homescreenlayout</string> <key>PayloadUUID</key> <string>f0b2d13e-a985-4264-9901-707feabddfcd</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </array> <key>PayloadDisplayName</key> <string>Home Screen Layout</string> <key>PayloadIdentifier</key> <string>com.example.myprofile</string> <key>PayloadType</key> <string>Configuration</string> <key>PayloadUUID</key> <string>24c41ae0-f8a9-4d9f-a007-d67b0dc15af4</string> <key>PayloadVersion</key> <integer>1</integer> </dict> </plist> ```