Forum Discussion

kathrynboyle's avatar
kathrynboyle
Copper Contributor
Nov 26, 2025

Change to Microsoft Admin Center for Agents

Is anyone else who is managing agents within their company now seeing that you cannot see the publisher who created the agent on the main page? I also attempted to export a list and thought it would make it easy to get a full list of users who have created agents, but when exported the fields are completely different and there is no column for publisher.

Earlier this week I manually took note of all publishers because that field was still showing on the "All Agents" page (which took many hours) but since Monday the UI has completely changed and more agents are showing now so I have to start over. We are trying to start our governance process for agents and a note was meant to go out to leadership of who on their team is creating agents but now I have to start from scratch with no visibility to who is making agents unless I click into each individual agent. 

Does anyone have a workaround as to how I can pull the list of publishers with their names? I don't understand why this field was taken out of the view because it gives to way to see who is creating agents across our large organization. Any help would be very appreciated. 

1 Reply

  • hi kathrynboyle​ It’s surprising this field was removed, as it’s critical for governance and reporting in large enterprises.

    you can try below work arounds

    Microsoft Graph API (best option)

      • Check for agent/AI app objects via:
        • /solutions
        • /applications
        • /servicePrincipals
      • Look for createdBy or owner fields

    Entra ID (Azure AD) App Registrations

      • Many agents register as applications
      • Use PowerShell:

    o   Get-AzureADApplication | Select DisplayName, CreatedBy, CreatedDateTime

    Audit Logs (last 90 days)

      • Go to Purview → Audit
      • Filter operations:
        • “Created AI Agent”
        • “Registered application”
      • You can export results with user info

Resources