Rayfleck
Rayfleck

Reputation: 12106

iPhone Config Utility - show all devices in a provisioning profile

In both XCode and the iPhone Configuration Utility, there is a Provisioning Profiles item that shows at most 2 devices in a provisioning profile. It also says "8 other devices".

Is there any convenient way to find out what those other 8 are (without going back to the provisioning portal?)

enter image description here

Upvotes: 7

Views: 7163

Answers (2)

pigmasha
pigmasha

Reputation: 201

I wrote a small program that shows all installed provision profiles and its devices. Application and source code are available from here

https://github.com/pigmasha/MAProvisions

Application features

  • view all provision profiles installed on your computer
  • select any profile and see its information and its devices list
  • you can add names for your devices UDIDs
  • objective-c note: all controls created programmatically (no .nib, .xib or .storyboard files)

Suggestions will be well received

Upvotes: 1

Vibhor
Vibhor

Reputation: 102

Just open the .mobileprovision file in a text editor. You will see all the UDIDs under ProvisionedDevices key.

Upvotes: 7

Related Questions