Forum Discussion
jfalomir
Sep 20, 2022Copper Contributor
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 ...
iftikharkhan
Apr 26, 2024Copper 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.