Tuesday, 15 May 2012

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



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

i done mdm implementation ios devices. want blacklist/whitelist, install/uninstall applications on devices mdm server.

i have gone through installapplication , removeapplication requests in mdm protocol reference document.

can give me sample of how post request in plist format installapplication , removeapplication?

also, there way block , allow applications through mdm server?

here illustration of installapplication (from 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>

here illustration of 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>

there no functionality whitelist , blacklist apps. however, can query device list of application , if see blacklisted application can actions.

ios mdm

No comments:

Post a Comment