A cloud-based identity and access management service for securing user authentication and resource access
The sign-in errors indicate that the accounts are being authenticated against the wrong tenant (“Microsoft Services” / tenant ID 1379c189-7504-4a55-b193-5a2481634bf6) instead of the OmegaLauncher.onmicrosoft.com tenant, and that the account does not exist in that tenant.
Based on the provided context, there are two main patterns that match this behavior and provide concrete remediation steps:
- Account is being treated as a personal Microsoft account and routed to the Microsoft Services tenant
When a personal Microsoft account (for example, Outlook, Hotmail, or other MSA) is used to access Microsoft Entra admin center or Azure resources, it is associated with the Microsoft Services tenant by default. In that tenant there is no linked directory where directory-level actions (like app registration) can be performed. This is expected behavior and leads to errors that the account does not exist in the target tenant and cannot access the application. In this scenario, to have a directory where app registrations and Entra ID operations are possible, an Azure account with its own tenant must be created. The documented steps are:- Go to the Azure account signup page (for example, via Try Azure for free).
- Complete creation of an Azure account.
- A new tenant is created alongside the Azure account, and the creator is made Global Administrator of that tenant, with full access to that directory.
- Sign-in is being forced to a tenant where the account does not exist (AADSTS50020 / AADSTS16000 pattern)
The error message pattern:
matches the documented AADSTS50020/AADSTS16000 behavior where:User account from identity provider does not exist in tenant and cannot access the application. The account needs to be added as an external user in the tenant first.
- The account is from one identity provider (for example, live.com / personal Microsoft account),
- The sign-in is being processed against a different tenant (for example, Microsoft Services or another organization’s tenant), and
- The account is not present as a guest in that tenant.
- The account must either be added as an external user in that tenant, or
- The sign-in must be directed to the correct tenant where the account actually exists and has permissions.
- Multitenant apps:
https://login.microsoftonline.com/organizations - Multitenant + personal accounts:
https://login.microsoftonline.com/common - Personal accounts only:
https://login.microsoftonline.com/consumers
https://login.microsoftonline.com/<SomeOtherTenantId>is used, users from other tenants cannot sign in unless added as guests. - Practical steps to regain access to the correct Azure tenant
From the context, the following concrete actions are supported and applicable to similar “wrong tenant / blocked tenant / misrouted sign-in” issues:- Clear cached sign-in state and try again
One documented resolution for being unable to access Azure due to persistent wrong-tenant routing is to:- Sign out of all Microsoft accounts in the browser.
- Clear all site data / cookies for Microsoft and Azure sign-in pages.
- Then attempt sign-in again.
- Ensure sign-in is explicitly targeting the correct tenant
If sign-in keeps going to Microsoft Services or another tenant, explicitly target the correct tenant in the Azure portal URL by including the tenant name or ID. For example, use the pattern:-
https://portal.azure.com/<TenantName>.onmicrosoft.comor -
https://portal.azure.com/<TenantId>
-
- If the tenant is blocked or inactive
If a tenant has been blocked due to inactivity (AADSTS5000225), the documented options are:- A tenant administrator can request reactivation within 20 days by contacting Microsoft via global support phone numbers.
- Alternatively, sign up again via the Azure signup flow, which may recognize an existing free account and prompt to upgrade to a pay-as-you-go account to restore access.
- Clear cached sign-in state and try again
- When the account does not exist in the tenant at all
For errors that state the account does not exist in the tenant and cannot access the application (AADSTS50020/AADSTS16000 pattern), the documented resolution is:- The account must be added as an external user in that tenant before it can access the application, or
- A different account that is already part of that tenant must be used.
- Use or create an Azure account that has its own tenant (as in point 1), and
- Perform app registrations and directory operations in that tenant instead of trying to use the Microsoft Services tenant.
In summary, the supported remediation steps from the context are:
- Use an Azure account that has its own tenant (created via the Azure signup flow) so that sign-in is not tied to the Microsoft Services tenant.
- Clear all browser sign-in state and explicitly target the correct tenant in the Azure portal URL using the tenant name or ID.
- Ensure that any application sign-in flows use the correct authority URL (
organizations,common, orconsumers) rather than a hard-coded tenant that the account does not belong to. - If a tenant is blocked or inactive, follow the documented reactivation or upgrade paths, or contact Microsoft support as the tenant administrator.
References:
- Error AADSTS50020 - User account from identity provider does not exist in tenant
- No subscriptions found sign in error for Azure portal
- Error message: AADSTS5000225: This tenant has been blocked due to inactivity. - Microsoft Q&A
- 7 Day Old Azure Account: AADSTS5000225: This tenant has been blocked due to inactivity. - Microsoft Q&A
- I have no other Azure AD account, I cannot add myself as an external user from within the tenant. - Microsoft Q&A
- Can not access Azure - Microsoft Q&A