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

Azure Active Directory
Azure Active Directory
An Azure enterprise identity service that provides single sign-on and multi-factor authentication.
16,677 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