用于 Intunes iOS sdk 配置的 IntuneMAMConfigurator

pra*_*mbh 7 ios azure-active-directory intune

我正在将 Microsoft Itunes SDK 集成到我的 iOS 应用程序中。该应用程序已包含用于用户身份验证的 Azure AD。但是现在我希望我的应用程序与 Intunes 应用程序进行通信并获取其登录信息。

微软文档已指定正确的步骤,但我仍坚持使用IntuneMAMConfigurator 工具

谁能告诉我如何准确使用这个(IntuneMAMConfigurator)工具?

小智 6

我在 macOS Catalina 上执行文件时遇到问题,我必须首先授予文件执行权限chmod +x IntuneMAMConfigurator,然后使用./IntuneMAMConfigurator -i <path> -e <path>


Pal*_*llu 5

我知道回答这个问题已经晚了,但我遇到了同样的问题,微软的文档对此没有任何帮助。为了帮助其他人,这里有一些步骤。

要运行 IntuneMAMConfigurator,请从 SDK 存储库下载:https://github.com/MicrosoftDocs/IntuneDocs/blob/master/intune/app-sdk-ios.md

不要尝试通过双击打开它,这是行不通的。

打开终端并输入/path/to/IntuneMAMConfigurator -i plistfile -e entitlementfile

/path/to/ :键入 IntuneMAMConfigurator 所在的完整路径。plistfile :复制并粘贴项目的 plist 文件路径 entitlementfile :复制并粘贴权利文件的文件路径。

除此之外,如果您不希望更改现有的 plist 文件,您可以通过以下命令创建新的 plist 文件:

/path/to/IntuneMAMConfigurator -i plistfile -e entitlementfile -o new plistFile
Run Code Online (Sandbox Code Playgroud)