Enterprise application filter

pattifree 46 Reputation points
2022-08-25T20:09:57.99+00:00

HI All,
I created new Azure AD application in azure, using the MsGraph powershell module. I expected to see the newly created app in both app registration and enterprise application. However, I can only see the new app in enterprise application if I change the filter from enterprise application to All application. Can someone tell me why this is the case?
235005-image.png

235006-image.png

Microsoft Entra ID
Microsoft Entra ID
A Microsoft Entra identity service that provides identity management and access control capabilities. Replaces Azure Active Directory.
19,473 questions
{count} vote

Accepted answer
  1. Michael Smith-MSFT 2,756 Reputation points Microsoft Employee
    2022-08-26T14:56:31.633+00:00

    Hi @pattifree ,

    One possibility is the app is missing the correct tags. Its possible if the app was created using script and the tags were not provided.

    you can check this by running the following using azure powershell sdk. https://learn.microsoft.com/en-us/powershell/azure/active-directory/install-adv2?view=azureadps-2.0

    Connect-azuread

    get-AzureADServicePrincipal -ObjectId 23d78f7c-4217-42f1-a020-d7dbdd0e4066 | fl

    At the bottom of the output you should see the tags.

    Should be similar to the following.
    Tags : {SelfServiceAppAccess, WindowsAzureActiveDirectoryOnPremApp, WindowsAzureActiveDirectoryCustomSingleSignOnApplication,
    WindowsAzureActiveDirectoryIntegratedApp}

    https://learn.microsoft.com/en-us/powershell/module/azuread/new-azureadserviceprincipal?view=azureadps-2.0
    -Tags
    Tags linked to this service principal.
    Note that if you intend for this service principal to show up in the All Applications list in the admin portal, you need to set this value to {WindowsAzureActiveDirectoryIntegratedApp}

    If WindowsAzureActiveDirectoryIntegratedApp is missing from the tags you need to add the tag by running following. any existing tags need to be included in the command below too.

    set-AzureADServicePrincipal -ObjectId 23d78f7c-4217-42f1-a020-d7dbdd0e4066 -Tags "WindowsAzureActiveDirectoryOnPremApp, WindowsAzureActiveDirectoryIntegratedApp"

    Let us know if this was the issue.

    Regards,
    Michael.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful