Advertisement
Guest User

Untitled

a guest
Apr 24th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. $DG = Get-DistributionGroup | where {
  2.  
  3. $_.Alias -eq 'Moscow_office'-or $_.Alias -eq 'Saratov_office' -or $_.Alias -eq 'Voronezh_office'
  4.  
  5. }
  6.  
  7. $DG | foreach { Get-DistributionGroupMember $_.Alias } | Select Name, DisplayName, PrimarySMTPAddress -Unique | Sort Name
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement