This is an archive version of the document. To get the most up-to-date information, see the current version.

New-VSBJobOptions

Short Description

Sets SureBackup job options.

Applies to

Platform: VMware, Hyper-V

Product Edition: Enterprise, Enterprise Plus, Veeam Universal License

Syntax

New-VSBJobOptions [-WarningAction <ActionPreference>] [-WarningVariable <String>] [<CommonParameters>]

Detailed Description

This cmdlet lets you edit job settings of SureBackup jobs.

This cmdlet returns the CDRJobOptions object containing the default settings of the SureBackup job you want to edit. You can customize any setting that you want to apply. This object is then used in the Set-VSBJobOptions cmdlet.

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example

This command creates a CDRJobOptions object with the following settings:

  • The EmailNotification is enabled,
  • The EmailNotificationAddresses is set to mailto@veeam.com,
  • The RunningVmsNumber is set to 6,
  • The other settings are left by default.

$sureoptions = New-VSBJobOptions

$sureoptions.EmailNotification = $true

$sureoptions.EmailNotificationAddresses = "mailto@veeam.com"

$sureoptions.RunningVmsNumber = 6

$sureoptions

RunManually                : True
ShutdownTestVms            : True
EmailNotification          : True
EmailNotificationAddresses : mailto@veeam.com
SnmpNotification           : False
LinkWithJobs               : False
RunningVmsNumber           : 6
Validation                 : False
SkipValidationForAppGroup  : True