SOLVED

Get All Users from Tenant

Copper Contributor

Kindly share your ideas on how can I get all of the users data from Azure Active Directory and store all of those users to my any SQL database?

2 Replies
best response confirmed by muhammadimran-dev (Copper Contributor)
Solution
You can retrieve the users through the Graph API or Azure AD Powershell.
You can use the command Get-AzureADUser -All $true

You can than transfer that data into an SQL DB
How can I transfer It to SQL DB?
1 best response

Accepted Solutions
best response confirmed by muhammadimran-dev (Copper Contributor)
Solution
You can retrieve the users through the Graph API or Azure AD Powershell.
You can use the command Get-AzureADUser -All $true

You can than transfer that data into an SQL DB

View solution in original post