ios - MDM payload to wipe an OS X device -
i looking correct payload wipe os x device enrolled through mdm. payload works ios devices , mdm documentation states supported os x devices:
> <?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>command</key> > <dict> > <key>requesttype</key> > <string>erasedevice</string> > </dict> > <key>commanduuid</key> > <string>2349d04b-d0ba-404b-afae-4863f85cbba6</string> > </dict> > </plist>
currently if send payload os x device following error in error chain:
findmymac 'erasedevice' error
any ideas?
in order lock os x device 6 digit pin must provided in payload.
<?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>command</key> <dict> <key>requesttype</key> <string>erasedevice</string> <key>pin</key> <string>123456</string> </dict> <key>commanduuid</key> <string>2349d04b-d0ba-404b-afae-4863f85cbba6</string> </dict> </plist>
Comments
Post a Comment