Has anyone been successful in creating a query that will perform a search of the Security Event Log looking only for Event ID's 633 or 644? Or something to that effect.
None of these work:
LogFile = "Security" AND
EventCode = 633 OR
EventCode = 641
OR
LogFile = "Security" AND
"EventCode = 633 OR
EventCode = 641"
OR
LogFile = "Security" AND
'EventCode = 633 OR
EventCode = 641'
Thanks.
None of these work:
LogFile = "Security" AND
EventCode = 633 OR
EventCode = 641
OR
LogFile = "Security" AND
"EventCode = 633 OR
EventCode = 641"
OR
LogFile = "Security" AND
'EventCode = 633 OR
EventCode = 641'
Thanks.
Comment