We are testing download an unzip of multiple files. Commands very similar to the ones shows are executed from a batch file (called from SSIS)

C:\Progra~1\WinZip\WINZIP32.EXE -min -e -o -j C:\TEMP\ZipTest\x1.zip C:\TEMP\ZipTest\Z1
C:\Progra~1\WinZip\WINZIP32.EXE -min -e -o -j C:\TEMP\ZipTest\x2.zip C:\TEMP\ZipTest\Z2
C:\Progra~1\WinZip\WINZIP32.EXE -min -e -o -j C:\TEMP\ZipTest\x3.zip C:\TEMP\ZipTest\Z3
C:\Progra~1\WinZip\WINZIP32.EXE -min -e -o -j C:\TEMP\ZipTest\x4.zip C:\TEMP\ZipTest\Z4

Unfortunately, after it is done unzipping, four Explorer windows opens up (one for each archive).

enter image description here

While it is easy to close these windows when it runs on my desktop, I cannot close any windows down that open up under the SSIS account.

How do I prevent these windows from opening up?

link|improve this question

65% accept rate
feedback

3 Answers

up vote 2 down vote accepted

That is probably a setting in winzip GUI. There is a separate command line version that might pan out better but it is available with licensed versions only.

You might want to consider some free command line unzip utilities, if you are not using one of the proprietary winzip compression.

link|improve this answer
Winzip is the only compression utility set up on our servers. :( – Raj More Oct 12 '11 at 14:24
Can you not bundle one of the alternatives with your app? I have seen lot of apps to that, and most of the free ones will allow you to redistribute. – Miserable Variable Oct 12 '11 at 14:32
It's not a .Net app - it's an SSIS package. I guess I could use C# inside the script component. – Raj More Oct 12 '11 at 17:56
feedback

We use the WinZip command line utilities wzzip.exe and wzunzip.exe for just that reason.

I'll bet the server admins will be happy to install wzzip and wzunzip once you explain that the alternative is for them to keep logging onto the box and closing WinZip windows :-)

link|improve this answer
feedback

Use the command line utilities as others have mentioned, or use a third party unzip component like the one available in cozyroc's tools.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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