Enterprise Vault 8.0.x IgnoreArchiveBitTrigger.txt

NOTE: You can copy and paste the code below to a text file, just change the extension to ".vbs" .
About This Script:This VB script must be used in conjunction with Symantec's process as decsribed in the tech article -http://seer.entsupport.symantec.com/docs/273151.htm
' archivetrigger.vbs
' VBScript to create a file for archive backup
' Author Chuck Arconi
' March 2009
' ---------------------------------------------------------------'
Apath="F:\EVARCHIVE\ARCHIVE2\IgnoreArchiveBitTrigger.txt"
Bpath="F:\EVARCHIVE\ARCHIVE2\IgnoreArchiveBitTrigger.old"
Set FSys = CreateObject("Scripting.FileSystemObject")
if FSys.FileExists(Bpath) Then
FSys.DeleteFile(Bpath)
end if
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.CreateTextFile(Apath)