Computer Hope

Microsoft => Microsoft Windows => Windows Vista and 7 => Topic started by: JOhnathan.Pierce on April 09, 2013, 12:44:07 PM

Title: Batch file help needed ASAP :(
Post by: JOhnathan.Pierce on April 09, 2013, 12:44:07 PM
I will try to explain this as best as I can. Basically what I am looking for is a batch file that I can automate that will take a zip file and extract it to a different folder.

Example -

C:\Blah\happy\today.zip  <----- I want to have the batch file extract this zip file to C:\Blah\ using a batch file. Please tell if this is possible and how.

Thank you!!

Title: Re: Batch file help needed ASAP :(
Post by: DaveLembke on April 09, 2013, 12:58:37 PM
This can easily be achieved using pkunzip in command line of dos shell, as long as the zip file is not password protected.

http://www.unt.edu/rss/docs/zip.htm (http://www.unt.edu/rss/docs/zip.htm)
Title: Re: Batch file help needed ASAP :(
Post by: JOhnathan.Pierce on April 09, 2013, 01:47:57 PM
Perfect. Thank you.