# Getting the Job into a variable
$job = Get-VBRJob -Name "Backup Job 01"
# Getting the Job Options for the specific Job
$options = Get-VBRJobOptions -Job $job
# List the day, when health check is scheduled
$job.Options.GenerationPolicy.RecheckDays
# List other settings for the health check
$job.Options.GenerationPolicy.EnableRechek
$job.Options.GenerationPolicy.RecheckScheduleKind
$job.Options.GenerationPolicy.RecheckBackupMonthlyScheduleOptions
Hi, i am using this to get the healthcheck schedule, but i also want to edit the time. What is the correct way to set it? I see the new commadlets (Set-VBRHealthCheckOptions) do not allow this.
Can somebody point me in the right direction?