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
Set-VaultStoreBackupMode
Set-VaultStoreBackupMode increments the backup mode count on one vault store, on all the vault stores in a vault store group, or on all the vault stores in a site.
Enterprise Vault maintains a count of backup mode requests for each vault store. For example, if you use concurrent backup scripts in your environment, the backup mode count can be higher than 1. Backup mode is not cleared until the backup mode count reduces to 0.
Set-VaultStoreBackupMode is provided by the snap-in Symantec.EnterpriseVault.PowerShell.Snapin.dll
.
Set-VaultStoreBackupMode [-Name] <String> [-EVServerName] <String> [-EvObjectType] <EVObjectType> [<CommonParameters>]
Set-VaultStoreBackupMode -EntryId <String> [<CommonParameters>]
Table: Set-VaultStoreBackupMode parameters
Parameter | Description |
---|---|
-Name (required) | The name of the vault store, vault store group, or site. |
-EVServerName (required) | The Enterprise Vault server that owns the vault store, vault store group, or site. You must provide this parameter if you specify a vault store, vault store group, or site by name rather than ID. This allows Set-VaultStoreBackupMode to find the ID of the vault store, vault store group, or site. |
-EvObjectType (required) | The type of object passed by the Name parameter. Acceptable values are VaultStore, VaultStoreGroup and Site. You must provide this parameter if you specify a vault store, vault store group, or site by name rather than ID. |
-EntryId (required) | The ID of the vault store, vault store group, or site. |
Set-VaultStoreBackupMode VS1 EVServer-Win2k3 VaultStore
Increments the backup mode count on vault store VS1.
Set-VaultStoreBackupMode VSG1 EVServer-Win2k3 VaultStoreGroup
Increments the backup mode count on all the vault stores in vault store group VSG1.
Set-VaultStoreBackupMode Site1 EVServer-Win2k3 Site
Increments the backup mode count on all the vault stores in Site1.
Set-VaultStoreBackupMode -EntryId 1F3...Domain.local
Increments the backup mode count on the object that has the specified ID. The ID can be that of a vault store, a vault store group, or a site.
If you specify the ID of a vault store, the backup mode count is incremented on that vault store.
If you specify the ID of a vault store group or a site, the backup mode count is incremented on the vault stores that belong to the group or site.
Set-VaultStoreBackupMode -EVServerName EVServer-Win2k3 -EVObjectType VaultStore -Name VS1
Increments the backup mode count on vault store VS1.
In this example, the parameters must be named because they are not in the default order.
There is a confirmation message on completion.