Hi
@superdevo, for the decoupled Health Check or what you see in the job settings?
https://helpcenter.veeam.com/docs/backu ... ml?ver=120 For decoupled
For the one in the job UI settings, just use
Get-VBRJob
Get-VBRJobOptions
The returned object from Get-VBRJobOptions is what you're looking for:
PS C:\Users\Administrator> $OptsJ.GenerationPolicy | gm | where-object {$_.name -like '*recheck*' -OR $_.name -like '*rechek*'}
TypeName: Veeam.Backup.Model.CDomGenerationPolicy
Name MemberType Definition
---- ---------- ----------
EnableRechek Property bool EnableRechek {get;set;}
EnableSimpleObjectStorageRecheck Property bool EnableSimpleObjectStorageRecheck {get;set;}
RecheckBackupMonthlyScheduleOptions Property Veeam.Backup.Model.CDomFullBackupMonthlyScheduleOptions RecheckBackup...
RecheckDays Property System.DayOfWeek[] RecheckDays {get;set;}
RecheckScheduleKind Property Veeam.Backup.Model.EFullBackupScheduleKind RecheckScheduleKind {get;s...
RecheckTime Property timespan RecheckTime {get;set;}
Play with that and see what you find. Once it's set the way you want, use
Set-VBRJobOptions -Job $job -Options $OptsVariable