我们想将管理员组添加为所有其他组的所有者。当我们尝试通过powershell命令添加时,出现以下错误
答案 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
}