--- title: "Get-VBRStorageLatencyControlOptions" description: "Returns storage latency control settings on the production datastores. Product Edition: Enterprise, Enterprise Plus, Veeam Universal License This cmdlet returns settings of the storage latency control on the production datastores." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/get-vbrstoragelatencycontroloptions.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Veeam Backup & Replication Settings > Specifying I/O Control Settings > Get-VBRStorageLatencyControlOptions" dateModified: "2026-08-19" --- # Get-VBRStorageLatencyControlOptions ## Short Description Returns storage latency control settings on the production datastores. **Product Edition**: Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Get-VBRStorageLatencyControlOptions [] ``` ## Detailed Description This cmdlet returns settings of the storage latency control on the production datastores. ## Parameters `` 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 `VBRLatencyControlOptions` object that contains settings of the storage latency control on the production datastores. ## Examples ::: example ### Getting Settings of Storage Latency Control on Production Datastore This command returns settings of the storage latency control on the production datastore. The cmdlet output will contain the following details on the storage latency control: `Enable`, `LatencyLimitMs`, `ThrottlingIOLimitMs` and `AdvancedOptions`. ``` Get-VBRStorageLatencyControlOptions Enabled LatencyLimitMs ThrottlingIOLimitMs AdvancedOptions ------- -------------- ------------------- --------------- False 20 30 {} ``` :::