Skip to content

Instantly share code, notes, and snippets.

@rysstad
Created June 3, 2014 07:51
Show Gist options
  • Save rysstad/121c98a1cd41423a6d26 to your computer and use it in GitHub Desktop.
Save rysstad/121c98a1cd41423a6d26 to your computer and use it in GitHub Desktop.
Show files with filesize in Mb
Get-ChildItem | Select-Object Name,LastWriteTime,@{Name="Size Mb"; Expression = {[math]::round($_.Length /1Mb, 2)}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment