Forum Discussion
Deleted
Aug 24, 2016How to export list of office365 Groups
Hi All, Can some one please let me know how do i export the list of all O365 groups Created in my tenat?
- Aug 24, 2016You can try this tool from Technet gallery. This will give you list of groups with GroupName, ManagedBy, TotalMembers, GroupType.
https://gallery.technet.microsoft.com/Office-365-Distribution-84283723
TonyRedmond
Aug 24, 2016MVP
[PS] Get-UnifiedGroup | Format-table DisplayName, WhenCreated, ManagedBy > C:\Temp\Groups.txt is the very simplest PowerShell command to dump a list of all groups to a text file. You can expand this to create a CSV file etc. Or take the techniques outlined in https://www.itunity.com/article/identifying-obsolete-office-365-groups-powershell-3533 and use them to create reports as you want.
Deleted
Aug 25, 2016Thanks Tony