windows 8 find files modified in last hour

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:ss

So I tried

System.DateModified:>2016-01-04T05:00

and this since the first way didn't work.

System.DateModified:<2016-01-04T05:00

It is supposed to be:

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?

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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like