AzureAD / azure-activedirectory-powershell

This is a repo for Azure AD PowerShell scrips and samples
30 stars 27 forks source link

Enterprise App - how do I get cert info, notification email, user attribs, claims? #14

Open lukeb1961 opened 5 years ago

lukeb1961 commented 5 years ago

If I configure an Enterprise Application, with SSO, how do I get the certificate information, the notification email, the user attribs, the claims?

Get-AzureADapplication doesn't provide any of this.

lukeb1961 commented 5 years ago

I only get partial information via Import-Module AzureAD ​ $conn=Connect-AzureAD -TenantId $MY_TENANT​ $entApp=Get-AzureADApplication -Filter "DisplayName eq 'GitHub.com'"​ $AppID = $entApp.AppId​ $ServicePrincipal = Get-AzureADServicePrincipal -filter "AppId eq '$AppID'"​ $ServicePrincipal.KeyCredentials​ $ServicePrincipal.PasswordCredentials

$EntApp | FL $ServicePrincipal | FL

raoues commented 3 years ago

Hello, did you find your answers ? i was trying to export my claims for each application in a csv file, but i cant find a single thing.

cheers,

alexiq commented 2 years ago

Adding my support to this issue. I am unable to export Attributes & Claims for Enterprise Apps using PowerShell. I tried both Get-AzureADApplication and Get-AzureADServicePrincipal, and they are not included in either. Adding Attributes & Claims to either or both Get-AzureADApplication and Get-AzureADServicePrincipal would be a great help!