在 Office 365 Exchange 中,如何获取现有动态通讯组列表?是否需要 Power Shell?
答案1
您可以通过 Web UI 查看您的组:Exchange 管理中心 -> 收件人 -> 组然后您需要搜索 -> 高级搜索提供收件人类型“动态通讯组”并确定
Powershell 不是必需的,但它是一个不错的选择:您需要按照以下说明连接到 Exchange Online 会话Microsoft Technet 文章。
提供您的 Office365 管理员用户凭据:
$UserCredential = Get-Credential
然后创建一个会话(一行):
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
最后Import-PSSession $Session
当连接问题时Get-DynamicDistributionGroup
,它将为您提供列表。
答案2
您可以使用 Exchange 管理中心查看所有可用的动态通讯组。否则,您可以使用以下 PowerShell 命令。
$Credential=Get-Credential -Credential $null
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $Credential -Authentication Basic -AllowRedirection
Import-PSSession $Session -AllowClobber
Get-DynamicDistributionGroup
无法在 Office 365 管理门户中查看动态通讯组的成员。PowerShell 是查看成员的唯一方式。
https://gallery.technet.microsoft.com/Export-Office-365-Dynamic-7f66e229