Add-WBVolume

Add-WBVolume

Adds the list of source volumes to the backup policy.

Sintaxis

Parameter Set: Default
Add-WBVolume [-Policy] <WBPolicy> [-Volume] <WBVolume[]> [ <CommonParameters>]

Descripción detallada

The Add-WBVolume cmdlet adds a list of source volumes to a WBPolicy object.

To use this cmdlet, you must be a member of the Administrators group or Backup Operators group.

Parámetros

-Policy<WBPolicy>

Specifies a WBPolicy object that contains the backup policy to update.

Alias

ninguno

¿Requerido?

true

¿Posición?

1

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿Aceptar caracteres comodín?

false

-Volume<WBVolume[]>

Specifies an array of volumes to add to the WBPolicy object.

Alias

ninguno

¿Requerido?

true

¿Posición?

2

Valor predeterminado

ninguno

¿Aceptar canalización?

True (ByPropertyName)

¿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.

  • WBVolume [], WBPolicy

    The Add-WBVolume cmdlet accepts WBVolume objects, which contain a new list of source volumes for the backup, and WBPolicy objects as input.

Salidas

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

  • WBVolume[]

    The Add-WBVolume cmdlet outputs the list of WBVolume objects in the WBPolicy object, including the WBVolume objects that the cmdlet just added.

Notas

  • The WBPolicy object must be in edit mode. To put the WBPolicy object in edit mode for a policy that you set as the scheduled backup policy, use the Get-WBPolicy cmdlet with the Editable parameter. The New-WBPolicy cmdlet creates a new WBPolicy object that is already in edit mode.

Ejemplos

Example 1: Add a list of volumes to a backup policy

This example adds a list of volumes for backup to the WBPolicy object.

The first command stores the output of the Get-WBVolume cmdlet in the variable named $Volumes.

The second command calls the Get-WBPolicy cmdlet and assigns the result to the $Policy variable.

The third command adds the volumes in the $Volumes variable to the backup policy.

PS C:\> $Volumes = Get-WBVolume
PS C:\> $Policy = Get-WBPolicy
PS C:\> Add-WBVolume -Policy $Policy -Volume $Volumes

Temas relacionados

Get-WBPolicy

Get-WBVolume

Remove-WBVolume