Hi Andrew Jameson, I hope I can help you with this question.
If I understand you correctly, you have separated your private user account from your business organization. Now Azure always tries to log you into the business tenant, which is no longer possible.
Problem
Since you have left the business tenant as a guest user with your identity, Azure can no longer find your user there as an active user. To make this possible again, someone from the business tenant with the necessary permissions needs to re-invite you.
As soon as you create a Microsoft account, a default tenant is always created in the background. However, since your last access to Azure was most likely done through the business tenant, you now need to set your home tenant (default) as default again.
To do this, try the following:
-
- clear your browser cache ( all browser data) and reopen the browser.
- go to https://login.microsoftonline.com and change the client ID with the ID of your home tenant
2.1 if you don't know your Home Tenant Id you can try to open [https://portal.azure.com/@your Tenantname].onmicrosoft.com (the TenantName is your personal Email Adress like firstname.surename.outlook)
Another option to find out the tenant ID is via Powershell:
Connect-AzAccount
Get-AzTenant
With the Get-AzTenant Cmdlet you should get all the tenants to where the user identity is authorized for.
- enter your credentials, and you will get connected to the tenant that you have specified in the previous step.
-
- after logging in, you can change your default directory by using the below option:
If the reply was helpful, please don’t forget to upvote or accept it as an answer, thank you.