Forum Discussion
konstantinrink
Mar 11, 2024Copper Contributor
Service Trust Portal no longer support Microsoft Account (MSA) access
Dear all, We need to access certain documents (i.e., SOC 2 or ISO 27xxx) on the https://servicetrust.microsoft.com/DocumentPage/d013b518-c1fe-462c-8124-de901f3b68dc. To download documents you ne...
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.
https://learn.microsoft.com/en-us/troubleshoot/azure/entra/entra-id/app-integration/error-code-aadsts7000112-application-is-disabled
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.
https://learn.microsoft.com/en-us/troubleshoot/azure/entra/entra-id/app-integration/error-code-aadsts7000112-application-is-disabled