Find User Default Method MFA
Here is a simple method using powershell to get the default MFA method. Figured some of you would find it useful. I know it has been quite a while since I wrote articles on here, hope you are all well. If you have suggestions I am always open.
Connect-MsolService
$Keyword = Read-Host "Email Address of User"?
$User = Get-MSolUser -UserPrincipalName $Keyword
$User.StrongAuthenticationMethods | Select-Object IsDefault, MethodType