Get-WBVolume

Get-WBVolume

Retrieves a list of volumes.

Syntax

Parameter Set: Disk
Get-WBVolume [-Disk] <WBDisk> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: AllVolumes
Get-WBVolume [-AllVolumes] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: CriticalVolumes
Get-WBVolume [-CriticalVolumes] [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: Policy
Get-WBVolume [-Policy] <WBPolicy> [-Confirm] [-WhatIf] [ <CommonParameters>]

Parameter Set: VolumePath
Get-WBVolume [-VolumePath] <String[]> [-Confirm] [-WhatIf] [ <CommonParameters>]

Detailed Description

The Get-WBVolume cmdlet retrieves a list of volumes. Use this cmdlet to display volumes included in the WBPolicy object, all critical volumes, all volumes, or volumes in the WBDisk object. You can also use this cmdlet to get a WBVolume object of a volume by using the drive letter of that volume.

To use this and any other Windows Server 2012 Backup cmdlets, you must be a member of the Administrators group or Backup Operators group.

Parameters

-AllVolumes

Indicates whether to list all volumes included in the backup policy.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-CriticalVolumes

Indicates whether to list only critical volumes, such as volumes that contain operating system files and components.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Disk<WBDisk>

Indicates whether to list only volumes associated with a certain disk.

Aliases

OnDisk

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

-Policy<WBPolicy>

Specifies the policy contained in the WBPolicy object to display.

Aliases

InPolicy

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

True (ByValue, ByPropertyName)

Accept Wildcard Characters?

false

-VolumePath<String[]>

Specifies a volume drive letter for the volume where you will store the backups.

Aliases

none

Required?

true

Position?

1

Default Value

none

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-Confirm

Prompts you for confirmation before running the cmdlet.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

-WhatIf

Shows what would happen if the cmdlet runs. The cmdlet is not run.

Required?

false

Position?

named

Default Value

false

Accept Pipeline Input?

false

Accept Wildcard Characters?

false

<CommonParameters>

This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see    about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).

Inputs

The input type is the type of the objects that you can pipe to the cmdlet.

  • WBPolicy,WBDisk,string

    The Get-WBVolume cmdlet queries the WBPolicy object and the WBDisk object, and it references a string that specifies a path to the volumes where you will store the backups.

    Depending on the input parameters, you can use the Get-WBVolume cmdlet to query the WBPolicy object for a list of volumes specified for backup, query the WBDisk object for a list of volumes present on a particular disk, or get a WBVolume object of the volume that the string specifies VolumePath parameter.

    In addition, you can use the Get-WBVolume cmdlet with the parameters CriticalVolumes and AllVolumes to get the WBVolume list of all critical volumes on the system and all the volumes on the system, respectively.

Outputs

The output type is the type of the objects that the cmdlet emits.

  • WBVolume []

    The Get-WBVolume cmdlet displays the array of volumes in the WBPolicy object.

Notes

  • You can add the volumes that you get from Get-WBVolume to the WBPolicy object by using the Add-WBVolume cmdlet to specify them as volumes to be backed up, or by using the New-WBBackupTarget cmdlet to specify them as backup storage locations.

Examples

Example 1: Get a list of volumes on a disk

This example gets all volumes present on a disk.

The first command stores the output of the Get-WBDisk cmdlet in the $Disks variable. The command retrieves a list of all disks on the system.

The second command uses the Get-WBVolume cmdlet to get a list of volumes on the first disk.

PS C:\> $Disks = Get-WBDisk
PS C:\> Get-WBVolume -Disk $Disks[0] 

Example 2: Get a list of all volumes in the backup policy

This example gets a list of all volumes that you added for backup in the WBPolicy object.

The first command stores the result of the Get-WBPolicy cmdlet in a variable named $Policy.

The second command gets the volumes from the $Policy variable.

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

Example 3: Get volumes for a specific drive letter

This command gets the WBVolume object for the volume that uses drive letter E:.

PS C:\> Get-WBVolume -VolumePath E: 

Example 4: Get all volumes on a computer

This command gets a list of WBVolume objects of all the volumes present on the computer.

PS C:\> Get-WBVolume -AllVolumes

Example 5: Get all critical volumes on a computer

This command gets the list of all the critical volumes present on the computer. Critical volumes are volumes that contain operating system components and files.

PS C:\> Get-WBVolume -CriticalVolumes

Add-WBVolume

Get-WBPolicy

Remove-WBVolume