Skip to content

Extract password protected zip file

Problem

Sometimes decompressing password protected zip file with unzip failed with the following prompt

unsupported compression method 99

MacOS

On MacOS, could install p7zip with brew

brew install p7zip

Linux

On Linux Debian/Ubuntu

sudo apt-get install p7zip-full

and retry with 7z command

7z x archive.zip -pYOURPASSWORD
Feedback