Is there a 7-Zip command-line switch that prevents the filenames from echoing to the screen as they are added to the archive?
|
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.
|
Not built in, but if you add
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
in Linux and Unix systems. |
||||
|
|
|
7-Zip has no switch for this. If you are using PowerShell to call 7-Zip, you can redirect the output to null using
|
||||
|
|
|
AFAIK, there is not a switch for that, but you could hide the output redirecting it to a file, for example (DOS batch):
This way all the output ends in DumpFile.txt and not on the screen. |
|||
|
|
|
If it doesn't have one, you can still redirect the output using EditIn MS-DOS and |
|||||||
|
|
To avoid file names echoing on the screen and display only the confirmations, do:
|
|||
|
|