Veritas Enterprise Vault™ Utilities
- About this guide
- ArchivePoints
- Audit Viewer
- Backtrace
- CenteraPing
- Domino Archive Exporter
- Domino Profile Document Tool
- Domino Retention Plan Tool
- DTrace
- EVDominoExchangeMigration Tool
- Running the EVDominoExchangeMigration tool
- EVDuplicateCleaner
- EVEARemovalUtility
- EVFSASetRightsAndPermissions
- EVrights
- EVservice
- EVSPShortcutManager
- EVSVR
- About EVSVR
- About the EVSVR operation settings
- Using the output from one EVSVR operation as input for another operation
- Viewing the EVSVR output log file
- Running EVSVR in interactive mode
- FSARunNow
- FSAUndelete
- FSAUtility
- NTFS to Centera Migration
- Permissions Browser
- Policy Manager (EVPM)
- Sections and keynames in Policy Manager initialization file
- Policy Manager initialization file examples
- About using the Provisioning API to run Policy Manager scripts
- Provisioning API scripting properties for Policy Manager scripts
- Provisioning API Advanced settings for Policy Manager scripts
- Provisioning API Interface methods for Policy Manager scripts
- ResetEVClient
- Vault Store Usage Reporter
EVEARemovalUtility example: processing a folder and its subfolders
Suppose that either of the following applies:
Enterprise Vault reports that it has failed to create the placeholders for several files in the folder
folder1
and its subfolders on file serverfs1
, sharee$
, because the files contain extended attributes.Or you have migrated a folder structure from a UNIX system to a Windows file server and you want to remove extended attributes from the migrated files before you archive them with Enterprise Vault.
You might process the files with EVEARemovalUtility as follows:
You enter the following command on the Enterprise Vault server to create a log file that lists details of the extended attributes for all the files on the relevant path, including subfolders:
EVEARemovalUtility.exe \\fs1\e$\folder1 -s -l -d
You examine the log file
EVEARemovalUtility--timestamp.log
, and decide that you want to remove the extended attributes from all of the listed files that contain them.You enter the following command to remove the extended attributes:
EVEARemovalUtility.exe EVEARemovalUtility--timestamp.log -f -r
As the -l parameter is not specified, the results of the removal appear in the command prompt window.
Alternatively, you can run the following command to remove the extended attributes from all of the files in
folder1
and its subfolders. This command sends its output to a new log file:EVEARemovalUtility.exe \\fs1\e$\folder1 -s -l -r
The following command has the same effect, but runs in quiet output mode. The command outputs to a log file only the summary information about the number of files it has processed:
EVEARemovalUtility.exe \\fs1\e$\folder1 -s -l -r -q
More Information