The MS flows in tenant can be exported with below command but it doesn't provide details of site collection where Flows are configured to
get-adminflow | Export "D:\output.csv"
With below script, we can get connector names, but it doesn't show site collection as well. Any help here?
$flows = Get-AdminFlow
foreach ($flow in $flows) {
$detail = $flow | Get-AdminFlow
$detail.Internal.properties.connectionReferences # connector infomation
}