Reputation: 10638
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?
Upvotes: 0
Views: 1390
Reputation: 3361
Timeofday is measured in seconds. To filter events later than 13:30, say, set it to greater than 48600 (13*3600 + 30*60
).
Upvotes: 1
Reputation: 59208
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).
Upvotes: 1