Add-EntraApplicationOwner
将所有者添加到应用程序。
语法
ByApplicationIdAndOwnerId
Add-EntraApplicationOwner
-ApplicationId <String>
-OwnerId <String>
[<CommonParameters>]
说明
将Add-EntraApplicationOwner所有者添加到Microsoft Entra ID应用程序。 仅支持单个用户。
示例
示例 1:将用户添加为应用程序的所有者
Connect-Entra -Scopes 'Application.ReadWrite.All'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
$user = Get-EntraUser -UserId 'SawyerM@contoso.com'
Add-EntraApplicationOwner -ApplicationId $application.Id -OwnerId $user.Id
此示例演示如何将所有者添加到Microsoft Entra ID中的应用程序。
-
-ApplicationId参数指定应用程序的 ID。 -
-OwnerId参数指定用户的 ID。
参数
-ApplicationId
指定Microsoft Entra ID中应用程序的 ID。
参数属性
| 类型: | System.String |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
| 别名: | 对象标识符 (ObjectId) |
参数集
(All)
| Position: | Named |
| 必需: | True |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | True |
| 来自剩余参数的值: | False |
-OwnerId
指定要作为所有者/管理器/成员分配的Microsoft Entra ID对象的 ID。
参数属性
| 类型: | System.String |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
| 别名: | RefObjectId |
参数集
(All)
| Position: | Named |
| 必需: | True |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | True |
| 来自剩余参数的值: | False |
CommonParameters
此 cmdlet 支持通用参数:-Debug、-ErrorAction、-ErrorVariable、-InformationAction、-InformationVariable、-OutBuffer、-OutVariable、-PipelineVariable、-ProgressAction、-Verbose、-WarningAction 和 -WarningVariable。 有关详细信息,请参阅 about_CommonParameters。