Forum Discussion
Debiora
Aug 22, 2025Iron Contributor
How to unzip multiple ZIP files and merge them into the same folder?
Hello, I need to compress 78 files in the image into a used folder, but I can't find a way to do this using Windows' built-in compression feature or 7-Zip.
Thank you for your answer. I appreciate your help because this is very important to me.
1 Reply
- GordonyIron Contributor
You can use PowerShell commands to unzip and merge them in bulk:
Get-ChildItem -Filter *.zip | ForEach-Object { Expand-Archive -Path $_.FullName -DestinationPath “target folder” -Force }