Hello, because we use much of stuff connected with Veeam and Sure jobs using powershell I have few errors / problems/ challenges
when it's starts and first of all
cmdlet
Code: Select all
Get-VBRSureBackupJob
the same asGet-VBRSureBackupJob : Cannot convert CSbRole
Code: Select all
Get-VBRSureBackupJob -Name 'Test (001) vm#OBJPLAAD'
Code: Select all
[Veeam.Backup.Core.SureBackup.CSbJob]::GetAll()
Code: Select all
Get-VBRSureBackupJob
Code: Select all
$VsbJobsAll = [Veeam.Backup.Core.SureBackup.CSbJob]::GetAll()
$VsbJobsAll[0] | Start-VBRSureBackupJob
andStart-VBRSureBackupJob : The input object cannot be bound to any parameters for the command either because the command does not take pipeline input or the input and its properties do not match any of the parameters that take pipeline input.
Code: Select all
Start-VBRSureBackupJob -Job $VsbJobsAll[0]
please helpStart-VBRSureBackupJob : Cannot bind parameter 'Job'. Cannot convert the "Veeam.Backup.Core.SureBackup.CSbJob" value of type "Veeam.Backup.Core.SureBackup.CSbJob" to type "Veeam.Backup.PowerShell.Infos.VBRSureBackupJob".