A Microsoft app for iOS and Android devices that enables authentication with two-factor verification, phone sign-in, and code generation
The error occurs because the account already has the maximum number of authenticator app devices (five) registered. Old devices do not need to be physically available; the registrations must be removed from the account in Microsoft Entra ID.
There are two supported ways to do this, both requiring help from the organization’s admin (Global Administrator) if the user is not an admin:
- Delete old authenticator sign-in methods in a browser Administrator (or another admin) must first require MFA re-registration for the user:
- In the Azure portal, go to Microsoft Entra ID.
- Under Manage, select Users.
- Select the affected user.
- Under Manage, select Authentication methods.
- Select Require re-register multifactor authentication.
- Go to https://aka.ms/mysecurityinfo and sign in.
- In Security info, delete some or all existing Authenticator app sign-in methods (and any other unneeded methods) until fewer than five authenticator app devices remain.
- Add the Microsoft Authenticator app on the new phone as a sign-in method.
- Admin deletes authenticator registrations via Microsoft Graph A Global Administrator can remove the old authenticator registrations directly:
- Sign in to Graph Explorer as a Global Administrator.
- In the query area:
- Set HTTP method to GET.
- Use:
https://graph.microsoft.com/beta/users/<user-principal-name>/authentication/microsoftAuthenticatorMethods(replace<user-principal-name>with the user’s UPN). - Run the query and, if prompted, grant UserAuthenticationMethod.ReadWrite.All permission.
- In the response, copy the
id(GUID) for each authenticator method to be removed. - For each
id, run a DELETE query:-
https://graph.microsoft.com/beta/users/<user-principal-name>/authentication/microsoftAuthenticatorMethods/<authenticator-id-guid>
-
- After the deletions succeed (HTTP 204 No Content), the user can register the Microsoft Authenticator app on the new phone.
If there is no other admin and the only Global Administrator is locked out due to MFA, the tenant owner must contact Microsoft Support/Data Protection via phone to have MFA methods reset, as shown in the referenced Q&A cases.
References:
- Can't set up MFA because five devices are already registered to use an authenticator app
- Microsoft Authenticator FAQs
- Use a screen reader to set up and troubleshoot multifactor authentication
- How to sign out from Authenticator
- Microsoft Entra device management FAQ
- How Do I Regain Access to My Account After Losing Access to Microsoft Authenticator? (Urgent Request). - Microsoft Q&A
- I need to reset my mfa methods - Microsoft Q&A
- Microsoft Authenticator app doesn't show 6-digit OTP code - Microsoft Q&A
- Requesting a Tenant Admin MFA Reset - Microsoft Q&A
- Severity A Situation - Locked out of global admin account (MFA) - business down - Microsoft Q&A