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.
System.DateModified:YYYY-MM-DDThh:mm:ssSo I tried
System.DateModified:>2016-01-04T05:00and this since the first way didn't work.
System.DateModified:<2016-01-04T05:00It is supposed to be:
January 4, 2016 at 5 AMI added a > because I thought you need that for after the date and time listed. Is there an easier way to do this?
1 Answer
As you stated in your post, you need to use the syntax
System.DateModified:YYYY-MM-DDThh:mm:ss
For some reason you didn't add the seconds:
System.DateModified:>2016-01-04T05:00:00
Should be what you require.
1