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
- 保管库存储使用情况报告器
配置 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 来返回有关脚本的信息。