{"id":9702,"date":"2026-06-04T04:39:22","date_gmt":"2026-06-04T04:39:22","guid":{"rendered":"https:\/\/pariswells.com\/blog\/?p=9702"},"modified":"2026-06-04T04:39:23","modified_gmt":"2026-06-04T04:39:23","slug":"find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies","title":{"rendered":"Find where the Entra Group is currently being Users \\ Assigned to What Policies"},"content":{"rendered":"\n<pre class=\"wp-block-code\"><code class=\"\">&lt;#\n.SYNOPSIS\n    Find all Intune policy assignments targeting a specific Entra ID group.\n\n.PARAMETER GroupDisplayName\n    The display name of the Entra ID group to search for.\n\n.EXAMPLE\n    .\\Find-IntuneGroupAssignments.ps1 -GroupDisplayName \"SG-Intune-Kiosk-Devices\"\n#>\n\n[CmdletBinding()]\nparam(\n    [Parameter(Mandatory)]\n    [string]$GroupDisplayName\n)\n\nImport-Module Microsoft.Graph.Authentication -ErrorAction Stop\n\n# Add after Import-Module line\n$context = Get-MgContext\nif (-not $context) {\n    Connect-MgGraph -Scopes \"DeviceManagementConfiguration.Read.All\",\"DeviceManagementApps.Read.All\",\"Group.Read.All\"\n}\n\n$group = Get-MgGroup -Filter \"displayName eq '$GroupDisplayName'\" -ErrorAction Stop\nif (-not $group) { throw \"Group '$GroupDisplayName' not found.\" }\n$GroupId = $group.Id\nWrite-Host \"Resolved '$GroupDisplayName' -> $GroupId\" -ForegroundColor Cyan\nWrite-Host \"`nSearching for assignments targeting group: $GroupDisplayName`n\" -ForegroundColor Cyan\n\n$results = [System.Collections.Generic.List[PSCustomObject]]::new()\n\nfunction Get-AssignedPolicies {\n    param(\n        [string]$Uri,\n        [string]$PolicyType\n    )\n\n    $policies = @()\n    $nextLink = $Uri\n\n    do {\n        $response = Invoke-MgGraphRequest -Method GET -Uri $nextLink\n        $policies += $response.value\n        $nextLink = $response.'@odata.nextLink'\n    } while ($nextLink)\n\n    foreach ($policy in $policies) {\n        $assignUri = \"$Uri\/$($policy.id)\/assignments\"\n\n        try {\n            $assignments = (Invoke-MgGraphRequest -Method GET -Uri $assignUri).value\n        } catch {\n            continue\n        }\n\n        foreach ($a in $assignments) {\n            $target = $a.target\n            if ($target.groupId -eq $GroupId) {\n                $odataType = $target.'@odata.type'\n                $cleanType = $odataType -replace [regex]::Escape('#microsoft.graph.'), ''\n\n                $policyName = $policy.displayName\n                if (-not $policyName) { $policyName = $policy.name }\n                if (-not $policyName) { $policyName = '(unnamed)' }\n\n                $filterId = $target.deviceAndAppManagementAssignmentFilterId\n                if (-not $filterId) { $filterId = 'None' }\n\n                $results.Add([PSCustomObject]@{\n                    PolicyType   = $PolicyType\n                    PolicyName   = $policyName\n                    PolicyId     = $policy.id\n                    AssignmentId = $a.id\n                    TargetType   = $cleanType\n                    Filter       = $filterId\n                })\n            }\n        }\n    }\n}\n\n$baseUri = \"https:\/\/graph.microsoft.com\/beta\"\n\n$policyTypes = @(\n    @{ Uri = \"$baseUri\/deviceManagement\/configurationPolicies\";               Name = \"Settings Catalog\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceConfigurations\";                Name = \"Device Configuration (legacy)\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/groupPolicyConfigurations\";           Name = \"Administrative Templates (ADMX)\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceCompliancePolicies\";            Name = \"Compliance Policy\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/intents\";                             Name = \"Endpoint Security (Intents)\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceEnrollmentConfigurations\";      Name = \"Enrollment Configuration\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/windowsFeatureUpdateProfiles\";        Name = \"Windows Feature Update\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/windowsQualityUpdateProfiles\";        Name = \"Windows Quality Update\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/windowsDriverUpdateProfiles\";         Name = \"Windows Driver Update\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/windowsAutopilotDeploymentProfiles\";  Name = \"Autopilot Deployment Profile\" }\n    @{ Uri = \"$baseUri\/deviceAppManagement\/mobileApps\";                      Name = \"App Assignment\" }\n    @{ Uri = \"$baseUri\/deviceAppManagement\/managedAppPolicies\";               Name = \"App Protection Policy\" }\n    @{ Uri = \"$baseUri\/deviceAppManagement\/targetedManagedAppConfigurations\"; Name = \"App Configuration (Targeted)\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/remediations\";                        Name = \"Proactive Remediation\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceShellScripts\";                  Name = \"Shell Script (macOS)\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceManagementScripts\";             Name = \"PowerShell Script\" }\n    @{ Uri = \"$baseUri\/deviceManagement\/deviceCustomAttributeShellScripts\";   Name = \"Custom Attribute Script\" }\n)\n\nforeach ($pt in $policyTypes) {\n    Write-Host \"  Checking: $($pt.Name)...\" -NoNewline\n    try {\n        Get-AssignedPolicies -Uri $pt.Uri -PolicyType $pt.Name\n        Write-Host \" done\" -ForegroundColor Green\n    } catch {\n        Write-Host \" skipped ($($_.Exception.Message))\" -ForegroundColor Yellow\n    }\n}\n\nWrite-Host \"`n=== Results: $($results.Count) assignment(s) found for '$GroupDisplayName' ===`n\" -ForegroundColor Cyan\n\nif ($results.Count -gt 0) {\n    $results | Sort-Object PolicyType, PolicyName | Format-Table -AutoSize\n    # $results | Export-Csv -Path \".\\GroupAssignments_$GroupDisplayName.csv\" -NoTypeInformation\n}<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-9702","post","type-post","status-publish","format-standard","hentry","category-research"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes &quot;DeviceManagementConfiguration.Read.All&quot;,&quot;DeviceManagementApps.Read.All&quot;,&quot;Group.Read.All&quot;\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes &quot;DeviceManagementConfiguration.Read.All&quot;,&quot;DeviceManagementApps.Read.All&quot;,&quot;Group.Read.All&quot;\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-06-04T04:39:22+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-06-04T04:39:23+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes &quot;DeviceManagementConfiguration.Read.All&quot;,&quot;DeviceManagementApps.Read.All&quot;,&quot;Group.Read.All&quot;\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#article\",\"name\":\"Find where the Entra Group is currently being Users \\\\ Assigned to What Policies | Welcome to Pariswells.com\",\"headline\":\"Find where the Entra Group is currently being Users \\\\ Assigned to What Policies\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"datePublished\":\"2026-06-04T04:39:22+00:00\",\"dateModified\":\"2026-06-04T04:39:23+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage\"},\"articleSection\":\"Research\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"position\":2,\"name\":\"Research\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#listItem\",\"name\":\"Find where the Entra Group is currently being Users \\\\ Assigned to What Policies\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#listItem\",\"position\":3,\"name\":\"Find where the Entra Group is currently being Users \\\\ Assigned to What Policies\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/research#listItem\",\"name\":\"Research\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies\",\"name\":\"Find where the Entra Group is currently being Users \\\\ Assigned to What Policies | Welcome to Pariswells.com\",\"description\":\"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes \\\"DeviceManagementConfiguration.Read.All\\\",\\\"DeviceManagementApps.Read.All\\\",\\\"Group.Read.All\\\"\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/research\\\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2026-06-04T04:39:22+00:00\",\"dateModified\":\"2026-06-04T04:39:23+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com","description":"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes \"DeviceManagementConfiguration.Read.All\",\"DeviceManagementApps.Read.All\",\"Group.Read.All\"","canonical_url":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#article","name":"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com","headline":"Find where the Entra Group is currently being Users \\ Assigned to What Policies","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"datePublished":"2026-06-04T04:39:22+00:00","dateModified":"2026-06-04T04:39:23+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage"},"articleSection":"Research"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","position":2,"name":"Research","item":"https:\/\/pariswells.com\/blog\/category\/research","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#listItem","name":"Find where the Entra Group is currently being Users \\ Assigned to What Policies"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#listItem","position":3,"name":"Find where the Entra Group is currently being Users \\ Assigned to What Policies","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/research#listItem","name":"Research"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#webpage","url":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies","name":"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com","description":"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes \"DeviceManagementConfiguration.Read.All\",\"DeviceManagementApps.Read.All\",\"Group.Read.All\"","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2026-06-04T04:39:22+00:00","dateModified":"2026-06-04T04:39:23+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com","og:description":"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes &quot;DeviceManagementConfiguration.Read.All&quot;,&quot;DeviceManagementApps.Read.All&quot;,&quot;Group.Read.All&quot;","og:url":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies","article:published_time":"2026-06-04T04:39:22+00:00","article:modified_time":"2026-06-04T04:39:23+00:00","twitter:card":"summary","twitter:title":"Find where the Entra Group is currently being Users \\ Assigned to What Policies | Welcome to Pariswells.com","twitter:description":"[CmdletBinding()] param( [Parameter(Mandatory)] [string]$GroupDisplayName ) Import-Module Microsoft.Graph.Authentication -ErrorAction Stop # Add after Import-Module line $context = Get-MgContext if (-not $context) { Connect-MgGraph -Scopes &quot;DeviceManagementConfiguration.Read.All&quot;,&quot;DeviceManagementApps.Read.All&quot;,&quot;Group.Read.All&quot;"},"aioseo_meta_data":{"post_id":"9702","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"schemas":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-06-04 04:38:54","updated":"2026-06-04 04:39:23","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/research\" title=\"Research\">Research<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tFind where the Entra Group is currently being Users \\ Assigned to What Policies\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Research","link":"https:\/\/pariswells.com\/blog\/category\/research"},{"label":"Find where the Entra Group is currently being Users \\ Assigned to What Policies","link":"https:\/\/pariswells.com\/blog\/research\/find-where-the-entra-group-is-currently-being-users-assigned-to-what-policies"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9702","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=9702"}],"version-history":[{"count":1,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9702\/revisions"}],"predecessor-version":[{"id":9703,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/9702\/revisions\/9703"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=9702"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=9702"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=9702"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}