Below Powershell command would help you to get all list of Groups (both Security & Destribution) groups from Active Directory.
Get-ADGroup -filter * -properties * |select SAMAccountName, Description|Export-Csv ADGroupList.csv
Below Powershell command would help you to get all list of Groups (both Security & Destribution) groups from Active Directory.
Get-ADGroup -filter * -properties * |select SAMAccountName, Description|Export-Csv ADGroupList.csv