PDA

View Full Version : syntax to surpress overwrite warning


oldmanlat
01-14-2009, 11:32 AM
Hi
When I extract a file using the command line in XP, I want to automatically overwrite an existing file of the same name without the warning dialog box that pops up.
I can't seem to figure out the exact syntax.
I tried the following, but I still get the overwrite warning pop up.

jzip filename.zip/e/-eo c:\destfolder
jzip filename.zip/ e/-eo c:\destfolder
jzip filename.zip/e -eo c:\destfolder

Thanks.
Regards,
oldmanlat

oldmanlat
01-14-2009, 11:03 PM
Hi
I figured it out. The line below works to extract a zip file and overwrite existing destination automatically (without pop up options)

jzip -eo filename.zip c:\destfolder

oldmanlat