你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Get-AzureADUserAppRoleAssignment
获取用户应用程序角色分配。
语法
Get-AzureADUserAppRoleAssignment
-ObjectId <String>
[-All <Boolean>]
[-Top <Int32>]
[<CommonParameters>]
示例
示例 1:获取用户应用程序角色分配
PS C:\> $UserId = (Get-AzureADUser -Top 1).ObjectId
Get-AzureADUserAppRoleAssignment -ObjectId $UserId
第一个命令使用 Get-AzureADUser (./Get-AzureADUser.md) cmdlet 获取 Azure AD 用户的 ID。 命令将值存储在 $UserId 变量中。
第二个命令获取$UserId中用户的用户应用程序角色分配。
参数
-All
如果为 true,则返回此用户的所有用户应用程序角色分配。 如果为 false,则返回由 Top 参数指定的对象数
类型: | Boolean |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-ObjectId
将用户 ID 指定为 Azure Active Directory 中的 UPN 或 ObjectId) (。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Top
指定要返回的最大记录数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
备注
请参阅 Get-AzureADUserAppRoleAssignment 到 Microsoft Graph PowerShell 的迁移指南。