This is an archive version of the document. To get the most up-to-date information, see the current version.

Remove-VBRLocation

Short Description

Removes geographical locations from Veeam Backup & Replication.

Applies to

Platform: VMware, Hyper-V

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

Syntax

Remove-VBRLocation -Location <VBRLocation[]> [-WhatIf] [-Confirm]  [<CommonParameters>]

Detailed Description

This cmdlet removes geographical locations from the Veeam Backup & Replication database.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Location

Specifies the array of locations you want to remove.

True

Named

True (ByValue,
ByProperty
Name)

False

WhatIf

Specifies whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action.

False

Named

False

False

Confirm

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

False

Named

False

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This example shows how to remove a selected geographical location from Veeam Backup & Replication.

You will need to perform the following steps:

  1. Run Get-VBRLocation to get the location you want to remove. Save the result to the $location variable.
  2. Run Remove-VBRLocation with the $location variable.

$location = Get-VBRLocation -Name "Sacramento"

Remove-VBRLocation -Location $location

Example 2

This example shows how to remove several geographical locations from Veeam Backup & Replication.

You will need to perform the following steps:

  1. Run Get-VBRLocation to get the locations you want to remove. Save the result to the $locations variable.
  2. Run Remove-VBRLocation with the $locations variable.

$locations = Get-VBRLocation -Name North*

Remove-VBRLocation -Location $locations

Related Commands

Get-VBRLocation