Powershell script to list AD Group members with DisplayName

If you have the need to list members of the Active Directory group here’s how you can do it with Powershell. Open Powershell and type: Get-ADgroupmember -identity “AD group name” | get-aduser -property displayname...