Extracting a 7-Zip file “silently” – command line option
I just came across this when searching for the same, but I solved it myself! Assuming the command is processed with Windows / DOS, a simpler solution is to change your command to: 7z.exe -o some_dir x some_archive.7z > nul That is, direct the output to a null file rather than the screen. Or you … Read more