Get-WBPerformanceConfiguration

Get-WBPerformanceConfiguration

Retrieves the current volume backup performance settings.

Sintaxis

Parameter Set: OverallSetting
Get-WBPerformanceConfiguration [-OverallPerformanceSetting] [ <CommonParameters>]

Parameter Set: Volume
Get-WBPerformanceConfiguration [-Volume] <WBVolume> [ <CommonParameters>]

Descripción detallada

The Get-WBPerformanceSetting cmdlet retrieves the current performance settings for volume backups. The settings are applicable only for volume backups; these settings are not applicable for files, folders, system state, or applications. The settings apply globally to all volumes in a backup, or to specific volumes. The valid settings are:

-- AlwaysFull: The time to create a backup is proportional to the size of volume being backed up. This setting applies at a global level for all volumes or for specific volumes.

-- AlwaysIncremental: Increase the backup speed by just tracking the changes between the last and current backup. This option is not recommended for servers with disk-intensive operation which may experience reduced disk throughput on volumes included in the backup. This can be set at a global level for all volumes or specific for some volumes.

-- Custom: This is the global setting reported in case there is a specific volume level setting set.

Parámetros

-OverallPerformanceSetting

If specified, indicates that the returned data is to be for the global setting.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

-Volume<WBVolume>

Specifies the WBVolume object for which the current performance settings are retrieved.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

false

¿Aceptar caracteres comodín?

false

<CommonParameters>

Este cmdlet admite los siguientes parámetros comunes: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer y -OutVariable. Para obtener más información, consulte about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Entradas

El tipo de entrada es el tipo de los objetos que se pueden canalizar al cmdlet.

  • SwitchParameter, WBVolume

    Indicates either global settings or volume settings.

Salidas

El tipo de resultado es el tipo de objetos que emite el cmdlet.

Ejemplos

Example 1:Retrieve global settings

This example retrieves the global settings for all volumes with the AlwaysIncremental setting.

PS C:\> Get-WBPerformanceConfiguration -OverallPerformanceSetting AlwaysIncremental

Example 2: Retrieve settings for a volume

This example retrieves the settings for a specific volume with the AlwaysFull setting.

PS C:\> $Backup = Get-WBBackupSet
PS C:\> Get-WBPerformanceConfiguration -Volume $Backup.Volume[1] AlwaysFull

Temas relacionados

Set-WBPerformanceConfiguration