作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经完成了 iOS 设备的 MDM 实现。我想从 MDM 服务器将设备上的应用程序列入黑名单/白名单、安装/卸载应用程序。
我已经阅读了 MDM 协议(protocol)引用文档中的 InstallApplication 和 RemoveApplication 请求。
谁能给我示例,说明如何以 plist 格式发布 InstallApplication 和 RemoveApplication 的请求?
另外,有没有办法通过 MDM 服务器阻止和允许应用程序?
最佳答案
这是 InstallApplication 的示例(来自 here)。
<?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>
<?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>RemoveApplication</string>
<key>Identifier</key>
<string>com.test.test</string>
</dict>
</dict>
</plist>
关于iOS MDM : Is there any way to install uninstall applicatoin on device through MDM server?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26927232/
我是一名优秀的程序员,十分优秀!