Forum Discussion
dbetlow
Feb 27, 2018Iron Contributor
Report on users with MFA Enabled
We are not currently enforcing MFA for all users, but have sent out instructions to allow users to self-enroll in MFA (http://aka.ms/MFASetup). Looking at the status of users who I know have enabled...
- Feb 28, 2018
No, your users are not enabling MFA for themselves by using those URLs, That's a fact. You may have some other configuration going on.
Apr 20, 2022
Hi dbetlow,
I would suggest using Microsoft Graph for the reports and all other scripts if plausible.
#Install module
install-Module Microsoft.Graph.Reports
# Or with force if you already have previous version
install-Module Microsoft.Graph.Reports -force
# Connect to graph with Reports read rights
Connect-Graph -Scopes "reports.read.all"
# Select Beta profile (the command is available only in Beta api)
Select-MgProfile -Name "beta"
# Get MFA details from users
Get-MgReportCredentialUserRegistrationDetail
From here you can easily export them to Json or CSV if needed.
Hope this helps,
Magnus Tengmo
Apr 20, 2022Copper Contributor