Skip to content

Instantly share code, notes, and snippets.

@Delivator
Created April 2, 2020 14:24
Show Gist options
  • Save Delivator/c3926907dcb922d5ff75317d67ad5e21 to your computer and use it in GitHub Desktop.
Save Delivator/c3926907dcb922d5ff75317d67ad5e21 to your computer and use it in GitHub Desktop.
PS compress all directories in current directory
Get-ChildItem -Directory | ForEach-Object -Process {Compress-Archive -Path ".\$_\*" -DestinationPath ".\$_.zip"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment