Created
September 27, 2016 14:59
-
-
Save spitfire05/befbebc11eb3296108640b7bd616ce05 to your computer and use it in GitHub Desktop.
Powershell snippet: extract zipfile (pure PS, no .net)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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