(Get-AzureRmADUser -Mail $user).Id
在 VSTS 中的自托管代理上运行时,Azure PowerShell 任务中的命令返回 null- 问题是服务主体需要具有从 Active Directory 读取的权限
如何为服务主体提供从 Azure Active Directory 读取的正确权限?
(Get-AzureRmADUser -Mail $user).Id
在 VSTS 中的自托管代理上运行时,Azure PowerShell 任务中的命令返回 null如何为服务主体提供从 Azure Active Directory 读取的正确权限?
Install-Module AzureAD
通过[1]安装 Azure AD 模块
连接到 Azure Active Directory
Connect-AzureAD
获取“目录读者”角色的 ID
$roleId = (Get-AzureADDirectoryRole | where-object {$_.DisplayName -eq "Directory Readers"}).Objectid
获取服务主体对象 ID
$spObjectId = (Get-AzureADServicePrincipal -SearchString "spName").ObjectId
将服务主体添加到“目录读者”角色
Add-AzureADDirectoryRoleMember -ObjectId $roleId -RefObjectId $spObjectId
检查 SP 是否分配给目录读者角色
Get-AzureADDirectoryRoleMember -ObjectId $roleId | Where-Object {$_.ObjectId -eq $spObjectId}
如果您想在稍后阶段从角色中删除服务主体
Remove-AzureADDirectoryRoleMember -ObjectId $roleId -MemberId $spObjectId
另见 [2]