Note: PowerShell integration requires a ShareGate Migrate Pro or Enterprise subscription. It is not available on the Essentials plan.
Command
Get-AzureApplication
Description
Returns the Azure AD application authentication objects previously stored with Save-AzureApplication. Specify a name or an ID to return a single application, or omit both to return all saved applications.
Examples
List all saved applications
Get-AzureApplication
Get by name
Get-AzureApplication -Name "Contoso Migration"
Get by ID
Get-AzureApplication -Id 99999999-8888-7777-6666-555555555555
Syntax
Get-AzureApplication
[-Name <String>]
Get-AzureApplication
-Id <Guid>
Parameters
-Id <Guid>
Returns the Azure application with the specified ID.
Required? | True |
Default value | None |
Accept pipeline input? | False |
Accept wildcard characters? | False |
Parameter set name | Id |
Aliases | None |
-Name <String>
Returns the Azure application with the specified name.
Required? | False |
Default value | None |
Accept pipeline input? | False |
Accept wildcard characters? | False |
Parameter set name | Default |
Aliases | None |
