source of azure ad user creation

D01P02 1 Reputation point
2021-07-14T18:22:49.037+00:00

how to find source of azure ad user creation? for example user can be provisioned by an HR cloud solution or directly in Azure AD. Thanks.

Microsoft Security | Microsoft Entra | Microsoft Entra ID
{count} votes

1 answer

Sort by: Most helpful
  1. Marilee Turscak-MSFT 37,206 Reputation points Microsoft Employee Moderator
    2021-07-15T00:08:37.923+00:00

    You can use Powershell to verify see whether the user comes from "Windows Server AD" or "Azure Active Directory."

    Run:

    Get-AzureADUser -All $true  
    

    (You can also filter on other attributes, of course.)

    To get cloud-only users you can run:

    Get-AzureADUser | Where {$_.DirSyncEnabled -ne $true}  
    

    In the portal you can check the Directory synced, Creation type, and Identity issuer columns.

    114783-image.png

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.