Skip to content

Instantly share code, notes, and snippets.

@charlwillia6
Last active October 4, 2019 14:16
Show Gist options
  • Save charlwillia6/42c4457222b1c525bbaaeb1901ebec8a to your computer and use it in GitHub Desktop.
Save charlwillia6/42c4457222b1c525bbaaeb1901ebec8a to your computer and use it in GitHub Desktop.
Powershell Snippets #ps #snippets
Get-ChildItem "C:\Path\To\Pics" -recurse | Where {-Not $_.PSIsContainer} | Rename-Item -NewName {$_.FullName.ToLower()}
"{0:N2}" -f ((Get-ChildItem -path C:\InsertPathHere -recurse | Measure-Object -property length -sum ).sum /1MB) + " MB"
Get-size C:\users\administrator
function Get-Size
{
param([string]$pth)
"{0:n2}" -f ((gci -path $pth -recurse | measure-object -property length -sum).sum /1mb) + " mb"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment