Skip to content

Instantly share code, notes, and snippets.

@nicoddemus
Created April 7, 2017 18:27
Show Gist options
  • Save nicoddemus/e43caec3616973578a221f0b185b943a to your computer and use it in GitHub Desktop.
Save nicoddemus/e43caec3616973578a221f0b185b943a to your computer and use it in GitHub Desktop.
Remove directory recursively measuring time in powershell
param(
[string]
$Directory
)
Measure-Command { Remove-Item -Recurse -Force $Directory }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment