Hi Mustafa,
You can then remove -Backup parameter. This will get you all of the restore points. Then you could filter them out by creation time if necessary. For example, to get all the restore points for the last month you would apply this filter:Best regards,
Oleg
You can then remove -Backup parameter. This will get you all of the restore points. Then you could filter them out by creation time if necessary. For example, to get all the restore points for the last month you would apply this filter:
Code:
$currentDate = Get-DateGet-VBRRestorePoint | where {$_.CreationTime -ge $currentDate.AddMonth(-1)} | sort -Property CreationTime -DescendingOleg
Statistics: Posted by oleg.feoktistov — Dec 05, 2023 12:55 am







