New-VSBJobOptions
Short Description
Sets SureBackup job options.
Applies to
Platform: VMware, Hyper-V
Product Edition: Enterprise, Enterprise Plus
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 about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
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 |