Get SSO Schema or Provisioning Schema with PowerShell

Iron Contributor

Hi there,

I am  looking for a way  to get SSO SCHEMA or Provisioning Schema ( for Azure -> Enterprise Applications ) thru PowerShell? 

This helps me to easily sift through all enterprise apps to see which ones are using specific extensions or attributes.

Thanks

2 Replies
Using Get-AzureADApplication

https://docs.microsoft.com/en-us/azure/active-directory/manage-apps/app-management-powershell-sample...

#Export All Registered Azure AD Application Details to CSV :

#The below command exports all the all azure ad apps with required details to csv file.

Get-AzureADApplication -All:$true |

Select-Object DisplayName, AppID, PublicClient, AvailableToOtherTenants, HomePage, LogoutUrl |

Export-Csv "C:\AzureADApps.csv" -NoTypeInformation -Encoding UTF8
Thanks for your reply.

I tried Get-AzureADApplication -Filter "DisplayName eq 'ABC'" -All:$true | Select * | Export-Csv "C:\AzureADApps.csv" -NoTypeInformation -Encoding UTF8

It does not give the info for SSO and not Provisioning - it just provides properties for App itself - not SSO &/or Provisioning - I need the attributes and properties specifically for those