I'm looking some Azure SQL security alerts for a "login from a domain not seen in 60 days", however it's listed in the following format (not actual identifier)
f96bd1cf-beb7-4e82-89cc-3d7e76f1cf3c@1ed9389a-f140-4cfd-9f02-c5a6a78c2770
How would I resolve this to an actual readable username?
thanks in advance
You can try PowerShell commandlet to get ObjectId details, use
Get-AzureADObjectByObjectId
andGet-AzureADUserCreatedObject -ObjectId
as below:Your Tenant ID should appear under Basic information.
Further
Get-AzureADUserCreatedObject
cmdlet gets objects created by a user in Azure Active Directory (AD)