Jump to content
Welcome to our new Citrix community!
  • 0

Get list of users/groups assigned to desktop group


Christian Francke

Question

Hi NG,

 

I'm trying to retrieve the associated users and groups from a desktop group which I can see in Studio --> assignments in "Users"

 

get-brokerdesktopgroup won't do.

 

I found the Get-BrokerAccessPolicyRule cmdlet. When I list the includedusers I get empty braces:

 

PS Get-BrokerAccessPolicyRule | select includedusers

 

IncludedUsers
-------------
{}
{}
{}
{}
{}

 

When I run the same cmdlet with -expandproperty I get nothing:

 

PS Get-BrokerAccessPolicyRule | select -ExpandProperty IncludedUsers

 

Any idea how I can get the list of users/groups from a desktop group via PowerShell?

 

Regards

 

Christian

 

 

 

 

 

 

 

 

  • Like 1
Link to comment

5 answers to this question

Recommended Posts

  • 0
On 2/14/2018 at 7:42 PM, Anand Kumar Nelapati said:

Hi,

 

Here is the command i used to get the details,

 

Get-BrokerMachine -MaxRecordCount 9999 -DeliveryType "DesktopsOnly" |select MachineName, @{l="AssociatedUserNames";e={$_.AssociatedUserNames -join " "}}, @{l="AssociatedUserFullNames";e={$_.AssociatedUserFullNames -join " "}}, DesktopGroupName |Export-Csv usertogroups.csv

 

Thanks

Anand Kumar Nelapati

 

This is perfect, thank you

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...