Get-AppInfo-Html
SharePoint Online: HTML report of app info
#Requires -Version 5.1
#Requires -Modules Microsoft.Online.SharePoint.PowerShell
Process {
try {
$result = Get-SPOAppInfo -ErrorAction Stop | Select-Object *
Write-Output ($result | ConvertTo-Html -Fragment)
}
catch { throw }
}This script has no configurable parameters.