Tuesday, December 8, 2009

List the files greater than given size using powershell

Below powershell code helps you to list the files which are greater than given size(2GB in this case) and output the file sizes in MB/GB format.


PS C:\local> Get-ChildItem -path c:\mydata\ -recursive | where  { ($_.Length /1GB) -gt 2 } | foreach { ($_.length/1GB).Tostring("0.00") }

Do write in comments section here if you need any charification.

1 comments:

Thomas Lee said...

I don't have your email so could not mail this. You have the address wrong: it's http://pshscripts.blogspot.com

Post a Comment