7,023 questions
Hi,
You can export members on CSV file using powershell command.
Get-AdGroupMember -Identity 'groupName' | Get-AdUser -Properties * | Select Name,SamaccountName | Export-csv -Path D:\Powershell\memberslist.csv -NoTypeInformation
Please don't forget to mark helpful answer as accepted