Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

Is there any simple & freeware program to fix corrupted zip files for windows platform ? I've lot of corrupted zip files and would like to recover some of the files from it

share|improve this question
Have you tried with a variety of unzippers? Maybe 7zip can do it if built in windows can't... – outsideblasts Oct 10 '09 at 7:08
7zip doesn't have the option to fix the corrupted zip – TuxGeek Oct 10 '09 at 10:41

2 Answers

up vote 3 down vote accepted

WinRar repairs damaged archives.

WinRar is shareware, but available as an unlimited trial (if you don't register and pay, the program simply "nags", it doesn't stop working).

There's also DiskInternals ZIP Repair

DiskInternals ZIP Repair has built-in extraction features that allow it to extract partially damaged and restored files.

alt text

share|improve this answer
Ya , This is cool . But does it have batch repair feature ? – TuxGeek Oct 10 '09 at 15:47
Doesn't look that way. I don't know any such tool. – harrymc Oct 10 '09 at 17:12

I have no idea if it is available on windows, but you did ask for an open source answer (that's probably available under cygwin though).

You might use the zip command itself (at least under linux):

If only some bits are missing (incomplete download):

zip -F your_corrupted_zip_file.zip

If the archive's data is damaged (wrong data) (this command is less reliable):

zip -FF your_corrupted_zip_file.zip
share|improve this answer
Info-Zip' zip command also has a Windows version, no need to use cygwin. They even have an Amiga binary... – sleske Jan 6 '10 at 11:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.