I have a page that lists various applications and the Active Directory groups that are required for access. A common task is to verify whether or not some user has been added to the group. I typically do this with powershell and a query like this:
Get-AdGroupMember -identity "ADGroup" | select name
which returns a list of the members of "ADGroup"
It would be very useful to have a page that could be a pop up link taking the argument of the group name so that a user could click on the group name in my manually-created table that lists all the groups. Is there a way to do this with a confluence macro or something? I would probably like that resulting page to list all those users along with a link to a command like this
Get-ADPrincipalGroupMembership username| select name
with the groups again listed as hyperlinks to show members. Collectively, what this is is an AD browser.