Unpack a zip-archive using PowerShell

Add-Type -Assembly "System.IO.Compression.FileSystem"
[System.IO.Compression.ZipFile]::ExtractToDirectory(($pwd).path + "archive.zip", ($pwd).path)