Originally posted on: http://geekswithblogs.net/AskPaula/archive/2014/05/06/156211.aspx
Here's an example using forfiles to scan your storage. This command line will look for files over 200mb on the C:\ drive after 1/1/2014.forfiles /P C:\ /M *.* /S /D +"01/01/2014" /C "cmd /c if @fsize gtr 209715200 echo @path @fsize @fdate @ftime"
For more information, check out Microsoft's examples and syntax page:
http://technet.microsoft.com/en-us/library/cc753551.aspx