I need to retrieve only the restore points of type "Full" from a single Job in order to restore VM files and send it to a secondary destination. I have tried Get-VBRRestorePoint -Backup(Get-VBRBackup -Name "Backups") -Name Windows* | select -Last 1 and i succesfully can find the last restore point named Windows.. After that i thought i could change the parameter "Name" for "Type" so I could pass a -Type "Full" but it prompts an error that "Type" is not recognized as a parameter for Get-VBRRestorePoint.
The question, in summary, is how can i filter Full backups in Get-VBRRestorePoint? or maybe using another cmdlet?