每个例子,使用:
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
答案 0 :(得分:2)
您可能想要使用通配符:
Get-EventLog system -newest 5 -After 09202016 -Message "*Something*"