苹果 mdm:设备信息命令
我想在 iOS 设备上执行 DeviceInformation
命令。到目前为止,我已经在设备上安装了包含 mdm 有效负载的配置文件。
在设备上执行此命令并将属性返回到 mdm 服务器涉及哪些步骤?
目标是在没有用户交互的情况下完成此操作。
I want to execute the DeviceInformation
command on iOS devices. So far I have a configuration profile with mdm payload installed on the device.
What are the steps involved in executing this command on the device and getting the attributes back to the mdm server?
The objective is to do this with no user interaction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果设备已在您的 MDM 系统中注册,则步骤如下: 1. 使用 APNS 对设备执行 ping 操作,2. 设备请求您的签入 URL,3. 作为响应,您向其提供 DeviceInformation 命令,4. 设备进行检查包含对 DeviceInformation 命令的响应。
If the device is registered with your MDM system, the steps are 1. ping the device using APNS, 2. the device requests your check-in URL, 3. in response, you give it the DeviceInformation command, 4. the device checks back in with the response to the DeviceInformation command.