Get-VBOApplication

Short Description

Returns Azure AD applications added to Microsoft 365 organizations.

Syntax

Get-VBOApplication -Organization <VBOOrganization> [-Id <Guid>] [-Name <String>] [-DisplayName <String>] [-Tag <String[]>] [<CommonParameters>]

Detailed Description

This cmdlet returns an array of Azure AD applications added to Microsoft 365 organizations.

Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Accept Wildcard Characters

Organization

Specifies a Microsoft 365 organization. The cmdlet will return an array of Azure AD applications from this organization.

Accepts the VBOOrganization object.

To get this object, run the Get-VBOOrganization cmdlet.

True

Named

False

False

Id

Specifies an ID of an Azure AD application. The cmdlet will return the application with the specified ID.

Guid

False

Named

False

False

Name

Specifies a name of an Azure AD application. The cmdlet will return the application with the specified name.

String

False

Named

False

True

DisplayName

Specifies a display name of an Azure AD application. The cmdlet will return the application with the specified display name.

String

False

Named

False

True

Tag

Specifies an array of Azure AD application tags. The cmdlet will return Azure AD applications with these tags.

String[]

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Output Object

The cmdlet returns the VBOApplication object that contains Azure AD applications added to Microsoft 365 organizations.

Examples

Get-VBOApplicationExample 1. Getting All Azure AD Applications

This example shows how to get a list of all Azure AD applications added to Microsoft 365 organizations.

$org = Get-VBOOrganization

Get-VBOApplication -Organization $org

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet. Save the result to the $org variable.
  2. Run the Get-VBOApplication cmdlet. Set the $org variable as the Organization parameter value.

Get-VBOApplicationExample 2. Getting Azure AD Application by Name

This example shows how to get the SharePointOnlineApp Azure AD application added to Microsoft 365 organizations.

$org = Get-VBOOrganization

Get-VBOApplication -Organization $org -Name SharePointOnlineApp

Perform the following steps:

  1. Run the Get-VBOOrganization cmdlet. Save the result to the $org variable.
  2. Run the Get-VBOApplication cmdlet. Set the $org variable as the Organization parameter value. Specify the Name parameter value.

Related Commands

Get-VBOOrganization