如何从事件日志中检索事件的消息?

时间:2016-09-27 20:33:22

标签: powershell

每个例子,使用:

Get-EventLog system -newest 5 -After 09202016 -Message "Something",

我认为“某事”可能是正在寻找的消息类型。

虽然我没有得到任何比赛:

Get-EventLog : No matches found
At line:1 char:13
+ Get-EventLog <<<<  system -newest 5 -After  09202016 -Message The
    + CategoryInfo          : ObjectNotFound: (:) [Get-EventLog], ArgumentException
    + FullyQualifiedErrorId : GetEventLogNoEntriesFound,Microsoft.PowerShell.Commands.GetEventLogCommand

1 个答案:

答案 0 :(得分:2)

您可能想要使用通配符:

Get-EventLog system -newest 5 -After 09202016 -Message "*Something*"