Message="The service principal with appId '2565bd9d-da50-47d4-8b85-4c97f669dc36' could not be found in the Azure Active Directory tenant. Please retry

Search for a command to run...

No comments yet. Be the first to comment.
In Part 1 of this series we explored the friendly foundations of machine learning: Classification Regression Clustering Neural networks Training Testing Overfitting Decision trees Reinforceme

Machine Learning with Trufa and Paula: A Friendly Guide to How Models Learn

The Microsoft Copilot Ecosystem

I love words, I compile words and always search what they mean. My native language is español and to my surprise there are not that many on line. México where I'm from has no official online language

Hey everyone, Roberto here and there and everywhere! We've all worked with data, we've all felt the pain of waiting. When you build a beautiful Power BI report, but the data is from yesterday. You have to wait for the nightly refresh to see the lates...

When creating a Domain Service instance in Azure with a Terraform template I ran into this issue, I fixed it by running the following commands:
on the Azure command line - powershell in the actual Azure portal, I tried using regular PowerShell with one set of annoying errors:
You must call the Connect-AzureAD cmdlet before calling any other cmdlets.
New-AzureAdServicePrincipal : Error occurred while executing NewServicePrincipal
and the commands lines I was running were:
Connect-AzureAD -AccountId <my account>
Select-AzSubscription -Subscription 'subname'
New-AzureAdServicePrincipal -AppId "2565bd9d-da50-47d4-8b85-4c97f669dc36"
The fix:
Connect-AzureAD -accountid <the account id>
New-AzureAdServicePrincipal -AppId "2565bd9d-da50-47d4-8b85-4c97f669dc36"
