无法将组作为所有者添加到Azure AD中的另一个组

时间:2020-03-11 12:24:33

标签: azure-active-directory

我们想将管理员组添加为所有其他组的所有者。当我们尝试通过powershell命令添加时,出现以下错误

'Group' is invalid for the 'owners' reference

1 个答案:

答案 0 :(得分:0)

当前不支持将一个组作为所有者添加到所有其他组中。

您可以使用Get-AzureADGroupMember来获取组成员的列表,然后让他们将所有成员添加为其他组的所有者。

一个例子:

$adgms = Get-AzureADGroupMember -ObjectId "{objectId of the admin group}" -All $true
foreach($adgm in $adgms){
    Add-AzureADGroupOwner -ObjectId "{objectId of the target group}" -RefObjectId $adgm.ObjectId
}