请输入搜索词进行查询
 
              搜索 <book_title>...
            
 
          Enterprise Vault™ 实用程序
                Last Published: 
				
                2020-07-20
              
              
                Product(s): 
				
                 Enterprise Vault (12.5)
              
              
            - 关于本指南
 - ArchivePoints
 - 审核查看器
 - Backtrace
 - CenteraPing
 - Domino 归档导出程序
 - Domino 配置文件文档工具
 - Domino 保留计划工具
 - DTrace
 - EVDominoExchangeMigration 工具
 - EVDuplicateCleaner
 - EVEARemovalUtility
 - EVFSASetRightsAnd权限
 - EVrights
 - EVservice
 - EVSPShortcutManager
 - EVSVR
 - FSARunNow
 - FSAUndelete
 - FSAUtility
 - NTFS 到 Centera 的迁移
 - 权限浏览器
 - 策略管理器 (EVPM)
 - 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 来返回有关脚本的信息。