Browse docs

Apple Configurator 2 Configuration

This policy configuration can be used to transfer .mobileconfig files to Apple devices. This can contain, for example, a Wi-Fi connection and the corresponding certificate.

Configuration

To transfer a .mobileconfig file to devices, the corresponding information must be stored and named directly in the Relution configuration.

<?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>
  </array>
 <key>PayloadDescription</key>
 <string>This is an empty configuration file.</string>
 <key>PayloadDisplayName</key>
 <string>Empty configuration</string>
 <key>PayloadIdentifier</key>
 <string>com.example.emptyconfig</string>
 <key>PayloadOrganization</key>
 <string>Your organization</string>
 <key>PayloadType</key>
 <string>Configuration</string>
 <key>PayloadUUID</key>
 <string>YOUR-UNIQUE-UUID</string>
 <key>PayloadVersion</key>
 <integer>1</integer>
</dict>
</plist>

It is not possible to use a mobileconfig file in which multiple configurations are stored.

Top