Get-EntraApplicationOwner
Gets the owner of an application.
Syntax
Get-EntraApplicationOwner
-ApplicationId <String>
[-All]
[-Top <Int32>]
[-Property <String[]>]
[<CommonParameters>]
Description
The Get-EntraApplicationOwner
cmdlet get an owner of an Microsoft Entra ID application.
Examples
Example 1: Get the owner of an application
Connect-Entra -Scopes 'Application.ReadWrite.All','Application.ReadWrite.OwnedBy'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
Get-EntraApplicationOwner -ApplicationId $application.Id
Id DeletedDateTime
-- ---------------
bbbbbbbb-1111-2222-3333-cccccccccccc
cccccccc-2222-3333-4444-dddddddddddd
dddddddd-3333-4444-5555-eeeeeeeeeeee
eeeeeeee-4444-5555-6666-ffffffffffff
This example demonstrates how to get the owners of an application in Microsoft Entra ID.
-ApplicationId
parameter specifies the unique identifier of an application.
Example 2: Get the details about the owner of an application
Connect-Entra -Scopes 'Application.ReadWrite.All','Application.ReadWrite.OwnedBy'
$application = Get-EntraApplication -SearchString '<application-name>'
$applicationOwners = Get-EntraApplicationOwner -ObjectId $application.ObjectId
$ownerDetails = $applicationOwners | ForEach-Object {
$ownerDetail = Get-EntraObjectByObjectId -ObjectIds $_.Id
[PSCustomObject]@{
displayName = $ownerDetail.displayName
Id = $ownerDetail.Id
UserPrincipalName = $ownerDetail.UserPrincipalName
UserType = $ownerDetail.UserType
accountEnabled = $ownerDetail.accountEnabled
}
}
$ownerDetails | Format-Table -Property displayName, Id, UserPrincipalName, UserType, accountEnabled -AutoSize
displayName Id UserPrincipalName UserType accountEnabled
----------- -- ----------------- -------- --------------
Sawyer Miller bbbbbbbb-1111-2222-3333-cccccccccccc SawyerM@contoso.com Member True
Adele Vance ec5813fb-346e-4a33-a014-b55ffee3662b AdeleV@contoso.com Member True
This example demonstrates how to get the owners of an application in Microsoft Entra ID with more owner lookup details.
Example 3: Get all owners of an application
Connect-Entra -Scopes 'Application.ReadWrite.All','Application.ReadWrite.OwnedBy'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
Get-EntraApplicationOwner -ApplicationId $application.Id -All
Id DeletedDateTime
-- ---------------
bbbbbbbb-1111-2222-3333-cccccccccccc
cccccccc-2222-3333-4444-dddddddddddd
dddddddd-3333-4444-5555-eeeeeeeeeeee
eeeeeeee-4444-5555-6666-ffffffffffff
This example demonstrates how to get the all owners of a specified application in Microsoft Entra ID.
-ApplicationId
parameter specifies the unique identifier of an application.
Example 4: Get top two owners of an application
Connect-Entra -Scopes 'Application.ReadWrite.All','Application.ReadWrite.OwnedBy'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
Get-EntraApplicationOwner -ApplicationId $application.Id -Top 2
Id DeletedDateTime
-- ---------------
bbbbbbbb-1111-2222-3333-cccccccccccc
cccccccc-2222-3333-4444-dddddddddddd
This example demonstrates how to get the two owners of a specified application in Microsoft Entra ID.
-ApplicationId
parameter specifies the unique identifier of an application.
Parameters
-All
List all pages.
Type: | System.Management.Automation.SwitchParameter |
Position: | Named |
Default value: | False |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
-ApplicationId
Specifies the 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 |
-Top
Specifies the maximum number of records to return.
Type: | System.Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |