我正在研究 MDM 的东西,试图安装具有 MDM 有效负载的配置文件,但它没有安装在设备上。我想从 MDM 服务器执行远程锁定/擦除。任何帮助都非常感谢。请帮我解决这个问题,这是有效载荷内容。
<?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>PayloadContent</key>
<array>
<dict>
<key>AccessRights</key>
<integer>2047</integer>
<key>CheckInURL</key>
<string>https://192.168.1.101:8080/xyz/profile</string>
<key>IdentityCertificateUUID</key>
<string>00000000-0000-0000-0000-000000000000</string>
<key>PayloadDescription</key>
<string>Configures MobileDeviceManagement.</string>
<key>PayloadIdentifier</key>
<string>com.xyz.mdm.mdm1</string>
<key>PayloadOrganization</key>
<string>Xyz</string>
<key>PayloadType</key>
<string>com.apple.mdm</string>
<key>PayloadUUID</key>
<string>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</string>
<key>PayloadVersion</key>
<integer>1</integer>
<key>ServerURL</key>
<string>https://192.168.1.101:8080/xyz/profile</string>
<key>SignMessage</key>
<false/>
<key>Topic</key>
<string>com.apple.mgmt.xyz</string>
<key>UseDevelopmentAPNS</key>
<true/>
</dict>
</array>
<key>PayloadDescription</key>
<string>MDM Profile</string>
<key>PayloadDisplayName</key>
<string>MDM</string>
<key>PayloadIdentifier</key>
<string>com.xyz.mdm</string>
<key>PayloadOrganization</key>
<string>Xyz</string>
<key>PayloadRemovalDisallowed</key>
<false/>
<key>PayloadType</key>
<string>Configuration</string>
<key>PayloadUUID</key>
<string>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</string>
<key>PayloadVersion</key>
<integer>1</integer> </dict> </plist>