Forum Discussion
Vincent_Rothlaender
Sep 24, 2024Copper Contributor
Problems Logging In Due to Multi-Factor Authentication
At the moment, I am unable to log in to Azure with my account (Global Administrator). Although I am also a Microsoft Partner and have 10 credits for support requests, I cannot create a support reques...
balasubramanim
Sep 28, 2024Iron Contributor
I faced a similar issue where I couldn't log in to Azure due to MFA, despite accessing other Microsoft services without problems. I wanted to share what worked and what to check if you're facing the same issue.
- Check Conditional Access Policies: Make sure no policies are forcing MFA in Azure AD > Security > Conditional Access.
- Verify MFA Status - Ensure MFA is fully disabled in Azure AD or using PowerShell:
Get-MsolUser -UserPrincipalName email address removed for privacy reasons | Select-Object DisplayName,UserPrincipalName,@{Name="StrongAuthenticationRequirements";Expression={$_.StrongAuthenticationRequirements}} - Clear Browser Cache - Try clearing cache or using incognito mode.
- Guest Accounts - Remove external guest accounts from other organizations.
- Security Defaults - Check if Security Defaults are enabled in Azure AD and consider disabling them.
- Use PowerShell/CLI - Log in using Azure CLI or PowerShell with:
az login - Leverage Partner Support - Use your Partner Center credits to raise a support ticket or contact Microsoft directly for help.
- Vincent_RothlaenderSep 28, 2024Copper ContributorThank you, I have already tried this with both Microsoft supports. I think I have found the cause, but I can no longer solve it. Yes, I have 10 credits from Microsoft, but I somehow can't redeem them to get support. The possible cause is that I have two tenants in the Azure Portal. There is a default directory that I can no longer access. My global account with Vincent is also there, and at the moment I can only work with a current tenant. As soon as I try to switch to the default directory, I can no longer get in. I also tried with az and I can't access my tenant.
- balasubramanimSep 28, 2024Iron Contributor
Please try these, this should help you to narrow down the issue.
- Check Tenant Access - Ensure you have the right permissions in your default directory. If possible, contact someone with admin access to regain entry.
- Use Azure CLI - If you can access the CLI, try logging in with the command:
az login --tenant <your-tenant-id>
This may help you switch tenants. - Access with Another Account - If you have access to another account that can access the default directory, use that account to check permissions.
- Check Subscription Eligibility - Ensure your current subscription is eligible for support credits.
- Contact Microsoft Support - If you can’t redeem your credits, reach out to Microsoft Support directly. Explain your situation about having multiple tenants, and they might assist you in transferring credits.
Danke
Balasubramani Murugesan