検索クエリーを入力してください
<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
プロビジョニング API を使用したポリシーマネージャスクリプトの例
' ' Enable a mailbox ' Dim Enabler Set Enabler = CreateObject("EnterpriseVault.ExchangeArchivePoint") Enabler.Directory = "MACHINE1" Enabler.Site = "site1" '(Entry Id or Site Name) Enabler.ExchangeServer = "DITTO" '(Entry Id or Exchange Name) Enabler.SystemMailbox = "EnterpriseVault-DITTO@evexample.local" Enabler.MailboxDN = "/o=Eng2000/ou=First Administrative Group/cn=Recipients/cn=Bruiser" Enabler.VaultStore = "VaultStoreMain" '(Entry Id or Vault Store Name) Enabler.RetentionCategory = "Business" '(Entry Id or Retention Category Name) Enabler.IndexingService = "MACHINE1" Enabler.Enable ' ' Disable a mailbox ' Dim Enabler Set Enabler = CreateObject("EnterpriseVault.ExchangeArchivePoint") Enabler.Directory = "MACHINE1" Enabler.Site = "site1" '(Entry Id or Site Name) Enabler.ExchangeServer = "DITTO" '(Entry Id or Exchange Name) Enabler.SystemMailbox = "EnterpriseVault-DITTO@evexample.local" Enabler.MailboxDN = "/o=Eng2000/ou=First Administrative Group/cn=Recipients/cn=Bruiser" Enabler.Disable
スクリプトを実行すると、読み取り専用プロパティの ReportText と LastScript を利用してスクリプトに関する情報が返されます。