Read collection details using PowerShell

it is possible to get details from the Collection configuration using PowerShell?

as example I would like to report on all collection the retention policy for DC and Console Backups 

thank you for your help 

Parents Reply Children
  • Hi , thank you for your response. In the mean time I received the response from the quest Dev. team 

    Add-PSSnapin *Recovery*

    $collection = Get-RMADCollection -Name "BMR"

    $collection.BackupComponents

    $collection.AgentSideBackupPath

    $collection.ConsoleSideBackupPath

    $collection.AlternateStoragePath

    $collection.AgentSideRetentionPolicyEnabled

    $collection.AgentSideRetentionPolicyCount

    $collection.ConsoleSideRetentionPolicyEnabled

    $collection.ConsoleSideRetentionPolicyCount

     And this will give you a full list of available properties:
           $collection | Get-Member