.
To turn an item into a shortcut, the StorageFileWatch process checks the archive bit on the saveset (.dvs) files. However, some hardware and software platforms do not set this bit. Using the IgnoreArchiveBitTrigger.txt file will allow the items to be secured and changed from pending to shortcuts.
For an Enterprise Vault installation in a Windows Server Cluster configuration, the root of the partition cannot be referenced as a local drive in the pre and post scripts. Instead, the cluster partition share name can be used to create the trigger file. In order to determine the share name for the EV Vault Store partitions, perform the following steps from the Failover Cluster Manager in a Windows Server Cluster:
Notice the Share path in the Properties window. This path needs to be used in the pre and post scripts to create and delete the IgnoreArchiveBitTrigger.txt file. For example:
Pre backup script:
del > "\\EVServer\EVPartition01ce46760c5a1ac0$\ignorearchivebittrigger.txt"
del > "\\EVServer\EVPartition01cf5e3cc0cfdb50$\ignorearchivebittrigger.txt"
del > "\\EVServer\EVPartition01cf5e3cf36fc1b0$\ignorearchivebittrigger.txt"
Post backup script:
ECHO > "\\EVServer\EVPartition01ce46760c5a1ac0$\ignorearchivebittrigger.txt"
ECHO > "\\EVServer\EVPartition01cf5e3cc0cfdb50$\ignorearchivebittrigger.txt"
ECHO > "\\EVServer\EVPartition01cf5e3cf36fc1b0$\ignorearchivebittrigger.txt"
This will also work for N+1 Cluster Configuration. Follow the steps described above with the next Cluster Service and add the Enterprise Vault partition share path to the pre and post script.
How to use the IgnoreArchiveBitTrigger.txt file with Enterprise Vault in a Windows Server Cluster