Home > front end >  How to find duplicate users from Azure AD?
How to find duplicate users from Azure AD?

Time:03-10

Is there any way to find duplicate users present in Azure AD? How can I find them directly from Azure portal. THanks

CodePudding user response:

You should have criteria based on you can find the dublicate users. Assuming you are trying to find the dublicate user based on employeeId. You can use the Azure Active Directory Module for Windows PowerShell to check Azure AD for duplicate attributes.

Get-AzureADUser -Filter "employeeId  eq 'M10584114'" |Select-Object DisplayName,UserPrincipalName

enter image description here

  • Related