Microsoft 365 features that help users manage their subscriptions, account settings, and billing information.
Error message: interaction_required: AADSTS5000225:
victor campos
0
Reputation points
Error message: interaction_required: AADSTS5000225:
Microsoft 365 and Office | Subscription, account, billing | For business | Other
Microsoft 365 and Office | Subscription, account, billing | For business | Other
1 answer
Sort by: Most helpful
-
AI answer
2026-05-21T02:30:35.23+00:00 The error
interaction_required: AADSTS5000225indicates that:-
interaction_requiredmeans user interaction is needed to complete authentication. In MSAL libraries this is surfaced as anInteractionRequiredAuthError, which is thrown when the user must perform an interactive sign-in to get a token with updated claims. -
AADSTS5000225: This tenant has been blocked due to inactivitymeans the Azure AD (Microsoft Entra ID) tenant associated with the account has been blocked because it has been inactive beyond Microsoft’s inactivity threshold.
Key points from the documented behavior:
- When a tenant is inactive for more than 200 days past the billing cycle, it is blocked and sign-in is prevented with error
AADSTS5000225. - After the tenant is blocked, there is a 20‑day grace period during which the tenant administrator can request reactivation.
- If more than 20 days have passed since the block, the tenant is permanently deleted and cannot be recovered.
Mitigation options depending on the situation:
- If the tenant has been blocked for less than 20 days
- A tenant administrator must contact Microsoft support to request tenant reactivation. Administrators can use the global support phone numbers listed in Microsoft documentation.
- Do not open multiple support requests for the same issue while an existing case is in progress.
- If the tenant is already deleted (blocked for more than 20 days)
- The tenant cannot be recovered. A new tenant must be created and associated with the account if Azure services are needed again.
- If the account is a new/free Azure account that shows this error
- In some reported cases, going to
https://signup.azure.comin a clean browser session (incognito, with all site data cleared) and signing in with the same email allowed the user to continue setup or upgrade the free account to Pay‑As‑You‑Go, which then restored portal access.
- In some reported cases, going to
- If sign-in is blocked but the browser may be causing issues
- Sign out of all Microsoft accounts in the browser.
- Clear all site data/cookies for Microsoft/Azure sites.
- Try signing in again, including using tenant-specific URLs such as:
-
https://portal.azure.com/<TenantId> -
https://portal.azure.com/<yourTenantName>.onmicrosoft.com
-
- If the goal is only to use Microsoft Authenticator or Entra ID with a different or new tenant
- Create a new tenant (if able to sign in to
https://entra.microsoft.com/with the account) under Entra ID → Overview → Manage tenants, then use that tenant’s domain (e.g.xxx.onmicrosoft.com) when accessing the Azure portal.
- Create a new tenant (if able to sign in to
For MSAL-based applications receiving
interaction_requiredin code:- For public client applications (
IPublicClientApplication), callAcquireTokenInteractiveso the user can sign in interactively. - For confidential client applications, inspect the
Claimsproperty on the exception and follow the documented claims challenge handling.
If the tenant is truly blocked due to inactivity and within the 20‑day window, only Microsoft support can reactivate it; otherwise a new tenant is required.
References:
- InteractionRequiredAuthErrorCodes module
- MsalError.InteractionRequired Field
- InteractionRequiredAuthError class
- Error message: interaction_required: AADSTS5000225: This tenant has been blocked due to inactivity - Microsoft Q&A Not able to Login to Azure or Azure devops. after accepting username and password below error message is throwing
- 7 Day Old Azure Account: AADSTS5000225: This tenant has been blocked due to inactivity. - Microsoft Q&A Last Sunday I created a new Azure account using the "free" option, received the welcome emails and everything. Didn't set up anything at all though. Today I go to log in and have this message:
- Error message: AADSTS5000225: This tenant has been blocked due to inactivity. - Microsoft Q&A Sign-in failed. I signed up for a free account so I could complete Azure training, and got the email with "Welcome to Azure
- Personal Microsoft account cannot be closed due to organization link (Error AADSTS5000225) - Microsoft Q&A Hello,
- Can not access Azure - Microsoft Q&A I always get this error saying to edit the AD but i can't since it wont let me in: " ##Moderator Recommended Answers: I got it fixed, I had to sign out of all Microsoft accounts and clear all site data in my browser then it let me in"
AI-generated content may be incorrect. Read our transparency notes for more information. -