Use powershell / 7za.exe to extract multiple zip files?
The following code
ls *.zip | % { c:\bin\7za.exe e $_ -o..\..\unzipped }
ls *.zip | % { c:\bin\7za.exe e $_.name -o..\..\unzipped }
received the following error messages. Is this a powershell call causing the exe file issue?
Error: Incorrect command line Error: Incorrect command line Error: Incorrect command line ....
+3
source to share
2 answers