for /R %z in (*.zip) do unzip “%z”
The DOS for command can simplify a lot. The above example will iterate over a file (you can specify delimeters & variables) and carry out an opertion of each item found.
One I use a lot is;
for %f in (.dll,.ocx) do regsvr32 /u %f
Saves a lot of time.