Oct 22 2018 01:58 AM - edited Oct 22 2018 02:14 AM
Is it possible somehow to list all Office 365 Groups that have Guest Users?
Oct 22 2018 02:18 AM
I do believe that @Vasil Michev 's powershell script can output guest users in groups:
https://gallery.technet.microsoft.com/Office-365-Group-links-2957554a/view/Discussions#content
There is also "access Review" coming to govern guests in office 365 in a better way!
It's a Premium P2 edition of Azure AD required though
adam
Oct 22 2018 09:50 AM
SolutionThanks for the shout out @adam deltinger 🙂
The script can certainly be used for that scenario, although it will require some filtering, as this is not its primary use. Perhaps an easier method is to just check the value of the GroupExternalMemberCount parameter:
Get-UnifiedGroup -ResultSize Unlimited -Filter {GroupExternalMemberCount -gt 0} | select DisplayName,GroupExternalMemberCount
Oct 22 2018 09:50 AM
SolutionThanks for the shout out @adam deltinger 🙂
The script can certainly be used for that scenario, although it will require some filtering, as this is not its primary use. Perhaps an easier method is to just check the value of the GroupExternalMemberCount parameter:
Get-UnifiedGroup -ResultSize Unlimited -Filter {GroupExternalMemberCount -gt 0} | select DisplayName,GroupExternalMemberCount