使用Add-MsolGroupMember在组中添加用户时出错

时间:2017-07-27 08:19:20

标签: powershell azure office365

我正在尝试在群组中添加用户,但我收到错误:

Add-MsolGroupMember -GroupObjectId $group1.ObjectId -GroupMemberType "User" -GroupMemberObjectId 077cf65b-4b9f-44e4-9f34-6c96a063a0df

error message

1 个答案:

答案 0 :(得分:0)

正如bunzab所说,我们应该使用Add-DistributionGroupMember来添加成员。

首先,我们应该连接来交换在线PowerShell:

$UserCredential = Get-Credential
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential $UserCredential -Authentication Basic -AllowRedirection
Import-PSSession $Session

之后,我们可以使用这个powershell添加成员,如下所示: enter image description here enter image description here

有关连接到Exchange online powershell的更多信息,请参阅此link