Last updated on August 17, 2019
High Level Design
Step 1: The Vault Backup utility (PAReplicate.exe) generates a metadata backup in the Vault’s Metadata Backup folder, then exports the contents of the Data folder and the contents of the Metadata Backup folder to the computer on which the Backup utility is installed.
Step 2: After the replication process is complete, the external backup application copies all the files from the replicated Data folder and the Metadata folder.
Keep the replicated files on the Backup utility machine after the external backup application copies all the files. The next time you run the Backup utility to the same location, it will update only the modified files and reduce the time of the replication.
CMD Backup
Script:
@echo off
cd “c:\Program Files (x86)\PrivateArk\Replicate”
echo %date% %time% Start of task > ReplicateBatch.log
echo User=%UserName%, Path=%path% >> ReplicateBatch.log
PAReplicate.exe Vault.ini /logonfromfile user.ini /fullbackup 1>> ReplicateBatch.log 2>> ReplicateBatch.err
echo %date% %time% End of task >> ReplicateBatch.log
Scheduled Job:
-
Runas Local System (run with highest privileges set)
-
Program/script: “c:\Program Files (x86)\PrivateArk\Replicate\PAReplicate.exe”
-
Add arguments: vault.ini /logonfromfile user.ini /fullbackup
-
Start in: c:\Program Files (x86)\PrivateArk\Replicate
References:
本文详细介绍了Vault备份工具的高阶设计及步骤,包括元数据备份的生成与导出,以及如何通过外部备份应用复制文件。此外,还提供了一个用于自动化备份任务的批处理脚本示例,展示了如何设置计划任务来运行备份工具。


802

被折叠的 条评论
为什么被折叠?



