Hi @Daniel Chee,
Use below PowerShell script to show all installed apps from the marketplace or app catalog for a SharePoint site.
$Url = "https://lazymorning.sharepoint.com/sites/astralis"
if ($Credentials -eq $null)
{
$Credentials = Get-Credential
}
Connect-PnPOnline –Url $Url –Credentials $Credentials
$web = Get-PnPWeb –Includes AppTiles
$appTiles = $web.AppTiles
Invoke-PnPQuery
foreach ($appTile in $appTiles)
{
$appTitle = $appTile.AppTitle
$appType = $appTile.AppType
$appStatus = $appTile.AppStatus
$appSource = $appTile.AppSource
$isCorporateCatalogSite = $appTile.IsCorporateCatalogSite
if ($appType -eq "Instance")
{
$appTile
}
}
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.