Windows – Extract a certain file from an archive with 7-Zip from the command line

7-ziparchivingcommand lineextractwindows

If I have an archive, for example, some.zip that contains one or more files, how can I extract only one file (I know the name of the file) with 7-Zip from the command line in Windows?

Best Answer

You just add the filename at the end.

7z e [archive.zip] -o [outputdir] [fileFilter]
Related Question