- 我正在使用 vbscript 查询事件查看器日志。
- 当我尝试使用 OR 运算符 @ Where Logfile='System' 或 'Application' 时,它会提供信息但会删除 TYPE 条件,并且我发现我的结果包含信息类型数据。
- 我如何结合这两个查询,这样我就不必编写额外的代码。
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where Logfile = 'Application' AND Type <> 'Information' AND TimeGenerated > ' " & dteDate & "' ")
Set colLoggedEvents = objWMIService.ExecQuery _
("Select * from Win32_NTLogEvent Where Logfile = 'System' AND Type <> 'Information' AND TimeGenerated > ' " & dteDate & "' ")
问候:msinfo