--- title: "Export-VBRLocation" description: "This cmdlet exports geographic locations created in Veeam Backup & Replication to an XML file." canonical: "https://helpcenter.veeam.com/docs/vbr/powershell/export-vbrlocation.html" breadcrumb: "Veeam PowerShell Reference > Veeam PowerShell Reference > Backup Infrastructure > Locations > Export-VBRLocation" dateModified: "2026-08-19" --- # Export-VBRLocation ## Short Description Exports geographic locations from Veeam Backup & Replication. **Platform**: VMware, Hyper-V **Product Edition**: Standard, Enterprise, Enterprise Plus, Veeam Universal License ## Syntax ``` Export-VBRLocation -Path [-Force] [] ``` ## Detailed Description This cmdlet exports geographic locations created in Veeam Backup & Replication to an XML file. ## Parameters

Parameter

Description

Type

Required

Position

Accept Pipeline Input

Force

Defines that the cmdlet will overwrite the existing destination XML file without asking a user.

SwitchParameter

False

Named

False

Path

Specifies the path to the XML file. The cmdlet will export locations to this file.

String

True

Named

True (ByPropertyName, ByValue)

`` This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see [ Microsoft Docs](https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_commonparameters?view=powershell-7). ## Examples ::: example ### Exporting Geographic Locations to XML File This command exports geographic locations from Veeam Backup & Replication to an XML file. ``` Export-VBRLocation -Path "C:\Locations\BackupNorth.xml" ``` :::