Answers for "powershell 2 unzip"

1

powershell unzip file

Expand-Archive -LiteralPath C:ArchivesInvoices.Zip -DestinationPath C: InvoicesUnzipped
Posted by: Guest on November-18-2020
0

powershell unzip multiple files

Get-ChildItem 'zipped path here' -Filter *.zip | Expand-Archive -DestinationPath 'path to extracted here' -Force
Posted by: Guest on September-07-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language