Please enter search query.
Search <book_title>...
Veritas Enterprise Vault™ Utilities
Last Published:
2017-07-28
Product(s):
Enterprise Vault (12.1)
- 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
Example FSAUtility.exe.config file settings
The following examples show a FSAUtility.exe.config
file that has been edited to produce various results.
Example 1
The file sets the PHMigration option (for FSAUtility -pm) to use a Windows API call rather the default Celerra/VNX API call. No other values are defined, so FSAUtility uses the Windows API call for all of its placeholder-related options.
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="PHMigration" type="System.Configuration.DictionarySectionHandler"/> <section name="BulkRecall" type="System.Configuration.DictionarySectionHandler"/> <section name="MovePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="RecreatePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="OrphanPlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <configSections> <PHMigration> <add key="CheckCelerraOfflineAttribute" value = "0"/> </PHMigration> <MovePlaceHolder> <!--><add key="CheckCelerraOfflineAttribute" value = "0"/>--> </MovePlaceHolder> <BulkRecall> <!--><add key="CheckCelerraOfflineAttribute" value = "0"/>--> </BulkRecall> <RecreatePlaceHolder> <!--><add key="CheckCelerraOfflineAttribute" value = "0"/>--> </RecreatePlaceHolder> <OrphanPlaceHolder> <!--><add key="CheckCelerraOfflineAttribute" value = "0"/>--> </OrphanPlaceHolder> <runtime> <generatePublisherEvidence enabled="false"/> </runtime> </configuration>
Example 2
This configuration produces the same result as Example 1. Each placeholder-related option is set to use the Windows API call.
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="PHMigration" type="System.Configuration.DictionarySectionHandler"/> <section name="BulkRecall" type="System.Configuration.DictionarySectionHandler"/> <section name="MovePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="RecreatePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="OrphanPlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <configSections> <PHMigration> <add key="CheckCelerraOfflineAttribute" value = "0"/> </PHMigration> <MovePlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "0"/> </MovePlaceHolder> <BulkRecall> <add key="CheckCelerraOfflineAttribute" value = "0"/> </BulkRecall> <RecreatePlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "0"/> </RecreatePlaceHolder> <OrphanPlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "0"/> </OrphanPlaceHolder> <runtime> <generatePublisherEvidence enabled="false"/> </runtime> </configuration>
Example 3
In this example, all of the placeholder-related options use the Celerra/VNX API call.
<?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> <section name="PHMigration" type="System.Configuration.DictionarySectionHandler"/> <section name="BulkRecall" type="System.Configuration.DictionarySectionHandler"/> <section name="MovePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="RecreatePlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <section name="OrphanPlaceHolder" type="System.Configuration.DictionarySectionHandler"/> <configSections> <PHMigration> <add key="CheckCelerraOfflineAttribute" value = "1"/> </PHMigration> <MovePlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "1"/> </MovePlaceHolder> <BulkRecall> <add key="CheckCelerraOfflineAttribute" value = "1"/> </BulkRecall> <RecreatePlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "1"/> </RecreatePlaceHolder> <OrphanPlaceHolder> <add key="CheckCelerraOfflineAttribute" value = "1"/> </OrphanPlaceHolder> <runtime> <generatePublisherEvidence enabled="false"/> </runtime> </configuration>