Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
14,808 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello expert.
Please help me to export user list from specific azure group including the country name.
Thanks in advance..
You can easily export the list as a csv file with the required attributes by the following procedure
Connect-AzureAD -TenantId <ID>
Get-AzureADGroup | ? {$_.DisplayName -eq "team1"}
Get-AzureADGroup -ObjectId "ID" | Get-AzureADGroupMember | select DisplayName,Country,MailNickName,UserType | Export-Csv -nti list.csv
--please don't forget to upvote
and Accept as answer
if the reply is helpful--
Hello @Manu Philip
The command is working perfectly but it doesn’t export all the users
Exporting only 100 users