PowerShell - Get AD Group Members
- Jon Boyette
- Sep 28, 2022
- 1 min read
Save this as a self named .ps1, when ran prompts for the AD group name, and the output folder, the output will lists all the username/display names that are a member of the group
$Group = Read-Host "Enter AD Group name to determine members"
$File = Read-Host "Enter path to export with filename ex c:\temp\adgroupmembers.csv"
Get-ADGroupMember -Identity $Group | Get-ADUser -Properties DisplayName,EmailAddress | Select Name,DisplayName,EmailAddress,SAMAccountName | Export-CSV -Path $File -NoTypeInformation
Comments