无法在 MDM 中安装应用程序 [英] Installation of an application cannot be performed in MDM

查看:51
本文介绍了无法在 MDM 中安装应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

它是使用 APNs 的 MDM.在组合配置文件中允许添加和删除应用程序.使用iOS5的iPhone.尽管iTunesStore"的免费应用程序"的安装是由 iOS 的 MDM 通过以下方法执行的,但它没有成功.这个方法有没有搞错?请教我正确的方法.

It is MDM using APNs. An addition and deletion of an application are permitted in the composition profile. iPhone of iOS5 is used. It does not succeed, although installation of the "free application" of "iTunesStore" is performed by the following method by MDM of iOS. Has it made a mistake in this method? Please teach me the right method.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN""http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <?xml version="1.0" encoding="UTF-8"?>
    <plist version="1.0">
       <dict>
          <key>CommandUUID</key>
          <string>995761bc0ac0f311452f050a3e4be157ca2dda75</string>
          <key>Command</key>
          <dict>
             <key>RequestType</key>
             <string>InstallApplication</string>
             <key>iTunesStoreID</key>
             <number>338761996</number>
             <key>ManagementFlags</key>
             <integer>1</integer>
          </dict>
       </dict>
    </plist>

推荐答案

number 标签替换为 integer.

    <?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>CommandUUID</key>
              <string>4424F929-BDD2-4D44-B518-393C0DABD56A</string>
              <key>Command</key>
                   <dict>
                        <key>RequestType</key>
                        <string>InstallApplication</string>
                        <key>iTunesStoreID</key>
                        <integer>464656389</integer>
                        <key>ManagementFlags</key>
                        <integer>4</integer>
                   </dict>
         </dict>
    </plist>

这个问题花了我一周时间,直到我意外解决了这个问题.

This problem took me a week until I accidentally figure this out.

这篇关于无法在 MDM 中安装应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆