Veritas Enterprise Vault™ PowerShell Cmdlets
- Introducing the Enterprise Vault PowerShell cmdlets
- Archiving: Exchange
- Archiving: FSA
- Archiving: Skype for Business
- Archiving: SMTP
- Backup
- Classification
- Databases
- IMAP access
- Indexing
- Records management
- Retention plans
- Roles-based administration
- Sites and servers
- Tasks and services
- Vault stores and archives
Get-EVRBAAzStoreXml
Get-EVRBAAzStoreXml downloads the RBA store from the Enterprise Vault Directory database to a file called EvAzStore.xml
in the specified folder.
Specify the Enterprise Vault Directory database using the -EVDirectoryServer parameter. If the folder specified already contains a file called EvAzStore.xml
, Get-EVRBAAzStoreXml overwrites it.
You can edit EvAzStore.xml
using a suitable editor, then upload it to the Enterprise Vault Directory database using Set-EVRBAAzStoreXml.
Permission to execute this cmdlet is restricted to the Vault Service Account.
If you execute Get-EVRBAAzStoreXml from a server other than an Enterprise Vault server, it prompts for the -EVDirectoryServer parameter, unless -EVDirectoryServer is already specified as a parameter.
Get-EVRBAAzStoreXml is provided by Symantec.EnterpriseVault.PowerShell.AdminAPI.dll, which is loaded by the Enterprise Vault Management Shell.
Get-EVRBAAzStoreXml [-FolderPath] <String> -EVDirectoryServer <String> [<CommonParameters>]
Table: Get-EVRBAAzStoreXml parameters
Parameter | Description |
---|---|
-FolderPath (required) | Specifies the folder to which |
-EVDirectoryServer (required) | Specifies the host name, fully qualified domain name, or DNS alias of an Enterprise Vault Directory server. Note that although this parameter is required, the cmdlet determines it automatically if it can. |
Get-EVRBAAzStoreXml "C:\EvAzStoreXmlLocation"
Downloads
EvAzStore.xml
from the locally installed Enterprise Vault server, toC:\EvAzStoreXmlLocation
.Get-EVRBAAzStoreXml "C:\EvAzStoreXmlLocation" -EVDirectoryServer "evserver.example.com"
Downloads
EvAzStore.xml
from evserver.example.com toC:\EvAzStoreXmlLocation
.Get-EVRBAAzStoreXml -FolderPath "C:\EvAzStoreXmlLocation" -EVDirectoryServer "evserver.example.com"
Downloads
EvAzStore.xml
from evserver.example.com toC:\EvAzStoreXmlLocation
. Note the use of named parameters.
None.
See Set-EVRBAAzStoreXml.