Skip to content

Latest commit

 

History

History
115 lines (75 loc) · 2.91 KB

File metadata and controls

115 lines (75 loc) · 2.91 KB
external help file Microsoft.Online.SharePoint.PowerShell.dll-Help.xml
Module Name Microsoft.Online.SharePoint.PowerShell
online version https://learn.microsoft.com/powershell/module/microsoft.online.sharepoint.powershell/get-spoappinfo
applicable SharePoint Online
title Get-SPOAppInfo
schema 2.0.0
author samkabue
ms.author speedta
ms.reviewer

Get-SPOAppInfo

SYNOPSIS

Returns all installed applications.

SYNTAX

Get-SPOAppInfo [[-ProductId] <Guid>] [[-Name] <String>] [<CommonParameters>]

DESCRIPTION

The Get-SPOAppInfo cmdlet gets all the installed applications from an external marketplace or from the App Catalog that contain Name in their application names or the installed application with mentioned ProductId. ProductId takes precedence if not empty.

Either ProductId or Name must be given. Name is ignored if ProductId is specified.

The returned collection of installed applications contains Product ID (GUID), Product name and Source. Values for source type are as follows: 0 = App Catalog and 1 = Marketplace.

You must be a SharePoint Online administrator to run the cmdlet.

For permissions and the most current information about Windows PowerShell for SharePoint Online, see the online documentation at Intro to SharePoint Online Management Shell.

EXAMPLES

Example 1

Get-SPOAppInfo -Name "Excel Service"

Example 1 returns all the installed applications from the external marketplace or from the App Catalog that contain "Excel Service" in their application names.

Example 2

Get-SPOAppInfo -ProductId 6751729b-e017-409d-681a-66f1dd18f0ff

Example 2 returns the installed application that has the GUID 6751729b-e017-409d-681a-66f1dd18f0ff.

Example 3

Get-SPOAppInfo -Name " " | Sort Name

Example 3 returns all the installed applications that have a space in the name and sorts them in ascending order.

PARAMETERS

-Name

Applicable: SharePoint Online

Specifies the application's name.

Type: System.String
Parameter Sets: (All)
Aliases:

Required: False
Position: 2
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-ProductId

Applicable: SharePoint Online

Specifies the application's GUID.

Type: System.Guid
Parameter Sets: (All)
Aliases:

Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

None

OUTPUTS

System.Object

NOTES

RELATED LINKS