Apple Configurator 2

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

Configuration

To be able 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>Dies ist eine leere Konfigurationsdatei.</string>
 <key>PayloadDisplayName</key>
 <string>Leere Konfiguration</string>
 <key>PayloadIdentifier</key>
 <string>com.example.emptyconfig</string>
 <key>PayloadOrganization</key>
 <string>Deine Organisation</string>
 <key>PayloadType</key>
 <string>Configuration</string>
 <key>PayloadUUID</key>
 <string>DEINE-EINDEUTIGE-UUID</string>
 <key>PayloadVersion</key>
 <integer>1</integer>
</dict>
</plist>

It is not possible to use a mobileconfig file in which a large number of configurations are stored.

Top