Hello John,
If you encounter the following error while creating a custom extension attribute:
"Error creating custom extension / "code": "AADB2C90063", "message": "There is a problem with the service."
This typically indicates that the Azure Active Directory Authentication Extensions application is absent in your tenant.
Steps to Verify and Resolve:
- Check for the Application:
- Navigate to Enterprise Applications > All Applications in the Azure portal.
- Search for an application named "Azure Active Directory Authentication Extensions".
- Or you can use the below PowerShell command to check .
Get-MgServicePrincipal
- Or you can use the below PowerShell command to check .
- If the Application is Missing:
- Connect to Microsoft Graph and Create the application using below commands-:
Connect-MgGraph -TenantId <domain>.onmicrosoft.com -Scopes "Application.ReadWrite.All" New-MgServicePrincipal -AppId 99045fe1-7639-4a75-9d4a-577b6ca3810f
After completing these steps, attempt to create the custom extension attribute again. This should resolve the issue.
For reference, here are some screenshots illustrating the process:
If you continue to experience difficulties, please don't hesitate to contact me for further assistance.