検索クエリーを入力してください
<book_title> を検索 ...
Enterprise Vault™ ユーティリティ
Last Published:
2023-03-05
Product(s):
Enterprise Vault (14.4)
- このマニュアルについて
- ArchivePoints
- Audit Viewer
- バックトレース
- CenteraPing
- Domino Archive Exporter
- Domino Profile Document Tool
- Domino の保持計画ツール
- DTrace
- EVDominoExchangeMigration ツール
- EVDominoExchangeMigration ツールの実行
- EVDuplicateCleaner
- EVEARemovalUtility
- EVFSASetRightsAndPermissions
- EVrights
- EVservice
- EVSPShortcutManager
- EVSVR
- FSARunNow
- FSAUndelete
- FSAUtility
- NTFS to Centera Migration
- Permissions Browser
- Policy Manager (EVPM)
- Policy Manager 初期設定ファイルのセクションとキー名
- Policy Manager 初期設定ファイルの例
- プロビジョニング API による Policy Manager スクリプトの実行について
- ResetEVClient
- Vault Store Usage Reporter
FSAUtility.exe.config ファイル設定の例
以下に、さまざまな結果を生成するために編集した FSAUtility.exe.config
ファイルの例を示します。
例 1
このファイルでは、デフォルトの Celerra/VNX の API 呼び出しではなく Windows API 呼び出しを使うように、PHMigration オプション(FSAUtility -pm 用)が設定されます。 他の値は定義されないので、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>