It is possible to return a list that shows all the Azure AD groups the current account is belonging to?
Both using Azure portal web UI and PowerShell are appreciated!
It is possible to return a list that shows all the Azure AD groups the current account is belonging to?
Both using Azure portal web UI and PowerShell are appreciated!
3
Answers
For Portal, simply click on the user for which you want to find this detail and then click on "Groups" button.
If you want to use PowerShell, the Cmdlet you would want to use is
Get-AzureADUserMembership
.Here’s a few different ways other than using the Portal
Azure AD PowerShell Module
Get-AzureADUserMembership
Microsoft Graph PowerShell Module
Get-MgUserMemberOf
Microsoft Graph API HTTP Request through PowerShell
List memberOf
Microsoft Graph Explorer
I was able to view my group membership in the portal by: