Create Report of azure mfa users that have been enroll

roei zamir 6 Reputation points
2020-02-13T07:05:48.377+00:00

hi

i have send my users the aka.ms/mfasetup url for enroll the MFA

is there a report that i can see if user was enrolled and i can add him to Conditional access ?

Microsoft Security Microsoft Entra Microsoft Entra ID
{count} votes

4 answers

Sort by: Most helpful
  1. Patrick 66 Reputation points
    2020-04-05T13:19:31.107+00:00

    Just check out this built-in Azure report, although it doesn't always seem to be up-to-date:
    https://portal.azure.com/#blade/Microsoft_AAD_IAM/AuthMethodsOverviewBlade

    13 people found this answer helpful.
    0 comments No comments

  2. AmanpreetSingh-MSFT 56,866 Reputation points Moderator
    2020-02-13T08:36:44.683+00:00

    @roei zamir

    You can use below PowerShell cmdlets to get list of users with MFA Enabled:

    1. Install-Module MSOnline If the module is not installed already.
    2. Connect-MsolService Login with Global Admin account.
    3. Get-MsolUser -All | select DisplayName,BlockCredential,UserPrincipalName,@{N="MFA Status"; E={ if( $_.StrongAuthenticationRequirements.State -ne $null){ $_.StrongAuthenticationRequirements.State} else { "Disabled"}}} To get a list of users with MFA Enabled

    -----------------------------------------------------------------------------------------------------------

    Please "Accept as answer" wherever the information provided helps you to help others in the community.

    1 person found this answer helpful.

  3. Jaspal Vilkhu 6 Reputation points
    2022-10-11T17:10:56.89+00:00
    1 person found this answer helpful.
    0 comments No comments

  4. Vasil Michev 119.5K Reputation points MVP Volunteer Moderator
    2020-02-13T08:08:18.183+00:00

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.