views:

156

answers:

1

Is there a 7zip or winzip command to use so that the compression avoids thumbs.db files?

+2  A: 

For 7zip,-x is the file exclusion option switch.

7z.exe a test.7z C:test* -r -x!thumbs.db

See Excluding Files at the following link.

jschmier