2014-08-28 22:04:22
来 源
中存储网
Exchange邮件服务器
查询输出组织内所有组成员为空的通讯组,可用于清理组成员为空的通讯组

查询输出组织内所有组成员为空的通讯组,可用于清理组成员为空的通讯组:

$DistrGroups = Get-DistributionGroup -ResultSize Unlimited
ForEach ($DistrGroup in $DistrGroups) {
if (!$(Get-DistributionGroupMember -Identity $DistrGroup.’DistinguishedName’)) {
Write-Host $DistrGroup.DisplayName “,” $DistrGroup.PrimarySmtpAddress “,” $DistrGroup.ManagedBy
}
}

声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。