2011-10-27 93 views
1

我正在處理MDM的東西,試圖安裝具有MDM有效負載的配置文件,但沒有安裝在設備上。 我想從MDM服務器執行遠程鎖定/擦除。 任何幫助真的很感激。 請幫我解決這個問題,這裏是Payload內容。MDM有效負載沒有安裝的配置文件

<?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>AccessRights</key> 
      <integer>2047</integer> 
      <key>CheckInURL</key> 
      <string>https://192.168.1.101:8080/xyz/profile</string> 
      <key>IdentityCertificateUUID</key> 
      <string>00000000-0000-0000-0000-000000000000</string> 
      <key>PayloadDescription</key> 
      <string>Configures MobileDeviceManagement.</string> 
      <key>PayloadIdentifier</key> 
      <string>com.xyz.mdm.mdm1</string> 
      <key>PayloadOrganization</key> 
      <string>Xyz</string> 
      <key>PayloadType</key> 
      <string>com.apple.mdm</string> 
      <key>PayloadUUID</key> 
      <string>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</string> 
      <key>PayloadVersion</key> 
      <integer>1</integer> 
      <key>ServerURL</key> 
      <string>https://192.168.1.101:8080/xyz/profile</string> 
      <key>SignMessage</key> 
      <false/> 
      <key>Topic</key> 
      <string>com.apple.mgmt.xyz</string> 
      <key>UseDevelopmentAPNS</key> 
      <true/> 
     </dict> 
    </array> 
    <key>PayloadDescription</key> 
    <string>MDM Profile</string> 
    <key>PayloadDisplayName</key> 
    <string>MDM</string> 
    <key>PayloadIdentifier</key> 
    <string>com.xyz.mdm</string> 
    <key>PayloadOrganization</key> 
    <string>Xyz</string> 
    <key>PayloadRemovalDisallowed</key> 
    <false/> 
    <key>PayloadType</key> 
    <string>Configuration</string> 
    <key>PayloadUUID</key> 
    <string>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</string> 
    <key>PayloadVersion</key> 
    <integer>1</integer> </dict> </plist> 
+1

請提供iPhone上顯示的錯誤消息,以及安裝期間出現在設備控制檯中的任何錯誤。您可以通過將設備連接到計算機並打開「iPhone配置實用程序」來查看設備控制檯。我相信Xcode也有這樣的庫工具。 –

回答

0

是在服務器上打開的必需端口?嘗試使用Apple配置實用程序來創建配置文件。使用該工具選擇證書。如果有任何明顯的錯誤,它將會出錯

4

現在有很多幫助可用於實現MDM。如果您仍然遇到問題,請使用IPCU生成您需要在iOS設備中安裝的mobileconfig配置文件。

通過參考這些鏈接link1,link2,link3link4來驗證以下內容。

  • 請檢查identity.p12和密碼是否正確。
  • 您正在使用的服務器url應該存在。
  • 該主題應該是正確的。
  • APNS證書應採用所需的格式。

請仔細閱讀MDM_Protocol pdf文檔和this_page

相關問題