时间段的powershell参数,即Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2015 09:00:00" -End "03/15/2015 17:00:00"
powershell parameter of time period, i.e. Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2015 09:00:00" -End "03/15/2015 17:00:00"
我正在使用 powershell 从交换中检索一些信息。即
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2015 09:00:00" -End "03/15/2015 17:00:00"
我的问题是:此 cmdlet 检索时间戳为:
的消息
**"03/15/2015 17:00:00" > dt >= "03/13/2015 09:00:00"**
或
**"03/15/2015 17:00:00" >= dt >= "03/13/2015 09:00:00"**
否则?
在文档中,它没有提到任何相关内容。也许这并不重要,但我只想知道确切的答案。有人知道吗?
谢谢
In the doc, it does not mention anything about this.
文档实际上对此非常清楚。
来自 Exchange 2010 Get-MessageTrackingLog
cmdlet 帮助页面的 参数 部分(在后续版本中也适用):
The End parameter specifies the end date and time to return message tracking log entries. Entries are returned up to, but not including, the specified date and time.
我正在使用 powershell 从交换中检索一些信息。即
Get-MessageTrackingLog -Server Mailbox01 -Start "03/13/2015 09:00:00" -End "03/15/2015 17:00:00"
我的问题是:此 cmdlet 检索时间戳为:
的消息**"03/15/2015 17:00:00" > dt >= "03/13/2015 09:00:00"**
或
**"03/15/2015 17:00:00" >= dt >= "03/13/2015 09:00:00"**
否则?
在文档中,它没有提到任何相关内容。也许这并不重要,但我只想知道确切的答案。有人知道吗?
谢谢
In the doc, it does not mention anything about this.
文档实际上对此非常清楚。
来自 Exchange 2010 Get-MessageTrackingLog
cmdlet 帮助页面的 参数 部分(在后续版本中也适用):
The End parameter specifies the end date and time to return message tracking log entries. Entries are returned up to, but not including, the specified date and time.