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