Get-EntraApplicationExtensionProperty

Gets application extension properties.

Syntax

Get-EntraApplicationExtensionProperty
   -ApplicationId <String>
   [-Property <String[]>]
   [<CommonParameters>]

Description

The Get-EntraApplicationExtensionProperty cmdlet gets application extension properties in Microsoft Entra ID.

Examples

Example 1: Get extension properties

Connect-Entra -Scopes 'Application.Read.All'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
Get-EntraApplicationExtensionProperty -ApplicationId $application.Id

DeletedDateTime Id                                   AppDisplayName DataType IsMultiValued IsSyncedFromOnPremises Name                                                    TargetObjects
--------------- --                                   -------------- -------- ------------- ---------------------- ----                                                    -------------
                aaaaaaaa-0000-1111-2222-bbbbbbbbbbbb                Boolean  False         False                  extension_c371a443f6734a3e8982a26357fb7d59_NewAttribute {User}

This command gets the extension properties for the specified application in Microsoft Entra ID. You cane use the command Get-EntraApplication to get application ID.

  • -ApplicationId parameter specifies the unique identifier of an application.

Parameters

-ApplicationId

Specifies the unique ID of an application in Microsoft Entra ID.

Type:System.String
Aliases:ObjectId
Position:Named
Default value:None
Required:True
Accept pipeline input:True
Accept wildcard characters:False

-Property

Specifies properties to be returned.

Type:System.String[]
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False