When attempting to set values to Limit maximum backup session time and Limit maximum DC backup time, those values are greyed out and disabled.
In Computer Collection | COLLECTIONNAME | Properties | Advanced, it is supposed to be possible to set a time limit to backups.
However, those fields are greyed out and unable to be modified.
By using PowerShell, it is possible to change the values and enable the checkboxes on the interface individually:
Add-PSSnapin Quest.RecoveryManager.AD.PowerShell
$collection = Get-RMADCollection -Name "COLLECTIONNAME"
$timeout = New-TimeSpan -Minutes 20
Set-RMADCollection -InputObject $collection -Properties @{SessionTimeout=$timeout;DcBackupTimeout=$timeout;}
Note: Please change COLLECTIONNAME to the proper name of the target collection
© 2025 Quest Software Inc. ALL RIGHTS RESERVED. Terms of Use Privacy Cookie Preference Center