Options

Tool to view Active Directory Group Membership

4_lom4_lom Member Posts: 485
So I need a tool (preferably free of cost) that will allow me to view groups/members of those groups in an Active Directory environment. I've been looking around online and found one tool from SysInternals, but it doesn't provide a very pretty report. Do any of you know if there is a free tool that can do this, and also provide a report in a nice format such as pdf, xls, or xlsx?
Goals for 2018: MCSA: Cloud Platform, AWS Solutions Architect, MCSA : Server 2016, MCSE: Messaging

Comments

  • Options
    blargoeblargoe Member Posts: 4,174 ■■■■■■■■■□
    PowerShell

    get-adgroup "Group Name" | Get-ADGroupMember | select name,objectclass,samaccountname | ft -AutoSize >> c:\group-members.txt
    IT guy since 12/00

    Recent: 11/2019 - RHCSA (RHEL 7); 2/2019 - Updated VCP to 6.5 (just a few days before VMware discontinued the re-cert policy...)
    Working on: RHCE/Ansible
    Future: Probably continued Red Hat Immersion, Possibly VCAP Design, or maybe a completely different path. Depends on job demands...
  • Options
    QHaloQHalo Member Posts: 1,488
    You could pipe the output of a Powershell lookup to csv.

    Edit: heheh blargoe beat me to it.
  • Options
    gbdavidxgbdavidx Member Posts: 840
    we use a program called active directory user editor (traveler lite) not sure where you can get it but it does exactly what you want
  • Options
    4_lom4_lom Member Posts: 485
    Thanks guys. I found a free tool called ADInfo. Worked like a charm :)
    Goals for 2018: MCSA: Cloud Platform, AWS Solutions Architect, MCSA : Server 2016, MCSE: Messaging

Sign In or Register to comment.