--- title: "Set-VBRUnixScheduleOptions" description: "This cmdlet modifies schedule for Unix jobs, created with Veeam Agent for Oracle Solaris or Veeam Agent for IBM AIX. To modify settings, specify new values for the necessary parameters." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrunixscheduleoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Job Schedule > Set-VBRUnixScheduleOptions" dateModified: "2026-08-19" --- # Set-VBRUnixScheduleOptions ## Short Description Modifies schedule for Unix jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRUnixScheduleOptions -Options [-Type ] [-DailyOptions ] [-MonthlyOptions ] [-PeriodicallyOptions ] [-EnableRetry] [-RetryCount ] [-RetryTimeout ] [-EnableBackupTerminationWindow] [-TerminationWindow ] [] ``` ## Detailed Description This cmdlet modifies schedule for Unix jobs, created with Veeam Agent for Oracle Solaris or Veeam Agent for IBM AIX. ::: note To modify settings, specify new values for the necessary parameters. The cmdlet will overwrite the previous parameter values with new values. The parameters that you omit will remain unchanged. ::: ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

DailyOptions

For daily schedule.

Specifies daily schedule settings. The cmdlet will create the server schedule with these settings.

Accepts the VBRDailyOptions object. To get this object, run the New-VBRDailyOptions cmdlet.

VBRDailyOptions

False

Named

False

EnableBackupTerminationWindow

Enables the option to stop the Veeam Agent backup job if it exceeds the backup window.

SwitchParameter

False

Named

False

EnableRetry

Enables the option to run a Unix job again in case it fails.

SwitchParameter

False

Named

False

MonthlyOptions

For monthly schedule.

Specifies monthly schedule settings. The cmdlet will create the server schedule with these settings.

Accepts the VBRMonthlyOptions object. To get this object, run the New-VBRMonthlyOptions cmdlet.

VBRMonthlyOptions

False

Named

False

Options

Specifies the Unix jobs schedule settings that you want to modify.

Accepts the VBRUnixScheduleOptions object. To get this object, run the New-VBRUnixScheduleOptions cmdlet.

VBRUnixScheduleOptions

True

Named

True (ByValue)

PeriodicallyOptions

For periodical run.

Specifies periodical schedule settings. The cmdlet will create the server schedule with these settings.

Accepts the VBRPeriodicallyOptions object. To get this object, run the New-VBRPeriodicallyOptions cmdlet.

VBRPeriodicallyOptions

False

Named

False

RetryCount

For the EnableRetry parameter.

Specifies the number of attempts to run the failed Unix backup job.

Int32

False

Named

False

RetryTimeout

For the EnableRetry parameter.

Specifies a timeout interval between retry attempts in minutes.

Int32

False

Named

False

TerminationWindow

Specifies the time interval within which the backup job must complete.

Accepts the VBRBackupWindowOptions object. To create this object, run the New-VBRBackupWindowOptions cmdlet.

VBRBackupWindowOptions

False

Named

False

Type

Specifies the Unix schedule type.

  • Daily: use this option to run the job at a specific time daily.

  • Monthly: use this option to run the job once a month on specific days.

  • Periodically: use this option to run the job repeatedly throughout a day with a specific time interval.

  • AfterJob: use this option to create a chain of jobs. Veeam Backup & Replication will start the Unix job after the other backup job.

    Note: The AfterJob option does not work for backup policy.

VBRServerScheduleType

False

Named

False

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Output Object The cmdlet returns the [`VBRUnixScheduleOptions`](vbrunixscheduleoptions.md) object that defines schedule for Unix jobs. ## Examples ::: example ### Modifying Schedule for Unix Jobs This example shows how to modify schedule for Unix jobs. The example also restricts the job to a backup window from 20:00 to 22:59, Monday to Friday. ``` $daily = New-VBRDailyOptions -DayOfWeek Friday -Period 7:00 $unixschedule = New-VBRUnixScheduleOptions -Type Daily -DailyOptions $daily $newdaily = New-VBRDailyOptions -DayOfWeek Wednesday -Period 7:00 $window = New-VBRBackupWindowOptions -FromDay Monday -ToDay Friday -FromHour 20 -ToHour 22 -Enabled Set-VBRUnixScheduleOptions -Options $unixschedule -DailyOptions $newdaily -EnableBackupTerminationWindow -TerminationWindow $window ``` Perform the following steps: 1. Run the [`New-VBRDailyOptions`](new-vbrdailyoptions.md) cmdlet. Specify the `DayOfWeek` and `Period` parameter values. Save the result to the `$daily` variable. 2. Run the [`New-VBRUnixScheduleOptions`](new-vbrunixscheduleoptions.md) cmdlet. Set the `Daily` value as the `Type` parameter value. Set the `$daily` variable as the `DailyOptions` parameter value. Save the result to the `$unixschedule` variable. 3. Run the [`New-VBRDailyOptions`](new-vbrdailyoptions.md) cmdlet. Specify the `DayOfWeek` and `Period` parameter values. Save the result to the `$newdaily` variable. 4. Run the [`New-VBRBackupWindowOptions`](new-vbrbackupwindowoptions.md) cmdlet. Specify the `FromDay`, `ToDay`, `FromHour` and `ToHour` parameter values. Provide the `Enabled` parameter. Save the result to the `$window` variable. 5. Run the `Set-VBRUnixScheduleOptions` cmdlet. Set the `$unixschedule` variable as the `Options` parameter value. Set the `$newdaily` variable as the `DailyOptions` parameter value. Provide the `EnableBackupTerminationWindow` parameter. Set the `$window` variable as the `TerminationWindow` parameter value. ::: ## Related Commands - [`New-VBRBackupWindowOptions`](new-vbrbackupwindowoptions.md) - [`New-VBRDailyOptions`](new-vbrdailyoptions.md) - [`New-VBRUnixScheduleOptions`](new-vbrunixscheduleoptions.md)