This is an old question, but someone might find this helpful. This method worked for me using WinZip and the WinZip command-line add-on, which are available on the WinZip site for registered users.
FOR /R %I IN (*.zip) DO (C:\Program Files (x86)\winzip\wzunzip.exe -ye "%I" "%~pI")
-ye will indicate the folder after the zip file. % i is the name of the zip file% ~ pI is the destination of the contents of the zip file
Unable to add debug messages in previous answer. Run the command inside the folder where all your subfolders containing your zip files are stored.
source share