Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Verify/Check to see if a Configuration Profile has been installed on iPhone

Does anyone know if there's an API to check to see if a particular Configuration Profile has been installed on a iOS device?

Thanks, Cole

like image 925
Cole Avatar asked Feb 03 '10 21:02

Cole


1 Answers

There is no API for that, but there is a workaround based on certificate validation. You have to create a self-signed root certificate and include it into your configuration profile. Then you have to create another certificate signed by this root certificate and include it into your application. When you need to verify if a configuration profile is installed, you may verify if that certificate is trusted. See Apple developer forums for details - https://devforums.apple.com/message/11142#11142

like image 74
Aliaksei Avatar answered Oct 04 '22 03:10

Aliaksei