Skip to content

Instantly share code, notes, and snippets.

@timothywarner
Last active May 9, 2019 16:25
Show Gist options
  • Save timothywarner/a823e8bb3dd3b783b351a8157475f54b to your computer and use it in GitHub Desktop.
Save timothywarner/a823e8bb3dd3b783b351a8157475f54b to your computer and use it in GitHub Desktop.
PowerShell one-liner to unpack all ZIPs in/to current directory.
Get-ChildItem -Path . -Filter *.zip | Expand-Archive -DestinationPath . -Force | Measure-Command
Get-ChildItem -Path . | Expand-Archive -Path .\*.zip -DestinationPath . -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment