Start powershell Run: Import-module ActiveDirectory Run: (Get-ADGroupMember -Identity “GROUPNAME”).count (replace GROUPNAME with the group you want to count)
Easy one-liner for exporting members of a distribution list: Get-DistributionGroupMember -identity "company-dl" | Export-Csv C:\MyFile.Csv you can also use “-not” that gives you...