Forum Discussion

Ali Fadavinia's avatar
Ali Fadavinia
Iron Contributor
Apr 26, 2021

Get SSO Schema or Provisioning Schema with PowerShell

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

  • Seshadrr's avatar
    Seshadrr
    Iron Contributor
    Using Get-AzureADApplication

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

    #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
    • Ali Fadavinia's avatar
      Ali Fadavinia
      Iron Contributor
      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

Resources