Export Group Membership Lists to CSV
Go to START > CONTROL PANEL > ALL CONTROL PANEL ITEMS > ADMINISTRATIVE TOOLS > Active Directory Module for Windows PowerShell
*Note: If you don’t see “Active Directory Module for Windows PowerShell” you will need to install the Remote Server Administration Tools. Download links can be found here:
Alternatively, you can do this in PowerShell directly on the DC
Run the following cmdlet:
Get-ADGroupmember -identity “GROUP NAME” | select name | Export-Csv -path (PATH YOU WANT TO EXPORT CSV TO)
In the following example I used:
Get-ADGroupmember -identity “ADgroup” | select name | Export-Csv -path H:\test\exportgroupmembers.csv