Forum Discussion
chagedorn
Apr 10, 2025Brass Contributor
Report all active users in tenant and their installed integrated apps
Our security team has requested that we block the install of any Copilot apps until our AI policy is in place. Before we do this, I'd like to know what apps from Microsoft 365 admin center > Settings...
Kidd_Ip
Apr 11, 2025MVP
Seems yours covered to organization-deployed add-ins only, please try below:
Install-Module -Name AzureAD
Import-Module -Name AzureAD
Connect-AzureAD
Get-AzureADServicePrincipal -All $true | Where-Object {$_.Tags -contains "WindowsAzureActiveDirectoryIntegratedApp"} | Select-Object DisplayName, AppId, PublisherName
To find a specific App, you can
$AppId = "<AppId_of_the_App>"
Get-AzureADUserAppRoleAssignment -Filter "ResourceId eq '$AppId'" | Select-Object PrincipalDisplayName, PrincipalType
Export
| Export-Csv -Path "C:\Temp\IntegratedAppsReport.csv" -NoTypeInformation