Reputation: 1505
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!
Upvotes: 6
Views: 30576
Reputation: 145
I was able to view my group membership in the portal by:
Upvotes: 7
Reputation: 2040
Here's a few different ways other than using the Portal
Azure AD PowerShell Module
$user = "[email protected]"
Connect-AzureAD
Get-AzureADUserMembership -ObjectId $user | Select DisplayName, ObjectId
Microsoft Graph PowerShell Module
$user = "[email protected]"
Connect-MgGraph
(Get-MgUserMemberOf -UserId $user).AdditionalProperties | Where-Object {$_."@odata.type" -ne "#microsoft.graph.directoryRole"} | ForEach-Object {$_.displayName}
Microsoft Graph API HTTP Request through PowerShell
$user = "[email protected]"
$params = @{
Headers = @{ Authorization = "Bearer $access_token" }
Uri = "https://graph.microsoft.com/v1.0/users/$user/memberOf"
Method = "GET"
}
$result = Invoke-RestMethod @params
$result.Value | Where-Object {$_."@odata.type" -ne "#microsoft.graph.directoryRole"} | Select DisplayName, Id
Microsoft Graph Explorer
GET https://graph.microsoft.com/v1.0/users/[email protected]/memberOf
Upvotes: 3
Reputation: 136336
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
.
Upvotes: 1