请输入搜索词进行查询
搜索 <book_title>...
Enterprise Vault™ 管理指南
Last Published:
2021-04-08
Product(s):
Enterprise Vault (14.1)
- 关于本指南
- 管理员安全管理
- 日常管理
- 关于 Exchange 邮箱归档报告
- 关于启动或停止任务或服务
- 监控日记邮箱
- 关于监控磁盘
- 关于维护 SQL 数据库
- 使用 SQL Always On 可用性组
- 关于管理保管库存储组和共享
- 关于管理安全副本
- 关于管理分区翻转
- 关于过期和删除
- 使用保留类别和保留计划
- 对新的邮箱启用归档
- 关于移动归档
- 用于管理归档的 PowerShell cmdlet
- 用于管理归档权限的 PowerShell cmdlet
- 使用 Enterprise Vault 进行记录管理
- 自动筛选事件
- 管理索引
- 高级 Domino 邮箱和桌面策略设置
- 高级 Exchange 邮箱和桌面策略设置
- 编辑 Exchange 邮箱和桌面高级设置
- Exchange 邮箱策略高级设置
- 归档常规(Exchange 邮箱策略高级设置)
- 归档常规(Exchange 邮箱策略高级设置)
- Exchange 桌面策略高级设置
- Office Mail App(Exchange 桌面策略高级设置)
- Outlook(Exchange 桌面策略高级设置)
- 保管库缓存器(Exchange 桌面策略高级设置)
- 虚拟保管库(Exchange 桌面策略高级设置)
- 高级 Exchange 日记策略设置
- Exchange 公用文件夹策略高级设置
- 高级 SMTP 策略设置
- 站点属性高级设置
- 编辑站点属性高级设置
- 站点属性高级设置
- 内容转换(站点属性高级设置)
- 文件系统归档(站点属性高级设置)
- IMAP(站点属性高级设置)
- 索引(站点属性高级设置)
- Skype for Business(站点属性高级设置)
- SQL Server(站点属性高级设置)
- SMTP(站点属性高级设置)
- 存储(站点属性高级设置)
- 内容转换(站点属性高级设置)
- 计算机属性高级设置
- 编辑计算机属性高级设置
- 计算机属性高级设置
- 代理(计算机属性高级设置)
- 文件系统归档(计算机属性高级设置)
- IMAP(计算机属性高级设置)
- 索引(计算机属性高级设置)
- 存储(计算机属性高级设置)
- 任务属性高级设置
- 高级个人存储管理属性
- 分类策略高级设置
- 管理存储队列
- 自动监控
- 管理扩展内容提供商
- 导出归档
- Enterprise Vault 消息队列
- 自定义和最佳做法
- 构造块配置中的故障转移
- 附录 A. Enterprise Vault 使用的端口
- 附录 B. 实用的 SQL 查询
- 附录 C. 故障排除
- 安装问题
- Microsoft SQL Server 问题
- 服务器问题
- 客户端问题
- 启用或处理邮箱时的问题
- 在保管库缓存器同步方面出现的问题
- 有关 Enterprise Vault 组件的问题
- 有助于故障排除的技术
- 关于移动 Indexing Service
- 附录 D. Enterprise Vault 帐户和权限
关于使用脚本配置基于时间和配额的归档的注释
可以使用 Enterprise Vault 策略管理器脚本配置邮箱的归档策略。
有关策略管理器的信息,请参见“实用程序指南”。
此处显示一个示例脚本。此脚本将基于时间和配额的归档设置应用于邮箱。它还配置一个特殊文件夹以覆盖邮箱级设置。
脚本的第一个部分对邮箱进行如下配置:
归档超过三个月的项目。
立即归档大于 4 MB 的项目。
如果需要,继续进行基于配额的归档,直到剩余 30% 的邮箱存储空间可用。基于配额的归档从大于 1 MB 且超过一天的任何项目开始。
创建快捷方式,并删除原始项目。
脚本的第二个部分对名为 \Inbox\Special Project
的邮箱文件夹进行如下配置:
归档早于 0 天的项目。
不创建快捷方式,也不删除原始项目。
您也许希望配置一个特殊文件夹(如此处所示),以替代手动归档。用户可以将项目移动到该文件夹中,Enterprise Vault 不久之后将自动归档这些项目。
示例脚本如下所示:
[directory] directorycomputername=evserver sitename=evsite [mailbox] distinguishedname=/o=First Organization/ou=First Administrative Group/ cn=Recipients/cn=recipient_1 ; Using Age & Quota based archiving ; [filter] name=AGEANDQUOTA ; Quota settings ; Archive to 30% of quota is available ; Start with large items >1MB that are more than 1 day old UsePercentageQuota=true PercentageQuota=30 UseInactivityPeriod=true QMinimumAgeThresholdPeriod=1 QMinimumAgeThresholdUnits=Days QPrioritizeItemsOver=1024 QPrioritizeLargeItems=true ; Age settings ; Archive all items older than 3 months ; Archive all items >4MB immediately. UseInactivityPeriod=true InactivityPeriod=3 InactivityUnits=Months ALargeItemThresholdPeriod=0 ALargeItemThresholdUnits=Days APrioritizeItemsOver=4096 APrioritizeLargeItems=true ; Create shortcuts and delete the original item ; CreateShortcut=true DeleteOriginal=true ; Do not archive unread items Unreadmail=false ; Special case zero day folder to override Age & Quota settings ; [filter] name=ZeroDaysNoShortcut ; Archive Items after 0 days, delete the original and ; do not leave a shortcut ; UseInactivityPeriod=true UsePercentageQuota=false InactivityPeriod=0 InactivityUnits=Days CreateShortcut=false DeleteOriginal=true Unreadmail=true ; Set the mailbox to use Age & Quota based archiving as ; defined in the policy above ; [folder] name=MailboxRoot filtername=AGEANDQUOTA Overridearchivelocks=true ; Apply the ZeroDaysNoShortcut policy to a special project folder ; [folder] name=\Inbox\Special Project filtername=ZeroDaysNoShortcut Overridearchivelocks=true