Get-RdsAppGroupUser

列出有权访问应用组的用户。

语法

Get-RdsAppGroupUser
   [-TenantName] <String>
   [-HostPoolName] <String>
   [-AppGroupName] <String>
   [-UserPrincipalName <String>]
   [<CommonParameters>]

说明

Get-RdsAppGroupUser cmdlet 列出了有权访问指定应用组的用户。 如果指定用户主体名称,此 cmdlet 将返回有权访问应用组的指定用户主体名称,或者返回一个指示他们无权访问的错误。

示例

示例 1:列出已分配到应用组的所有用户

PS C:\> Get-RdsAppGroupUser -TenantName "contoso" -HostPoolName "contosoHostPool" -AppGroupName "Desktop Application Group"

UserPrincipalName : user1@contoso.com
TenantName        : Contoso
TenantGroupName   : Default Tenant Group
HostPoolName      : contosoHostPool
AppGroupName      : Desktop Application Group

UserPrincipalName : user2@contoso.com
TenantName        : Contoso
TenantGroupName   : Default Tenant Group
HostPoolName      : contosoHostPool
AppGroupName      : Desktop Application Group

此命令列出分配给指定应用组的所有用户。

示例 2:检查是否已将特定用户分配到应用组

PS C:\> Get-RdsAppGroupUser -TenantName "contoso" -HostPoolName "contosoHostPool" -AppGroupName "Desktop Application Group" -UserPrincipalName "user1@contoso.com"

UserPrincipalName : user1@contoso.com
TenantName        : contoso
TenantGroupName   : Default Tenant Group
HostPoolName      : contosoHostPool
AppGroupName      : Desktop Application Group

此命令列出已分配给应用组的指定用户。 如果用户尚未分配给应用组,则会收到错误。

参数

-AppGroupName

应用组的名称。

类型:String
Position:2
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-HostPoolName

主机池的名称。

类型:String
Position:1
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-TenantName

租户的名称。

类型:String
Position:0
默认值:None
必需:True
接受管道输入:True
接受通配符:False

-UserPrincipalName

要检查应用组访问权限的用户的用户主体名称(UPN)。

类型:String
Position:Named
默认值:None
必需:False
接受管道输入:True
接受通配符:False

输入

System.String

输出

Microsoft.RDInfra.RDManagementData.RdMgmtUser