I have a simple batch file as seen below that should extract a zip file to the root of E:. The zip file is valid and I can run the batch file from the command line just fine.

Instead of completing the task, it continues to inform me that the Status is "Running". The problem is, it is not running and the file never gets unzipped.

The task is running as a Domain Admin that has been specifically added as an Admin on the box.

Are there any known problems with using zip files in Scheduled Tasks. I actually have this same problem on 3 out of the 12 boxes this task runs on, but there is no rhyme nor reason as to why some servers work, and others don't.

Any ideas on how to debug what is going on, or a solution would be very helpful.

Here is the batch file I'm attempting to run.

SET RootPath=E:
SET WinzipLocation=E:\Program Files\WinZip

"%WinzipLocation%\winzip32" -e -o  %CD%\TestZipFile.zip %RootPath%
link|improve this question
feedback

4 Answers

what if you use 7-zip in command line?

link|improve this answer
Or any other tool capable of extracting a zip file. There are some available, see google.com/search?q=unzip.exe – 0xA3 Jun 12 '09 at 17:59
feedback

Try to use the WinZip Command Line Support Add-on.

link|improve this answer
feedback

when you run the call from a command line, how do you specify the environment variables that you define in your batch? further, what does %CD% resolve to when you run your batch on a 'good' server vs a 'bad' server?

link|improve this answer
feedback

I realized after posting that the "bad" servers were all 64-bit. I was running the 32-bit version of winzip. Since the company I work for doesn't see the benefit in purchasing any software, I had no other option but to starting using 7-zip. I have not tested for any performance increases or hits, but I do not that it works, regardless of the environment.

Thanks for the answers, but it looks like without the 64-bit version of winzip....i have no other options.

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.