RedPlug's Tory

 

 

## Exchange 2013, Powershell

## 그룹 명칭

$Name = "Dymailgroup"

## DL 생성 위치

$GroupOU = "redplug.co.kr/Groups"

## 맴버로 포함할 계정위치(하위 OU까지 포함)

$MemberOU = "redplug.co.kr/Users"

 

## 동적그룹 생성, Title 기준 (필요 시 필터 변경)

New-DynamicDistributionGroup -Name $Name -RecipientFilter {(Title -eq '팀장' -or Title -eq '실장')} -OrganizationalUnit $GroupOU -RecipientContainer $MemberOU

 

## 리스트 확인 명령어

$Members = Get-DynamicDistributionGroup -Identity $Name

Get-DynamicDistributionGroup $Members | ForEach {Get-Recipient -RecipientPreviewFilter $_.RecipientFilter -OrganizationalUnit $_.RecipientContainer} | Select DisplayName,PrimarySMTPAddress | Format-Table

Get-DynamicDistributionGroup 으로 명단 확인 시 RecipientContainer적용이 안되서 전체 사서함이  다보이는 경우가 있는데 상기 명령어로 구분해서 확인 가능 (메일 수신 구분까지 확인)