--- title: "Remove-VBRAdvancedLatencyOptions" description: "Removes datastore latency settings from Veeam Backup & Replication settings. Product Edition: Enterprise Plus, Veeam Universal License This cmdlet removes datastore latency settings from Veeam Backup & Replication general settings." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/remove-vbradvancedlatencyoptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying I/O Control Settings > Remove-VBRAdvancedLatencyOptions" dateModified: "2026-08-19" --- # Remove-VBRAdvancedLatencyOptions ## Short Description Removes datastore latency settings from Veeam Backup & Replication settings. **Product Edition**: Enterprise Plus, Veeam Universal License ## Syntax ``` Remove-VBRAdvancedLatencyOptions -Options [] ``` ## Detailed Description This cmdlet removes datastore latency settings from Veeam Backup & Replication general settings. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Options

Specifies the datastore latency settings that you want to remove.

Accepts the VBRAdvancedLatencyOptions object. To create this object, run the Get-VBRAdvancedLatencyOptions cmdlet.

VBRAdvancedLatencyOptions

True

Named

True (ByPropertyName, ByValue)

`` 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). ## Examples ::: example ### Removing Datastore Latency Settings This example shows how to remove datastore latency settings from Veeam Backup & Replication general settings. ``` $latency = Get-VBRAdvancedLatencyOptions Remove-VBRAdvancedLatencyOptions -Options $latency ``` Perform the following steps: 1. Run the [`Get-VBRAdvancedLatencyOptions`](get-vbradvancedlatencyoptions.md) cmdlet. Save the result to the `$latency` variable. 2. Run the `Remove-VBRAdvancedLatencyOptions` cmdlet. Set the `$latency` variable as the `Options` parameter value. ::: ## Related Commands [`Get-VBRAdvancedLatencyOptions`](get-vbradvancedlatencyoptions.md)