Skip to content

Instantly share code, notes, and snippets.

@sharif0777
Forked from stefanteixeira/ UnzipFile.ps1
Created May 30, 2017 06:39
Show Gist options
  • Save sharif0777/3573d3fbc1986c1c54d7a59a2ca3a7a2 to your computer and use it in GitHub Desktop.
Save sharif0777/3573d3fbc1986c1c54d7a59a2ca3a7a2 to your computer and use it in GitHub Desktop.
$file = "C:\Path\To\Your\File.zip"
$destination = "C:\DestinationPath"
Add-Type -assembly "system.io.compression.filesystem"
[io.compression.zipfile]::ExtractToDirectory($file, $destination)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment