Search notes:

PowerShell cmdLet Expand-Archive

expand-archive extracts the files of a zip file.
expand-archive  foo.zip
expand-archive  foo.zip  p:\ath\to\dest\dir

Unsupported compression methods

If a zip file is compressed with certain compression methods (such as Deflate64), expand-archive cannot expand the zip file's content:
PS:> expand-archive .\some.zip
Expand-Archive : Exception calling "ExtractToFile" with "3" argument(s): "The archive entry was compressed using an unsupported compression method."

See also

compress-archive
My PowerShell module zip.
Powershell command noun: archive

Index