Using the following code block we can get an output of every user in the ALL_SDG group and use this to compare with the current users under this brand as exported from OneLogin
```
Get-DistributionGroupMember -Identity "
[email protected]" |
Select-Object Name, PrimarySmtpAddress, RecipientType |
Export-Csv -Path "~/Downloads/DLMembers.csv" -NoTypeInformation -Encoding UTF8
```