Remove-EntraGroupOwner
从组中删除所有者。
语法
Default (默认值)
Remove-EntraGroupOwner
-OwnerId <String>
-GroupId <String>
[<CommonParameters>]
说明
该 Remove-EntraGroupOwner cmdlet 从Microsoft Entra ID中的组中删除所有者。 指定要从组中删除所有者的 GroupId 和 OwnerId 参数。
示例
示例 1:删除所有者
Connect-Entra -Scopes 'Group.ReadWrite.All'
$group = Get-EntraGroup -Filter "DisplayName eq 'HelpDesk Team Leaders'"
$groupOwner = Get-EntraGroup -GroupId $group.Id | Get-EntraGroupOwner | Where-Object {$_.displayName -eq 'Adele Vance'}
Remove-EntraGroupOwner -GroupId $group.Id -OwnerId $groupOwner.Id
此示例演示如何从Microsoft Entra ID中的组中删除所有者。
GroupId- 指定Microsoft Entra ID中组的 ID。OwnerId- 指定所有者的 ID。
参数
-GroupId
指定Microsoft Entra ID中的组的 ID。
参数属性
| 类型: | System.String |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
| 别名: | 对象标识符 (ObjectId) |
参数集
(All)
| Position: | Named |
| 必需: | True |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | True |
| 来自剩余参数的值: | False |
-OwnerId
指定所有者的 ID。
参数属性
| 类型: | System.String |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
参数集
(All)
| Position: | Named |
| 必需: | True |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | True |
| 来自剩余参数的值: | False |
CommonParameters
此 cmdlet 支持通用参数:-Debug、-ErrorAction、-ErrorVariable、-InformationAction、-InformationVariable、-OutBuffer、-OutVariable、-PipelineVariable、-ProgressAction、-Verbose、-WarningAction 和 -WarningVariable。 有关详细信息,请参阅 about_CommonParameters。