Skip to content

Instantly share code, notes, and snippets.

@tcotav
Created July 22, 2013 22:48
Show Gist options
  • Save tcotav/6058400 to your computer and use it in GitHub Desktop.
Save tcotav/6058400 to your computer and use it in GitHub Desktop.
powershell only unzip (silent)
$shell_app=new-object -com shell.application
$filename = "vmwaretools.zip"
$zip_file = $shell_app.namespace((Get-Location).Path + "\$filename")
$destination = $shell_app.namespace((Get-Location).Path)
$destination.Copyhere($zip_file.items(), 20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment