PowerShell one-liners to identify large Workflow History lists

One-liners PowerShell script that will identify all Workflow History lists in the farm: $farm = Get-SPFarm; $websvcs = $farm.Services | where -FilterScript {$_.GetType() -eq [Microsoft.SharePoint.Administration.SPWebService]}; foreach ($websvc in $websvcs) { foreach...
Bitnami