Hi Jonathan,
Although SureBackup job objects don't hold type properties, you can differentiate them by calling .GetType() on each job instance and then write your logic around it. Example:Best regards,
Oleg
Although SureBackup job objects don't hold type properties, you can differentiate them by calling .GetType() on each job instance and then write your logic around it. Example:
Code:
$jobs = Get-VBRSureBackupJobforeach ($job in $jobs) { $jobType = $job.GetType() $job | select Name, @{n='Type';e={$jobType}}}Oleg
Statistics: Posted by oleg.feoktistov — Dec 27, 2023 7:04 pm






