Forum Discussion
Mar 11, 2021
Get All Users from Tenant
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?
- Mar 11, 2021You 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
Thijs Lecomte
Mar 11, 2021Bronze Contributor
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
You can use the command Get-AzureADUser -All $true
You can than transfer that data into an SQL DB
Mar 14, 2021
How can I transfer It to SQL DB?