The forfiles
command works without resorting to PowerShell. The article is here:
Find files based on modified time
Microsoft Technet documentation: forfiles
For the example above:
forfiles /P <dir> /S /D +12/07/2013
- /P The starting path to search
- /S Recurse into sub-directories
- /D Date to search, the “+” means “greater than” or “since”