Get "notes" field from an Enterprise Application on AzureAD with Powershell

Carlo Lamanna 31 Reputation points
2020-10-16T10:38:54.22+00:00

32972-image.png

Hi all,

I would like to know if there is some way to retrieve the Notes field with some cmdlet.
I've tried the Get-AzureADServicePrincipal, Get-AzADApplication and Get-AzureADApplication but none of this have that information.
Also with Graph i can't retrieve that info.

Is there a way or is just for the portal?

Thanks,
Carlo

Azure App Configuration
Azure App Configuration
An Azure service that provides hosted, universal storage for Azure app configurations.
207 questions
0 comments No comments
{count} votes

Accepted answer
  1. JamesTran-MSFT 36,371 Reputation points Microsoft Employee
    2020-10-16T20:53:38.687+00:00

    @Carlo Lamanna
    Thank you for your post!

    I reached out to my team regarding this issue and was able to replicate what you were seeing as well. Unfortunately, getting the "notes" section of an Enterprise App is currently not supported.

    33014-image.png

    If you'd like, please feel free to create a feature request using our User Voice, or Microsoft Graph Feature Requests forum.

    If you have any other questions, please let me know.
    Thank you for your time and patience throughout this issue.

    ----------

    Please remember to "Accept Answer" if any answer/reply helped, so that others in the community facing similar issues can easily find the solution.

    1 person found this answer helpful.

1 additional answer

Sort by: Most helpful
  1. Sourabh Rathore 16 Reputation points
    2023-04-07T11:12:55.4166667+00:00

    You should have Az.Resources powershell module installed. Connect-AzAccount

    For Application Registration:

    Get-AzADApplication -ApplicationId $AppId | select DisplayName, AppId, Note

    For Enterprise Application:

    Get-AzADServicePrincipal -ApplicationId $AppId | select DisplayName, AppId, Note

    3 people found this answer helpful.