Forum Discussion
Ali Fadavinia
Apr 26, 2021Iron Contributor
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 t...
Seshadrr
Apr 26, 2021Iron 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
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
Apr 26, 2021Iron 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
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