is there a way to gather MFA Status for the MFA Server (on-prem)? For example, registered, unregistered users.
I found the following cmdlet from Microsoft, but this works only for Azure MFA Cloud Users and not MFA Server.
https://docs.microsoft.com/en-us/azure/active-directory/authentication/howto-mfa-reporting
Get-MsolUser -All | where {$_.StrongAuthenticationMethods -ne $null} | Select-Object -Property UserPrincipalName
Do you know if there is an AD attribute for registered users? The StrongAuthenticationMethods attribute is also cloud-only.