Get-AzureADApplication
Gets an application.
Syntax
Get-AzureADApplication
[-All <Boolean>]
[-Top <Int32>]
[-Filter <String>]
[<CommonParameters>]
Get-AzureADApplication
[-SearchString <String>]
[-All <Boolean>]
[<CommonParameters>]
Get-AzureADApplication
-ObjectId <String>
[-All <Boolean>]
[<CommonParameters>]
Description
The Get-AzureADApplication cmdlet gets an Azure Active Directory application.
Examples
Example 1: Get an application by display name
PS C:\>Get-AzureADApplication -Filter "DisplayName eq 'TestName'"
ObjectId AppId DisplayName
-------- ----- -----------
3ddd22e7-a150-4bb3-b100-e410dea1cb84 36ee4c6c-0812-40a2-b820-b22ebd02bce3 TestName
This command gets an application by its display name.
Example 2: Get an application by ID
PS C:\>Get-AzureADApplication -Filter "AppId eq '421599eb-eed7-4988-9b31-02b43a4d37b8'"
ObjectId AppId DisplayName
-------- ----- -----------
ed192e92-84d4-4baf-997d-1e190a81f28e 421599eb-eed7-4988-9b31-02b43a4d37b8 MyNewApp
This command gets an application by its ID.
Retrieve an application by identifierUris
Get-AzureADApplication -Filter "identifierUris/any(uri:uri eq 'http://wingtips.wingtiptoysonline.com')"
ObjectId AppId DisplayName
-------- ----- -----------
9393a401-bc8a-41a9-8f20-6b073d247b17 29ee07a3-df6e-4660-a32f-918ea550f235 Wingtips Online
This command gets an application by its identifierUris.
Parameters
-All
If true, return all applications. If false, return the number of objects specified by the Top parameter
Type: | Boolean |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Filter
Specifies an oData v3.0 filter statement. This parameter controls which objects are returned.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ObjectId
Specifies the ID of an application in the Microsoft Entra ID.
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-SearchString
Specifies a search string.
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-Top
Specifies the maximum number of records to return.
Type: | Int32 |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Notes
See the migration guide for Get-AzureADApplication to the Microsoft Graph PowerShell.