<p>If you have the need to list members of the Active Directory group here&#8217;s how you can do it with Powershell.</p>
<p>Open Powershell and type:</p>
<p><strong>Get-ADgroupmember -identity &#8220;AD group name&#8221; | get-aduser -property displayname | select name, displayname</strong></p>
<p>replace the &#8220;<strong>AD group name</strong>&#8221; with the name of your AD group (without quotation marks).</p>
<p>The output will be in the format <strong>username | Display name</strong></p>
<p>If you want the output to be written in a text file you can use the following command:</p>
<p><strong>Get-ADgroupmember -identity &#8220;AD group name&#8221; | get-aduser -property displayname | select name, displayname >;C:\temp\result.txt</strong></p>

Powershell script to list AD Group members with DisplayName
