Forum Discussion
List of Groups wit Guest Users?
- Oct 22, 2018
Thanks 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
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
- VasilMichevOct 22, 2018MVP
Thanks 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, 2018Awesome :)