Hello,
Thank you for posting in Q&A forum.
To download any MFA registered number, you can use Get-MsolUserByStrongAuthentication command.
1.First you need to open PowerShell/Azure Cloud Shell and connect to Azure AD by command:
Connect-MsolService.
2.Then run
Get-MsolUser | Select-Object UserPrincipalName, @ {Name="MFA Status"; Expression= {if ($. StrongAuthenticationRequirements.State) {$. StrongAuthenticationRequirements.State} else {"Disabled"}}} | Export-CSV -Path "C:\MFA-Status.csv" -NoTypeInformation
to export all the users with MFA status in .csv file.
You can also change the command according to your requirement.
To help other customers who may be facing the same issue, please don't forget to vote if the reply is helpful.
Best Regards,
Shujun
If the Answer is helpful, please click "Accept Answer" and upvote it.