答案1
XPath 选择器必须以 * 开头,但是您不能使用 * 来过滤字段,因为 Xpath 1.0 没有contains
运算符。
XPath 1.0 限制:Windows 事件日志支持 XPath 1.0 的子集。查询中可以使用的函数存在限制。例如,您可以在查询中使用
position
、Band
和函数,但目前不支持和等其他函数。timediff
starts-with
contains
答案2
使用 Powershell
Get-EventLog -LogName "System" | ?{$_.Message -like "*YourSearchString*"} | Out-GridView