Using PowerShell Graph SDK or any other means, how can I get the Azure Enterprise Application Usage and insights reports?

EnterpriseArchitect 6,301 Reputation points
2024-01-31T03:17:51.2266667+00:00

After reading this article: https://learn.microsoft.com/en-us/entra/identity/monitoring-health/concept-usage-insights-report?tabs=microsoft-graph I wonder how can I use PowerShell Microsoft Graph to retrieve the Application credential activity using Microsoft Graph? User's image

Windows for business | Windows Server | User experience | PowerShell
Microsoft Security | Microsoft Entra | Microsoft Entra ID
Microsoft Security | Microsoft Graph
Microsoft Security | Microsoft Entra | Other
0 comments No comments
{count} votes

Answer accepted by question author
  1. Vasil Michev 123.6K Reputation points MVP Volunteer Moderator
    2024-01-31T08:20:48.4533333+00:00

    You can use the Get-MgBetaReportApplicationSignInDetailedSummary cmdlet to get the "details" and the Get-MgBetaReportAzureAdApplicationSignInSummary one to get the "summary":

    Get-MgBetaReportAzureAdApplicationSignInSummary -Period D30
    Id                                   AppDisplayName                                        FailedSignInCount SuccessPercentage SuccessfulSignInCount
    --                                   --------------                                        ----------------- ----------------- ---------------------
    fe6aa35b-7da8-44fd-a44e-e2d4bafbdab5 Modern Workplace Tools                                0                 100               3
    fb78d390-0c51-40cd-8e17-fdbfab77341b Microsoft Exchange REST API Based Powershell          0                 100               16
    ee272b19-4411-433f-8f28-5c13cb6fd407 Microsoft 365 Support Service                         0                 100               1
    
    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.