extract zip file powershell code example
Example 1: powershell unzip file
Expand-Archive -LiteralPath C:\Archives\Invoices.Zip -DestinationPath C:\ InvoicesUnzipped
Example 2: how to extract .zip file from powershell
Expand-Archive [-Path] <string> [[-DestinationPath] <string>]