iOS ScheduleOSUpdateScan MDM命令

时间:2016-07-10 21:00:53

标签: ios mdm

我尝试发送ScheduleOSUpdateScan请求但获取ErrorChain。 知道什么是错的吗?

这是请求:

<plist version="1.0">
  <dict>
    <key>Command</key>
    <dict>
      <key>RequestType</key>
      <string>ScheduleOSUpdateScan</string>
      <key>Force</key>
      <true/>
    </dict>    
  </dict>
</plist>

这是设备响应:

<plist version="1.0">
<dict>
    <key>CommandUUID</key>
    <string>someCommandUUID</string>
    <key>ErrorChain</key>
    <array>
        <dict>
            <key>ErrorCode</key>
            <integer>12021</integer>
            <key>ErrorDomain</key>
            <string>MCMDMErrorDomain</string>
            <key>LocalizedDescription</key>
            <string>“ScheduleOSUpdateScan” is not a valid request type.    </string>
            <key>USEnglishDescription</key>
            <string>“ScheduleOSUpdateScan” is not a valid request type.    </string>
        </dict>
    </array>
    <key>Status</key>
    <string>Error</string>
    <key>UDID</key>
    <string>someUDID</string>
</dict>
    </plist>

1 个答案:

答案 0 :(得分:0)

根据Apple MDM文档:

  

只有经过监督的DEP注册的iOS设备和DEP管理的Macintosh计算机才有资格使用该软件   更新管理。但是,Available DEPUpdates查询可用于非DEP受管设备。

因此,如果您的设备不是DEP注册的设备,则响应将与您给出的相同。