Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntuneMAMConfigurator for Intunes iOS sdk configuration

I am integrating Microsoft Itunes SDK in my iOS app. The app already include Azure AD for authentication of user. However now I want my app to communicate with Intunes application and fetch its login.

The microsoft documentation has specified proper step however I am stuck with use of IntuneMAMConfigurator tool.

Can anyone tell me how to use this(IntuneMAMConfigurator) tool exactly?

like image 936
prasad nikumbh Avatar asked Mar 07 '23 00:03

prasad nikumbh


2 Answers

I had issues with executing the file on macOS Catalina, I had to first give the file access to execute with chmod +x IntuneMAMConfigurator and then run it with ./IntuneMAMConfigurator -i <path> -e <path>

like image 83
Skyria Avatar answered Mar 15 '23 08:03

Skyria


I know it's late to answer this question, but I faced the same issue and Microsoft's documentation is no help on this. To help other folks out there here are the steps.

To run IntuneMAMConfigurator, download it from the SDK repo: https://github.com/MicrosoftDocs/IntuneDocs/blob/master/intune/app-sdk-ios.md

Do not try to open it by double click, this won't work.

Open Terminal and type /path/to/IntuneMAMConfigurator -i plistfile -e entitlementfile

/path/to/ : Type in the full path where IntuneMAMConfigurator is present. plistfile : Copy and paste the plist file path of your project entitlementfile : Copy and paste the file path of your entitlements file.

In addition to this if you do not want your existing plist file to change you can create a new plist file by following command:

/path/to/IntuneMAMConfigurator -i plistfile -e entitlementfile -o new plistFile
like image 33
Pallavi Srikhakollu Avatar answered Mar 15 '23 09:03

Pallavi Srikhakollu