Remove known password from zip archive without extracting

is it possible to remove a known password from a ZIP archive without extracting the actual archive?

I have some heavily compressed archives and want to avoid having to extract and rezip each of those archives. The decompressing and recompressing would take a lot of time and I simply need the passwords removed (which I know) before I pass them on.

Cheers

2

1 Answer

It is not possible since the files are encrypted The files have to be decrypted.

If this is a one-time job, I suggest you put all these ZIP file in one directory, from the command line do a (assuming Windows) dir>doit.bat, then edit the batch file to unpack and pack everything from the command line.
Make sure you write your commands in such a way that the new file is created in another directory, so that the original one remains. If you use an editor with keyboard macros this is at most 15 minutes work. Test with the first two files in a separate batch file. If everything goes well, run the batch file.
Even if it takes two days to process all the ZIP files, who cares. If you have enough disk space and don't switch off your computer, you can do other things in the meantime.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like