3

I'd like to prevent an enterprise iOS app from being removed by users. Apple provides documentation on how to do this for Web Clips, but I'm struggling to find anything related to actual apps. Is it possible? and if so then how to do it?

The ideal solution would involve a setting in the plist installation file, but options involving configuration profiles or an MDM would also work.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Ben Dowling
  • 17,187
  • 8
  • 87
  • 103

3 Answers3

3

The only way I know to prevent apps from being deleted is as follows:

On your iPhone/iPad go to Settings -> General -> Restrictions -> Deleting Apps (off).

You will have to enter a Restrictions Password and turn Restrictions on.

sangony
  • 11,636
  • 4
  • 39
  • 55
1

I am pretty sure it's impossible to prevent deletion of particular apps using public API and MDM.

Actually, I haven't seen solution for this even for private API's.

P.S. sangony is right. Prevetion to delete all apps are the closest you can get. And it's configurable through MDM.

Victor Ronin
  • 22,758
  • 18
  • 92
  • 184
1

I have spent a lot of time on this plist thing but i couldn't find any thing.I assume it's not possible through simple plist setting.

As far as i know for any non jailbroken device is concerned

You can make apps undeletable by making following selections in iOS.

Settings -> General -> Restrictions -> Deleting Apps -> Off

settings

In case of enterprise apps:

You may try creating a custom configuration profile using iPCU(iPhone Configuration utility) or Apple Configurator and install it on multiple devices or you can use enterprise MDM to do this.

FYI:

This feature was introduced in apple iOS 4.3

Durai Amuthan.H
  • 31,670
  • 10
  • 160
  • 241
  • This answer was already given, and isn't really what was being asked anyway. – Andrew Barber Nov 15 '13 at 21:27
  • Hi Andrew I have edited the answer to make it more relevant.I have said my conclusion about the question and How to achieve this in alternative ways using pictures so that anybody can know easily and and I have mentioned of mdm and other mac utilities.Kindly go through it. – Durai Amuthan.H Nov 16 '13 at 06:21
  • 1
    Thanks for the image it was easy to understand – Shajo Aug 14 '14 at 13:28