Thursday, June 7, 2018

Как найти большие файлы и сделать список из них.

Появилась задача, найти большие файлы и сделать их список, чтобы можно было показать руководству.

В просторах интернет нашел скрипт, немного его переделал под свои задачи и получается отличный отчет.



Скрипт на PowerShell, сохраняем в файл с расширение *.ps1, меняем пути на свои и размер файлов который нужно искать:

Set-ExecutionPolicy RemoteSigned
$path = "D:\"
$path_report = "D:\"
get-childitem $path  -Recurse | where { $_.Length -ge 1000MB } | select-object FullName, LastWriteTime, Length | export-csv -notypeinformation -path $path_report\files_list.csv | % {$_.Replace('"','')}



PS
https://code.adonline.id.au/script-to-list-files-by-type-and-size-export-to-excel/
https://stackoverflow.com/questions/3423100/batch-script-to-find-files-greater-than-10mb-in-d-drive-in-windows-xp
http://www.happysysadm.com/2012/06/powershell-oneliner-to-find-large-files.html
https://blogs.technet.microsoft.com/pstips/2017/05/20/display-friendly-file-sizes-in-powershell/















































No comments:

Post a Comment