Hi @Evan Becker
Thank you for reaching us!
Use below steps to pull the list of all users with the properties that you are looking for,
- Open Windows PowerShell as administrator.
- Run below commands
- Install-Module AzureAD
- Import-Module AzureAD
- Connect-AzureAD (Enter the global admin credentials when it prompts for credentials)
- Run the command "Get-AzureADUser -All $true | select UserPrincipalName, usertype | Export-Csv c:\Users.csv"
Note: In the last command you can change the properties as per your requirement. This command will pull list of all users from Azure AD you are connected to.
Let me know if you have any further questions on this.
Thanks,
Akhilesh.
If this answers your query, do click Accept Answer
and Yes
for was this answer helpful. And, if you have any further query do let us know.