A company is developing a new on-premises desktop application.
The app must be able to access Azure Active Directory (Azure AD) in addition to the on-premises Active
Directory. You need to configure the application.
Which two actions should you perform? Each correct answer presents part of the solution.
A.
Install and run Azure AD Connect
B.
Add an application manifest JSON file to the application and configure the oauth2Permissions section.
C.
Update the application to be multi-tenant.
D.
Update the application to use OAuth 2.0 authentication.
E.
In the Azure Management portal, register the application.
Answer looks wrong to me. I would go for E & either C or D, any ideas?
E is right.
Applications that integrate with Azure Active Directory (AD) must be registered with an Azure AD tenant, providing a persistent identity configuration for the application.
https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-application-manifest
Maybe B + E?
https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-application-manifest
D+E
https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-integrating-applications
The “Azure Active Directory Authentication Library” would need to be included in the application to implement OAuth. I assume that’s what is meant by “update”.
https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-authentication-libraries
Example of how such an app would be developed.
https://github.com/Azure-Samples/active-directory-dotnet-native-desktop