Sysinternals Process Monitor (ProcMon): Working with Time of Day Filter

950 views Asked by At

I am using Sysinternals Process Monitor to debug some incoming events. Now I am trying to create a filter on 'Time Of Day' in order to filter those incoming events which time is greater than an specific time.

For example, If I want to obtain those incoming events which time is greater than '13:30' how can I do this?

2

There are 2 answers

0
Thomas Weller On BEST ANSWER

Use Date&Time, more than and give a date and time. Since it is 10.10.2020 on my machine, it seems that time is localized (Germany here).

Time filter in Process Monitor

0
yacc On

Timeofday is measured in seconds. To filter events later than 13:30, say, set it to greater than 48600 (13*3600 + 30*60).