Skip to content

Instantly share code, notes, and snippets.

@aaronedev
Last active August 14, 2024 11:06
Show Gist options
  • Save aaronedev/c1d3013a2b4fe547c8c5e6f43f489997 to your computer and use it in GitHub Desktop.
Save aaronedev/c1d3013a2b4fe547c8c5e6f43f489997 to your computer and use it in GitHub Desktop.
zip all files in the current directory powershell
Get-ChildItem "." | ForEach-Object { Compress-Archive -path $_.Name -destinationPath "$($_.Name).zip"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment