Windows command-line utility for list largest files exceeding specific size in sub-directories
forfiles /P D:\ /M *.* /S /D +"02/21/2016" /C "cmd /c if @fsize gtr 209715200 echo @path @fsize @fdate @ftime"
Previous command will scan D:\ and its sub-directories, look for all files whose last modified dates are greater than “21-FEB-2016” and whose sizes are greater than or equal to 200MB, then print their details.
forfiles is included on Windows Servers.
If you don’t have on your Windows system, you can extract it from the “Windows Server 2003 Resource Kit” download at http://www.microsoft.com/download/en/details.aspx?id=17657