Remove-VBRRestorePoint

Short Description

Removes individual VMs from backup or replicas.

Note

If the four-eyes authorization is enabled, you cannot run this cmdlet. For more information, see the Four-Eyes Authorization section in the User Guide for VMware vSphere.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License

Syntax

Remove-VBRRestorePoint -Oib <COib[]> [-Name <String[]>] [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes backup of a selected VMs or replicas.

The backup is removed from disk. If you remove a replica, the replicated VM is removed from infrastructure.

If you need to remove replicated VM, run the Remove-VBRReplica cmdlet.

Important

This cmdlet removes all restore points of the selected VMs or replicas. Keep in mind that the subsequent backup jobs may fail to produce valid backup after you run this cmdlet.

Parameters

Parameter

Description

Type

Required

Position

Accept
Pipeline
Input

Oib

Specifies the array of VM restore points. The cmdlet will use these restore point to locate the VMs and remove the backups of these VMs.

Accepts the COib object. To get this object, run the Get-VBRRestorePoint cmdlet.

[For restore points from archive extents and capacity extents]  Accepts the VBRSOBRObjectStorageRestorePoint object. To get this object, run the Get-VBRSOBRObjectStorageRestorePoint cmdlet.

 

 

True

0

True (ByProperty
Name, ByValue)

Name

This parameter is legacy and not supported.

String[]

False

Named

False

WhatIf

Defines that the cmdlet will write a message that describes the effects of running the cmdlet without actually performing any action.

SwitchParameter

False

Named

False

Confirm

Defines that the cmdlet displays a prompt that asks if the user is sure that they want to continue.

SwitchParameter

False

Named

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.

Output Object

None.

Examples

Remove-VBRRestorePointExample 1. Removing Restore Points of Certain VM

This example shows how to remove restore points of Webserver03 VM.

$backup = Get-VBRBackup -Name "Webservers Backup Job"

$vm = Get-VBRRestorePoint -Backup $backup -Name "Webserver03"

Remove-VBRRestorePoint -Oib $vm

Perform the following steps:

  1. Run the Get-VBRBackup cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
  2. Run the Get-VBRRestorePoint cmdlet. Set the $backup variable as the Backup parameter value. Specify the Name parameter value. Save the result to the $vm variable.
  3. Run the Remove-VBRRestorePoint cmdlet. Set the $vm variable as the Oib parameter value.

Remove-VBRRestorePointExample 2. Removing Restore Points from Capacity Extent

This example shows how to remove backup of Webserver03 VM.

$backup = Get-VBRBackup -Name "Webservers Backup Job"

$vm = Get-VBRSOBRObjectStorageRestorePoint -Id "c2befce4-c7f4-4a53-a08b-e37580a682e7", "9577ab06-8ca5-4a5a-bd5c-d6124b0a4058" -CapacityTier

Remove-VBRRestorePoint -Oib $vm

Perform the following steps:

  1. Run the Get-VBRBackup cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
  1. Run the Get-VBRSOBRObjectStorageRestorePoint cmdlet. Specify the Id parameter value. Save the result to the $vm variable.
  1. Run the Remove-VBRRestorePoint cmdlet. Set the $vm variable as the Oib parameter value.

Remove-VBRRestorePointExample 3. Removing Restore Points from Archive Extent

This example shows how to remove backup of Webserver03 VM.

$backup = Get-VBRBackup -Name "Webservers Backup Job"

$vm = Get-VBRSOBRObjectStorageRestorePoint -Id "c2befce4-c7f4-4a53-a08b-e37580a682e7", "9577ab06-8ca5-4a5a-bd5c-d6124b0a4058" -Archive

Remove-VBRRestorePoint -Oib $vm

Perform the following steps:

  1. Run the Get-VBRBackup cmdlet. Specify the Name parameter value. Save the result to the $backup variable.
  1. Run the Get-VBRSOBRObjectStorageRestorePoint cmdlet. Specify the Id parameter value and provide the Archive parameter. Save the result to the $vm variable.
  1. Run the Remove-VBRRestorePoint cmdlet. Set the $vm variable as the Oib parameter value.

Related Commands