docs

Apple Configurator 2 Konfiguration

Mit dieser Richtlinien-Konfiguration können .mobileconfig-Dateien auf Apple-Geräte übertragen werden. Diese kann beispielsweise eine WLAN-Verbindung und das entsprechende Zertifikat enthalten.

Konfiguration

Um eine .mobileconfig-Datei auf Geräte übertragen zu können, müssen die entsprechenden Informationen direkt in der Relution-Konfiguration hinterlegt und benannt werden.

<?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>

Es ist nicht möglich, eine mobileconfig-Datei zu verwenden, in der eine Vielzahl an Konfigurationen hinterlegt sind.

Top