Remove-EntraApplicationOwner

从应用程序中删除所有者。

语法

Default (默认值)

Remove-EntraApplicationOwner

    -OwnerId <String>
    -ApplicationId <String>
    [<CommonParameters>]

说明

Remove-EntraApplicationOwner cmdlet 从Microsoft Entra ID中的应用程序中删除所有者。

示例

示例 1:从应用程序中删除所有者

Connect-Entra -Scopes 'Application.ReadWrite.All'
$application = Get-EntraApplication -Filter "DisplayName eq 'Contoso Helpdesk Application'"
$owner = Get-EntraApplicationOwner -ApplicationId $application.Id | Where-Object {$_.userPrincipalName -eq 'SawyerM@contoso.com'}
Remove-EntraApplicationOwner -ApplicationId $application.Id -OwnerId $owner.Id

此示例从指定的应用程序中删除指定的所有者。 可以使用该命令 Get-EntraApplication 获取应用程序 ID。

  • -ApplicationId 参数指定应用程序的唯一标识符。
  • -OwnerId 参数指定所有者的 ID。

参数

-ApplicationId

指定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