Office 365 在邮件组中查询用户是否存在

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Office 365 在邮件组中查询用户是否存在相关的知识,希望对你有一定的参考价值。

#region IsIn 判断某个用户是否在邮件组中
Function IsIn([string]$User,[string] $GroupName){
    if($User -eq "" -or $GroupName -eq ""){
        Write-Warning "参数丢失,正确的格式为 IsIn userName GroupName"
        break
    }
    Write-Host "【Start】 Search $user in ("$GroupName ") group"
    $Result = Get-DistributionGroupMember -ResultSize unlimited $GroupName | where {$_.name -eq $User -or $_.PrimarySmtpAddress -eq $user}
    if($Result -eq $null){
        $SubGroups = Get-DistributionGroupMember -ResultSize unlimited $GroupName | where {($_.RecipientType -eq "MailUniversalDistributionGroup") -or ($_.RecipientType -eq "MailUniversalSecurityGroup")} | select name
        if($SubGroups -ne $null){
            ForEach($SubGroup in $SubGroups){
                IsIn $user $SubGroup.name
            }
        }else{
            Write-Host -fore red "$user is not in group ("$GroupName "),"
            $result=Get-Mailbox -Identity $User -errorAction silentlyContinue
            if($result -eq $null){
                Write-Warning "The email account $user is not exist."
                break
            }
        }
    }
    else{
        Write-Host $User "is found in group" $GroupName -foregroundcolor green
    }
}

#Example
IsIn "用户邮箱" "邮件组名称"


#endregion


本文出自 “bxing” 博客,请务必保留此出处http://bxing.blog.51cto.com/1677994/1877927

以上是关于Office 365 在邮件组中查询用户是否存在的主要内容,如果未能解决你的问题,请参考以下文章

易宝典文章——玩转Office 365中的Exchange Online服务 之十六 怎样管理已启用邮件的安全组

Office 365 如何使用powershell查询邮件追踪

将 ucma 3.0 连接到 Office 365

smtpclient.send 在尝试通过 Office 365 发送电子邮件时挂起

Office 365 如何导出用户的邮件到本地

O365 PowerShell Script隔离邮件报告