Hello @Aire Yamit ,
Thank you for reaching out Microsoft Q&A.
I understand that you would like to identify the application name of a set of App IDs in Microsoft Azure.
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:
- Go to the Microsoft Entra ID.
- Select "App registrations" from the left menu.
- Search for the client ID in the search bar.
- Click on the application with the matching client ID.
- 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.
PowerShell Copy
Get-AzureADApplication -Filter
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 view the details of applications that fall under your tenant. However, if an application does not belong to your tenant, its details cannot be accessed due to security concerns.
Hope this helps. Do let us know if you any further queries.
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.
Regards,
Goutam Pratti.