Sep 20 2022 01:07 PM
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?
Apr 13 2023 02:22 PM
May 01 2023 08:47 PM
Apr 26 2024 12:05 PM
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=azuread...
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.