The VEEAM job scheduler is really basic. It’s not possible to schedule a job on different times in a week for example.
You can create a task schedule job to start the back-up on every possible time.
Start -> Task scheduler -> Create Task
– Name (Job name and Time)
– Check Run whether user is logged on or not
– Check Run with highest privileges
– Configure for: Windows server 2012 R2 (or other late OS)
– Triggers (choose a time)
– Action -> New -> Start a program
– Program script: powershell
– Arguments:
Start job normally:
1 |
-command &{Add-PSSnapin VeeamPSSnapIn; Get-VBRJob | where {$_.Name –eq “VEEAMJOB”} | Start-VBRJob;} |
Start full backup you give the value -fullbackup after start-vbrjob:
1 |
-command &{Add-PSSnapin VeeamPSSnapIn; Get-VBRJob | where {$_.Name –eq “VEEAMJOB”} | Start-VBRJob –FullBackup;} |