Is it possible to generate a collection properties report using the RMAD PowerShell cmdlets?
The RMAD PowerShell cmdlet named Get-RMADCollection can be used to generate an output containing the properties of the collections configured within the RMAD server.
Additional information about this cmdlet is available in the RMAD documentation:
The following example exports the properties of all existing collections to a CSV file:
Get-RMADCollection | Select-Object * | Export-Csv -Path "C:\Temp\RMAD_Collections.csv" -NoTypeInformation