hello, thanks, first time poster,
problem: `rclone copy` will run before the job completes.
$JobObject = Get-VBRComputerBackupJob | where {$_.Name -eq "ABP_EN10"}
# start job but do not wait until job completes
Start-VBRComputerBackupJob $JobObject
# rclone will not find any new files, as the job has not completed yet
rclone copy .....
how can i have the equivalent of
$JobObject = Get-VBRComputerBackupJob | where {$_.Name -eq "ABP_EN10"}
# run job, wait until completed
RunWait-VBRComputerBackupJob $JobObject
# now, rclone will find new files
rclone copy .....