Thank you for posting this in Microsoft Q&A.
As I understand you are looking to pull list of enterprise applications in Microsoft Entra which are SSO enabled.
To get a list of Single Sign-On (SSO) enabled applications in an Azure AD tenant, you can use PowerShell. Specifically, the Azure AD PowerShell module can be utilized for this purpose. Here's a general approach:
- Install the Azure AD PowerShell Module (if not already installed):PowerShellCopy
Install-Module -Name AzureAD
- Connect to Your Azure AD Tenant:PowerShellCopy
Connect-AzureAD
- Retrieve SSO Enabled Applications: You can use a command like
Get-AzureADServicePrincipal
to list applications, and then filter or inspect these to determine which have SSO enabled.PowerShellCopy
Get-AzureADServicePrincipal -All $true | Where-Object { $_.Tags -like "*WindowsAzureActiveDirectoryIntegratedApp*" }
This command lists all service principals (applications) and filters for those with a specific tag that typically denotes SSO integration.
Remember, the specific command and its filters might vary based on how SSO is set up in your environment.
Let us know if you have any further questions on this.
Please "Accept the answer" if the information helped you. This will help us and others in the community as well.