windows 8 find files modified in last hour

COKEDUDE

Member
Messages
53
In windows 8 I am trying to find files modified in the last hour. After reading these two links I thought I could do this.

Code:
System.DateModified:YYYY-MM-DDThh:mm:ss

So I tried
Code:
System.DateModified:>2016-01-04T05:00
and
Code:
System.DateModified:<2016-01-04T05:00
. It is supposed to be:
Code:
January 4, 2016 at 5 AM
I added a > because I thought you need that for after the date and time listed. Is there an easier way to do this?



Date and Time Formats
https://msdn.microsoft.com/en-us/library/bb266512(VS.85).aspx
 
Last edited:
How about this?
Code:
System.DateModified:‎>2016-01-04 05:00
 
Back
Top