Skip to content

Instantly share code, notes, and snippets.

@EinPinsel
Created March 16, 2017 13:09
Show Gist options
  • Save EinPinsel/ba70eaea70ecbf3db2d5bb247c62dc85 to your computer and use it in GitHub Desktop.
Save EinPinsel/ba70eaea70ecbf3db2d5bb247c62dc85 to your computer and use it in GitHub Desktop.
function Unzip
{
param([string]$zipfile, [string]$outpath)
[System.IO.Compression.ZipFile]::ExtractToDirectory($zipfile, $outpath)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment