Difference between revisions of "Command line search for large files"
From Tech-Wiki
(Created page with " forfiles /p C:\location /s /m *.* /c "cmd /c if @fsize gtr 10000000 echo @file"") |
|||
Line 1: | Line 1: | ||
+ | [[Category:Microsoft]] | ||
forfiles /p C:\location /s /m *.* /c "cmd /c if @fsize gtr 10000000 echo @file" | forfiles /p C:\location /s /m *.* /c "cmd /c if @fsize gtr 10000000 echo @file" |
Revision as of 02:50, 8 August 2016
forfiles /p C:\location /s /m *.* /c "cmd /c if @fsize gtr 10000000 echo @file"