Below powershell command will give you the list of AD groups which does not have any members.
Get-ADGroup -Filter * -Properties Members | where {-not $_.members} | select Name | Export-Csv ADemptygroups.csv –NoTypeInformation
Below powershell command will give you the list of AD groups which does not have any members.
Get-ADGroup -Filter * -Properties Members | where {-not $_.members} | select Name | Export-Csv ADemptygroups.csv –NoTypeInformation