Skip to content

Instantly share code, notes, and snippets.

@a5ync
Last active April 20, 2016 00:19
Show Gist options
  • Save a5ync/29329752e247d881a9f8b98591215451 to your computer and use it in GitHub Desktop.
Save a5ync/29329752e247d881a9f8b98591215451 to your computer and use it in GitHub Desktop.
Create/Extract an archive
$source = ".\img"
$destination = ".\deploy_" +[DateTime]::Now.ToString("yyyyMMdd-HHmmss")+".zip"
#compress
If(Test-path $destination) {Remove-item $destination}
Add-Type -assembly "system.io.compression.filesystem"
[io.compression.zipfile]::CreateFromDirectory($Source, $destination)
#extract
Expand-Archive $destination -dest .\test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment