Skip to content

Instantly share code, notes, and snippets.

@tcotav
Created July 22, 2013 23:35
Show Gist options
  • Save tcotav/6058645 to your computer and use it in GitHub Desktop.
Save tcotav/6058645 to your computer and use it in GitHub Desktop.
$shell = new-object -com shell.application
$zip = $shell.NameSpace(“C:\howtogeeksite.zip”)
foreach($item in $zip.items())
{
$shell.Namespace(“C:\temp\howtogeek”).copyhere($item)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment