Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a 7-Zip command-line switch that prevents the filenames from echoing to the screen as they are added to the archive?

share|improve this question
2  
Shouldn't this be on superuser ? – Ohad Schneider Mar 4 '10 at 23:54

closed as off topic by Peter Mortensen, Luc M, Lukas Knuth, Toby Allen, Frank Schmitt Apr 13 at 19:13

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

5 Answers

Not built in, but if you add

<7z command here> 2>&1 NUL

to the end of your command-line, it will redirect all the output into the null device and stops it echoing to the screen. This is the MS-DOS equivalent of

2>&1 /dev/null

in Linux and Unix systems.

share|improve this answer

7-Zip has no switch for this. If you are using PowerShell to call 7-Zip, you can redirect the output to null using Out-Null. For example,

C:\PS>my-create-7zip-function | out-null
share|improve this answer

AFAIK, there is not a switch for that, but you could hide the output redirecting it to a file, for example (DOS batch):

7z.exe ... normal parameters > DumpFile.txt

This way all the output ends in DumpFile.txt and not on the screen.

share|improve this answer

If it doesn't have one, you can still redirect the output using > into a file, then deleting the file afterwards. If you are on *nix, you can redirect into /dev/null.

Edit

In MS-DOS and cmd.exe you can redirect into NUL, instead of a file. Thanks to agnul for this hint.

share|improve this answer
On windows systems you can redirect to NUL (works in cmd.exe, doesn't in powershell). – agnul Sep 18 '08 at 15:43
Hey cool, didn't know that :) – freespace Sep 18 '08 at 15:44
in powershell you can pipe to out-null – Recursieve Mar 2 '12 at 10:31

To avoid file names echoing on the screen and display only the confirmations, do:

...\right_path\7z a output.zip folder_to_be_compressed | findstr /b /r /c:"\<Everything is Ok" /c:"\<Scanning" /c:"\<Creating archive"
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.