是否可以使用filterhashtable通过其代码范围或不等式来过滤事件日志?
就像是:
$filter = @{
LogName = 'application'
Level = 2,3
ID = isBetween 2000 and 4000 and -ne 3333 => ?
}
Get-WinEvent -FilterHashtable @filter
最佳答案
根据documentation,ID必须仅是整数列表。
是否可以使用filterhashtable通过其代码范围或不等式来过滤事件日志?
就像是:
$filter = @{
LogName = 'application'
Level = 2,3
ID = isBetween 2000 and 4000 and -ne 3333 => ?
}
Get-WinEvent -FilterHashtable @filter
最佳答案
根据documentation,ID必须仅是整数列表。