I need to search a file on my disk modified after a given date using the command line.
For example:
dir /S /B WHERE modified date > 12/07/2013
You can use PowerShell to do this. Try:
Get-ChildItem -Recurse | Where-Object { $_.LastWriteTime -ge "12/27/2016" }