Skip to content

Instantly share code, notes, and snippets.

@spitfire05
Created September 27, 2016 14:59
Show Gist options
  • Save spitfire05/befbebc11eb3296108640b7bd616ce05 to your computer and use it in GitHub Desktop.
Save spitfire05/befbebc11eb3296108640b7bd616ce05 to your computer and use it in GitHub Desktop.
Powershell snippet: extract zipfile (pure PS, no .net)
$shell_app=new-object -com shell.application
$zip_file = $shell_app.namespace($ZipPath)
$destination = $shell_app.namespace($DestinationPath)
$destination.Copyhere($zip_file.items())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment