Skip to content

Instantly share code, notes, and snippets.

@seyerj
Created May 6, 2024 22:56
Show Gist options
  • Save seyerj/2787f6eae47470616693dc6aabbeaff0 to your computer and use it in GitHub Desktop.
Save seyerj/2787f6eae47470616693dc6aabbeaff0 to your computer and use it in GitHub Desktop.
Get emails of all AD Group Members and send to out-gridview
Get-ADGroupMember -Identity "GroupName" | Get-ADUser -Properties EmailAddress | Select-Object -ExpandProperty EmailAddress | Out-GridView
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment