gpt4 book ai didi

iOS MDM : Is there any way to install uninstall applicatoin on device through MDM server?

转载 作者:行者123 更新时间:2023-12-01 18:56:09 25 4
gpt4 key购买 nike

我已经完成了 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>

这是 RemoveApplication 的示例
<?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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com