Articles on: Common Questions

AppConfig compatible MDM configuration (Including JAMF Pro)

You can configure an AppConfig compatible MDM (Like Jamf Pro) to manage your app installation (for com.meetingroom365.app from the App Store)

On iOS, values are obtained from UserDefaults in com.apple.configuration.managed. Intune has also adopted this for iOS device management.

To generate a custom Plist for your display key, and set up a device, start here:

https://generator.appconfig.jamfresearch.com/generator

You'll need our Specfile, from here:

https://www.meetingroom365.com/apps/mr365-appconfig-specfile.xml


The tool should generate a Plist similar to this:

<?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>displayKey</key>
	<string>mydisplaykey</string>
</dict>
</plist>


Using a Domain Key and Device ID instead of a Display Key



If you wish to use the devices page to load a single .plist onto multiple displays, a Domain Key and Device ID should be set in the plist. The Device ID should be dynamic. And, the display key should be left blank.

Example:

<?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>displayKey</key>
<string></string>
<key>displayId</key>
<string>$DEVICENAME</string>
<key>domainKey</key>
<string>therewillbealongstringoflettersandnumbershere</string>
</dict>
</plist>


Then, your devices will appear on the Devices page of the admin portal to be added to Meeting Room 365.

Contact support if you have any questions!

Updated on: 10/09/2024

Was this article helpful?

Share your feedback

Cancel

Thank you!