Azure AD - Report MFA registrations

Emanuele Signorin 46 Reputation points
2022-02-15T14:52:18.207+00:00

Hello,

Is there a way to see a detailed report about the MFA registrations of the users in Azure AD? I would like to see if the user has registered MFA with SMS, Phone call, Authenticator app (and which app), Authenticator push notification, etc. I saw this report: https://aad.portal.azure.com/#blade/Microsoft_AAD_IAM/AuthenticationMethodsMenuBlade/RegistrationAndResetLogs

But this report doesn't contain all details that I would like (for instance, if the user use SMS or phone call).

Thank you in advantage.

Best regards, Emanuele

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
21,311 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Vivek Shukla 1 Reputation point
    2022-02-15T15:59:37.443+00:00

    Use below Powershell command to Identify users who have registered for MFA. This set of commands excludes disabled users since these accounts cannot authenticate against Azure AD.

    Get-MsolUser -All | Where-Object {$.StrongAuthenticationMethods -ne $null -and $.BlockCredential -eq $False} | Select-Object -Property UserPrincipalName


Your answer

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