Forum Discussion
Cannot login to Service Trust Portal
Hi,
I'm trying to get some certificates from the service trust portal, but I keep getting "Service Trust Portal no longer support Microsoft Account (MSA) access." I'm using an account registered on Azure and I checked the Azure Active Directory, and the user exists (seeing it's the owner of the account).
What am I missing here?
- jamalotpCopper ContributorHello jfalomir,
I am facing the same issue. Any tips how to get it resolved?
Thank you.- jizaguirreCopper Contributor
- Soporte_CooperbaCopper Contributor
jfalomir I am facing the same issue
- iftikharkhanCopper Contributor
Looks like your service principal for service trust is disabled by your resource tenant.
run the PS command to enable it: https://learn.microsoft.com/en-us/powershell/module/azuread/set-azureadserviceprincipal?view=azureadps-2.0#example-1-disable-the-account-of-a-service-principal
Get-AzureADServicePrincipal
Find the service trust object ID and enable it
Set-AzureADServicePrincipal -ObjectId <objectID>-AccountEnabled $true
if you check the sign in logs, you will see failure and reason would be the app is disabled.