--- title: "Set-VBRGlobalNotificationOptions" description: "This cmdlet modifies global notification settings. 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." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/set-vbrglobalnotificationoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying Other Notification Settings > Set-VBRGlobalNotificationOptions" dateModified: "2026-08-19" --- # Set-VBRGlobalNotificationOptions ## Short Description Modifies global notification settings. **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Set-VBRGlobalNotificationOptions [-StorageSpaceThresholdEnabled] [-StorageSpaceThreshold ] [-DatastoreSpaceThresholdEnabled] [-DatastoreSpaceThreshold ] [-SkipVMSpaceThresholdEnabled] [-SkipVMSpaceThreshold ] [-NotifyOnSupportExpiration] [-NotifyOnUpdates] [] ``` ## Detailed Description This cmdlet modifies global notification settings. ::: 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

DatastoreSpaceThreshold

Specifies a disk space threshold for production datastore in percent.

Default: 10.

Int32

False

Named

False

DatastoreSpaceThresholdEnabled

Defines that Veeam Backup & Replication will display a warning message in the job session details when the disk space in a production datastore is below a specific value.

To specify a disk space threshold for a production datastore provide the DatastoreSpaceThreshold parameter.

Default: True.

Note: To disable this option, set the parameter value to $false. That is, parameter_name:$false.

SwitchParameter

False

Named

False

NotifyOnSupportExpiration

Defines that Veeam Backup & Replication will notify about the support expiration date in every email notification.

Default: True.

Note: To disable this option, set the parameter value to $false. That is, parameter_name:$false.

SwitchParameter

False

Named

False

NotifyOnUpdates

Defines that Veeam Backup & Replication will notify about new product versions and patches available on the Veeam website.

Default: True.

Note: To disable this option, set the parameter value to $false. That is, parameter_name:$false.

SwitchParameter

False

Named

False

SkipVMSpaceThreshold

Specifies a disk space threshold for production datastore in percent.

Default: 5.

Int32

False

Named

False

SkipVMSpaceThresholdEnabled

Defines that Veeam Backup & Replication will stop backup jobs that work with production datastores before VM snapshots are taken if free disk space in this datastore is below the specified threshold.

To specify a disk space threshold for a production datastore provide the DatastoreSpaceThreshold parameter.

Default: True.

Note: To disable this option, set the parameter value to $false. That is, parameter_name:$false.

SwitchParameter

False

Named

False

StorageSpaceThreshold

Specifies a disk space threshold for backup repositories in percent.

Default: 10.

Int32

False

Named

False

StorageSpaceThresholdEnabled

Defines that Veeam Backup & Replication will display a warning message in the job session details when the disk space in the target backup repository is below a specific value.

To specify a disk space threshold provide the StorageSpaceThreshold parameter.

Default: True.

Note: To disable this option, set the parameter value to $false. That is, parameter_name:$false.

SwitchParameter

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 [`VBRGlobalNotificationOptions`](vbrglobalnotificationoptions.md) ## Examples ::: example ### Modifying Target Backup Repository Disk Space Threshold This command sets the disk space threshold of the target backup repository to `15` percent. ``` Set-VBRGlobalNotificationOptions -StorageSpaceThreshold 15 -StorageSpaceThresholdEnabled:$False StorageSpaceThresholdEnabled : True StorageSpaceThreshold : 15 DatastoreSpaceThresholdEnabled : True DatastoreSpaceThreshold : 10 SkipVMSpaceThresholdEnabled : True SkipVMSpaceThreshold : 5 NotifyOnSupportExpiration : True NotifyOnUpdates : True ``` ::: ## Related Commands [`Get-VBRGlobalNotificationOptions`](get-vbrglobalnotificationoptions.md)