Enterprise Vault™ PowerShell Cmdlet
- Enterprise Vault PowerShell Cmdlet 简介
- 归档:Exchange
- 归档:FSA
- 归档:Skype for Business
- 归档:SMTP
- 备份
- 分类
- 数据库
- IMAP 访问
- 索引
- 记录管理
- 报告
- 保留计划
- 基于角色的管理
- 站点和服务器
- 任务和服务
- 保管库存储和归档
Get-EVJournalReport
Get-EVJournalReport 生成指定日期间隔内从指定日记归档中成功归档的消息的报告。
Get-EVJournalReport [-ArchiveId] <String> [-Properties] <String>] [-StartDate] <Date> [-EndDate] <Date> [-ReportFileLocation] <String> [<CommonParameters>]
表:Get-EVJournalReport 参数
参数 |
说明 |
---|---|
-ArchiveId |
指定要搜索的成功归档项目的日记归档 ID。可以使用 Get-EVArchive 获取所需 ID。 |
-Properties |
日记报告需要逗号分隔的索引属性列表。有关这些属性的更多信息,请参见《API 参考指南》。 |
-StartDate |
在报告中获取成功归档项目的起始日期。使用 MM/DD/YYYY 格式输入日期。 |
-EndDate |
在报告中获取成功归档项目的截止日期。使用 MM/DD/YYYY 格式输入日期。 |
-ReportFileLocation |
保存日记报告的文件夹路径。 |
无。
Get-EVJournalReport 不返回输出。根据提供的 ReportFileLocation 生成报告。
C:\PS> Get-EVJournalReport -ArchiveId "19075DCBC51C8694CA623D39005346DCD1110000royaleva" -StartDate 01/15/2010 -EndDate 01/30/2010 -ReportFileLocation "E:\REPORT"
生成指定日期间隔内从指定日记归档中成功归档的消息的报告,日记报告中包含默认属性 (mdat、adat、iden)。
C:\PS> Get-EVJournalReport -ArchiveId "19075DCBC51C8694CA623D39005346DCD1110000royaleva" -Properties "rcat,edat,ndte,subj,auth,ssid" -StartDate 01/15/2010 -EndDate 01/30/2010 -ReportFileLocation "E:\REPORT"
生成指定日期间隔内从指定日记归档中成功归档的消息的报告,日记报告中包含默认属性 (mdat、adat、iden) 和所提供的属性。
C:\PS> Get-EVArchive | ForEach-Object { Get-EVJournalReport -ArchiveId $_.ArchiveId -StartDate 01/15/2010 -EndDate 01/30/2010 -ReportFileLocation "E:\REPORT"}
生成指定日期间隔内每个日记归档中成功归档的消息的报告,日记报告中包含默认属性 (mdat、adat、iden)。
C:\PS> Get-EVArchive | ForEach-Object { Get-EVJournalReport -ArchiveId $_.ArchiveId -Properties "rcat,edat,ndte,subj,auth,ssid" -StartDate 01/15/2010 -EndDate 01/30/2010 -ReportFileLocation "E:\REPORT"}
生成指定日期间隔内每个日记归档中成功归档的消息的报告,包含默认属性 (mdat、adat、iden) 及 cmdlet 中提供的额外属性。