add password to existing zip file with 7zip

Is it possible to add a password to an existing zipfile with 7zip without going to all the trouble of unpacking it and re-packing it again?

3

4 Answers

By nature if you want the file to be encrypted, it needs to be unpacked and repacked, since the whole archive needs to be encrypted with the password.

5

Would it work for you to zip the zip file? Use no/low compression and encrypt the original zip file. Its a lot quicker than repacking the original files.

Yes, you can do it with 7-Zip, following below steps without doing any extract and repacking

  1. Right click files you want to add to zip
  2. 7-Zip -> Add to archive...
  3. New window opens with default name for new zip file.
  4. Next to that drop down box, there is a square button with three dots over it (Browse)
  5. Select existing zip file into which you want to add files
  6. Over already open window, Right-Bottom there is 'Encryption' block, with text boxes to input intended password, give inputs there
  7. Click OK
  8. Congrats
2

You can password-protect an existing ZIP file with zipcloak.

EDIT: T. Furukawa crafted a patch for zipcloak that adds a password option, so batch processing is much easier: C:\>for %f in (*.zip) do zipcloak -p password %f.

If you prefer a GUI, both WinRAR and PeaZip can batch encrypt existing archives.

  • In WinRAR: Select ZIP files > Tools > Convert archives > Compression... > Set password...

  • In PeaZip: Select ZIP files > Convert > Enter password / keyfile (optionally set algorithm to ZipCrypto under the Advanced tab for compatibility with Windows' built-in ZIP handling)

2

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