SOLVED

List of Groups wit Guest Users?

Iron Contributor

Is it possible somehow to list all Office 365 Groups that have Guest Users?

3 Replies

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

https://docs.microsoft.com/en-us/azure/active-directory/governance/manage-guest-access-with-access-r...

 

adam

best response confirmed by Jakob Rohde (Iron Contributor)
Solution

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

 

 

Awesome :)
1 best response

Accepted Solutions
best response confirmed by Jakob Rohde (Iron Contributor)
Solution

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

 

 

View solution in original post