Short Description
Modifies geographical locations in Veeam Backup & Replication.
Applies to
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Set-VBRLocation -Location <VBRLocation> -Name <string> [-PassThru] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of a geographical location created in Veeam Backup & Replication.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Location | Specifies the location you want to modify. | True | Named | True (ByValue, | False |
Name | Specifies the name you want to assign to the location. The maximum length of the location name is 255 characters. | True | Named | True (ByProperty | False |
PassThru | Indicates that the command returns the output object to the Windows PowerShell console. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to change the geographical location name.
You will need to perform the following steps:
- Run Get-VBRLocation to get the location whose name you want to change. Save the result to the $location variable.
- Run Set-VBRLocation with the $location variable.
PS C:\PS> $location = Get-VBRLocation -Name "ABC North" PS C:\PS> Set-VBRLocation -Location $location -Name "Central" |
Related Commands