Please enter search query.
Search <book_title>...
Enterprise Vault™ 实用程序
Last Published:
2018-03-28
Product(s):
Enterprise Vault (12.3)
- 关于本指南
- ArchivePoints
- 审核查看器
- Backtrace
- CenteraPing
- Domino 归档导出程序
- Domino 配置文件文档工具
- Domino 保留计划工具
- DTrace
- EVDominoExchangeMigration 工具
- EVDuplicateCleaner
- EVEARemovalUtility
- EVFSASetRightsAndPermissions
- EVrights
- EVservice
- EVSPShortcutManager
- EVSVR
- FSARunNow
- FSAUndelete
- FSAUtility
- NTFS 到 Centera 的迁移
- 权限浏览器
- 策略管理器 (EVPM)
- 策略管理器初始化文件中的节和键名
- 策略管理器初始化文件示例
- 关于使用配置 API 运行策略管理器脚本
- ResetEVClient
- 保管库存储使用情况报告器
FSAUtility.exe.config 文件设置示例
以下示例显示了 FSAUtility.exe.config
文件,该文件经过编辑后生成各种结果。
示例 1
文件将 PHMigration 选项(针对 FSAUtility -pm)设置为使用 Windows API 调用,而非默认的 Celerra/VNX API 调用。没有定义任何其他值,因此 FSAUtility 将 Windows API 调用用于其与占位符相关的所有选项。
<?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>
示例 2
此配置生成的结果与 示例 1 相同。每个与占位符相关的选项均设置为使用 Windows API 调用。
<?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>
示例 3
在此示例中,所有与占位符相关的选项均使用 Celerra/VNX API 调用。
<?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>