You can try the query below in Graph Explorer as either an application or global admin.
https://graph.microsoft.com/v1.0/servicePrincipals?$filter=preferredSingleSignOnMode eq 'saml'&$select=appDisplayName,preferredSingleSignOnMode
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Please asking for your help on how to generate a report to view the list of all Enterprise applications using a single sign on authentication via in a powershell.
Thank you in advance
You can try the query below in Graph Explorer as either an application or global admin.
https://graph.microsoft.com/v1.0/servicePrincipals?$filter=preferredSingleSignOnMode eq 'saml'&$select=appDisplayName,preferredSingleSignOnMode
Helo @JYLVEN TARRAJA,
Thank you for reaching out Microsoft Q&A.
I Understand you want to generate generate a report for the list of all enterprise application that is using a single sign on (SSO) using PowerShell.
You can follow the bellow mentioned steps to Achieve:
Step1: Open PowerShell as Administrator
Step2:
Use the below Command:
Get-AzADServicePrincipal -Filter "preferredSingleSignOnMode eq 'saml'"
NOTE: If you are getting error while using Connect-AzAccount module then you have to install a module command:
Install-module az
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,
Harshitha Eligeti.