Thanks for the reply.
I am imagining a scheduled task for each user with at least one direct report (value exists for 'directreports' property in AD for any given user) that creates a DL called 'Direct Reports - ManagerName if it does not already exist.
In powershell you'd do something like:
Get-ADUser -Identity MANAGERNAME -Properties directreports | select-object -ExpandProperty DirectReports
There is also the 'manager' AD attribute.
When the scheduled task runs, it would update all existing direct reports lists, and create any missing ones (there is a new manager, etc). Idealy it can also delete such groups when the manger leaves or no longer has any reports.
Hope that makes sense.
My question about the 'all reports - managername' list would include the manager, the managers' reports, their reports, etc etc etc.
I'm still just using the demo, so I’m not expecting a full solution at this time, just wondering what Adaxes capabilities are here, since it is a common ask from our users.
Thanks,
Steve