App ID, how do I identify Application Name of these App IDs?

Vincent Sarte 0 Reputation points
2024-05-19T18:02:47.96+00:00

App ID, how do I identify Application Name of these App IDs?

f8d98a96-0999-43f5-8af3-69971c7bb423

5d661950-3475-41cd-a2c3-d671a3162bc1

6326e366-9d6d-4c70-b22a-34c7ea72d73d

9fd38622-d9b4-4401-b1b9-1ce14c5e435a

8acd33ea-7197-4a96-bc33-d7cc7101262f

00b263e4-3497-4650-b082-3197cfdfdd7c

7fba38f4-ec1f-458d-906c-f4e3c4f41335

d34dcd43-8519-44e4-827c-de79b767da47

464e0e4d-676a-4c3b-9f81-2ed9b2a9acd2

19a16049-c5e2-41d0-aab4-a9b5956106cc

82d8ab62-be52-a567-14ea-1616c4ee06c4

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,951 questions
0 comments No comments
{count} votes

4 answers

Sort by: Most helpful
  1. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.


    Comments have been turned off. Learn more

  2. akinbade abiola 2,580 Reputation points
    2024-05-19T20:21:53.48+00:00

    Hello Vincent Sarte,

    Thanks for your question.

    To find the corresponding App Name of the App ID you can check from the portal or using Azure Powershell.

    To check from the Portal:

    • Go to the Azure Portal at portal.azure.com and navigate to Entra ID.
    • Search for App Registrations, Use the search bar to enter each App ID (Client ID) and find the corresponding application and you will find the app Name

    To check using the command Line:

    Please let me know if you have further questions**

    You can mark it 'Accept Answer' if this helped.

    0 comments No comments

  3. Akhilesh 5,720 Reputation points Microsoft Vendor
    2024-05-21T05:46:47.5266667+00:00

    Hi @Vincent Sarte

    Thank you for your post!

    I understand that you would like to identify the application name of a set of App IDs in Microsoft Azure Cloud.

    If the application has registered in your tenant, you will be able to see a list of all registered applications
    To find the application name with the client ID, you need to go to the Azure portal and follow these steps:

    1. Go to the Azure Active Directory.
    2. Select "App registrations" from the left menu.
    3. Search for the client ID in the search bar.
    4. Click on the application with the matching client ID.
    5. The application name will be displayed on the Overview page of the application.

    You can repeat these steps for each App ID in the list to identify their corresponding application names.
    Also, you can use the Get-AzureADApplication cmdlet in PowerShell to find the application name with the client ID.

    Get-AzureADApplication -Filter "AppId eq '<Your-Client-ID>'"
    

    Replace (Your-Client-ID) with your actual client ID. This command will return the details of the application associated with the provided client ID

    Note: you can see the application details which falls under your tenant, if the application is not falls under your tenant and register it is not possible to view the application details due to security concern.
    Hope this helps. Do let us know if you any further queries.

    Thanks,
    Akhilesh.


    If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.