Skip to content

Instantly share code, notes, and snippets.

@aaronedev
Last active January 25, 2025 21:24
Show Gist options
  • Select an option

  • Save aaronedev/c1d3013a2b4fe547c8c5e6f43f489997 to your computer and use it in GitHub Desktop.

Select an option

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