Table of Contents

Get-PnPAppInfo

SYNOPSIS

Returns information about installed apps.

SYNTAX

By Id

Get-PnPAppInfo -ProductId <Guid>

By Name

Get-PnPAppInfo -Name <String>

DESCRIPTION

The Get-PnPAppInfo 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.

The returned collection of installed applications contains Product ID (GUID), Product name and Source.

EXAMPLES

EXAMPLE 1

Get-PnPAppInfo -Name "Excel Service"

This will return all installed apps from the external marketplace or from the App Catalog that contain "Excel Service" in the application name.

EXAMPLE 2

Get-PnPAppInfo -ProductId 2646ccc3-6a2b-46ef-9273-81411cbbb60f

This will return the installed application info for the app with the given product id.

EXAMPLE 3

Get-PnPAppInfo -Name " " | Sort -Property Name

Returns all installed apps that have a space in the name and sorts them by name in ascending order.

PARAMETERS

-Name

Specifies the application's name.

Type: String
Parameter Sets: By Name

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

-ProductId

Specifies the id of an application

Type: Guid
Parameter Sets: By Id

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

Microsoft 365 Patterns and Practices