Wanted to share this one out, because I couldn’t find anything out there that would cleanly get this information for me so we went to the drawing board.
This powershell script will display Delivery Group Name, User AD Account name and then User’s Full name like this:
group |
user |
fullname |
Test_Delivery_Name |
NFI\NickyFixIt |
Fuchs, Nick |
—
$out = @()
foreach ($g in (Get-BrokerAccessPolicyRule -DesktopGroupName * )) {
foreach ($u in $g.IncludedUsers) {
$d = “” | select group,user,fullname,via
$d.group = $g.DesktopGroupName
$d.user = $u.Name
$d.fullname = $u.FullName
$d.via = $g.AllowedConnections
$out += $d
}
}
$out | export-csv -notype “C:\temp\nickyfixit.csv”
Thanks Josh @ LockStepGroup
1 Comment
Hi Nick,
Thanks for posting these such a great help. Is it possible for you to add Machinename, IPaddress and OStype in this report