你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Add-AzureADServicePrincipalOwner
将所有者添加到服务主体。
语法
Add-AzureADServicePrincipalOwner
-ObjectId <String>
-RefObjectId <String>
[-InformationAction <ActionPreference>]
[-InformationVariable <String>]
[<CommonParameters>]
说明
Add-AzureADServicePrincipalOwner cmdlet 将所有者添加到 Azure Active Directory 中的服务主体。
示例
示例 1:将用户作为所有者添加到服务主体
PS C:\> $ServicePrincipalId = (Get-AzureADServicePrincipal -Top 1).ObjectId
PS C:\> $OwnerId = (Get-AzureADUser -Top 1).ObjectId
PS C:\> Add-AzureADServicePrincipalOwner -ObjectId $ServicePrincipalId -RefObjectId $OwnerId
第一个命令使用 Get-AzureADServicePrincipal (./Get-AzureADServicePrincipal.md) cmdlet 获取服务主体的对象 ID,然后将其存储在 $ServicePrincipalId 变量中。
第二个命令使用 Get-AzureADUser (./Get-AzureADUser.md) cmdlet 获取用户的对象 ID,然后将其存储在 $OwnerId 变量中。
最后一个命令将$OwnerId所有者指定的用户添加到由 $ServicePrincipalId 指定的服务主体。
参数
-InformationAction
指定此 cmdlet 如何响应信息事件。 此参数的可接受值为:
- 继续
- 忽略
- 查询
- SilentlyContinue
- 停止
- 挂起
类型: | ActionPreference |
别名: | infa |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-InformationVariable
指定要在其中存储信息事件消息的变量。
类型: | String |
别名: | iv |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-ObjectId
指定 Active Directory 中服务主体的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-RefObjectId
指定要分配为所有者/经理/成员的 Active Directory 对象的 ID。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
备注
请参阅 Microsoft Graph PowerShell 的 Add-AzureADServicePrincipalOwner 迁移指南 。