I'm investigating a problem on my PC (more exactly a sharing violation during the xcopy
of a bunch of files), and I'm thinking of verifying the event log, but I'd like to investigate all events which occured between the beginning of that xcopy
and the end of it, something like:
wevtutil qe * /q:"*[System[TimeCreated[@SystemTime>='2017-04-11T03:30:00' and @SystemTime<'2017-04-11T03:33:00']]]" /f:text
(the timestamps are retrieved from the commands echo [!TIME!]
, one just before and one just behind the xcopy
command)
This command is not accepted, as the usage of *
is not permitted while working with wevtutil qe
. I can have a look inside the event viewer but then I'd need to investigate all possible logs (and I'm not very familiar with this).
Is there a way to interrogate all event logs and filter them on timestamps?