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
Create Report of azure mfa users that have been enroll
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
4 answers
Sort by: Most helpful
-
Patrick 66 Reputation points
2020-04-05T13:19:31.107+00:00 -
AmanpreetSingh-MSFT 56,866 Reputation points Moderator
2020-02-13T08:36:44.683+00:00 You can use below PowerShell cmdlets to get list of users with MFA Enabled:
-
Install-Module MSOnline
If the module is not installed already. -
Connect-MsolService
Login with Global Admin account. -
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.
-
-
Jaspal Vilkhu 6 Reputation points
2022-10-11T17:10:56.89+00:00 FYI :
New built-in reports are found here:
-
Vasil Michev 119.5K Reputation points MVP Volunteer Moderator
2020-02-13T08:08:18.183+00:00 Your best option here is to use the Graph API: https://learn.microsoft.com/en-us/graph/api/resources/credentialuserregistrationdetails?view=graph-rest-beta