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?
- You 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
- [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
Thanks Tony
- Lillian DiazBronze ContributorDeletedUser_6884 this is good to know.
- SanthoshB1Bronze ContributorYou 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- Deleted
Thanks Santosh.
Great Help.
You should be able to do this using Get-UnifiedGroup.
https://technet.microsoft.com/library/mt238272(v=exchg.160).aspx