--- title: "New-VBRComputerWarningOptions" description: "Defines notification settings for computers not processed by Veeam Agent jobs. Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License This cmdlet creates the VBRComputerWarningOptions object." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/new-vbrcomputerwarningoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Veeam Agent Management > Working with Veeam Agent Backup Jobs and Policies > Veeam Agent Job Advanced Settings > New-VBRComputerWarningOptions" dateModified: "2026-08-19" --- # New-VBRComputerWarningOptions ## Short Description Defines notification settings for computers not processed by Veeam Agent jobs. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` New-VBRComputerWarningOptions [-Enable] [-WarningPolicy ] [] ``` ## Detailed Description This cmdlet creates the `VBRComputerWarningOptions` object. This object defines notification settings for computers not processed by Veeam Agent jobs. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Enable

Defines that the notification for computers not processed by Veeam Agent jobs are enabled. If you want to disable these notifications, set this parameter to the $false value: Enable:$false.

Default: True.

SwitchParameter

False

Named

False

WarningPolicy

Specifies a number of days within which Veeam Agent must send notifications. When this period is exceeded, the cmdlet will send notifications if Veeam Agent job did not process machines within the specified period.

Permitted values: 1-999.

Default: 14

Int32

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 `VBRComputerWarningOptions` object that defines notifications settings for computers not processed by Veeam Agent jobs. ## Examples ::: example ### Defining Notifications Settings for Computers not Processed by Veeam Agent Jobs This command enables notification settings for computers not processed by Veeam Agent jobs. ``` $warning = New-VBRComputerWarningOptions -Enable ``` :::