我正在尝试在群组中添加用户,但我收到错误:
Add-MsolGroupMember -GroupObjectId $group1.ObjectId -GroupMemberType "User" -GroupMemberObjectId 077cf65b-4b9f-44e4-9f34-6c96a063a0df
答案 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添加成员,如下所示:
有关连接到Exchange online powershell的更多信息,请参阅此link。