Ich weiß wirklich nicht, ob Sie es mit Batch machen können (selbst wenn Sie könnten, glaube ich, wird dies Ihr Problem unnötig komplizieren). Meine Lösung wäre, in Python zu programmieren ( http://www.python.org/download/ ). Ich kann dir ein paar Hinweise geben. Um den Inhalt zu extrahieren:
import zipfile a = zipfile.ZipFile("C:\\x.zip", 'r') for i in a.namelist(): #Extract every file from it b = open("C:\\"+i, 'wb') b.write(a.read(i)) #HERE YOU INSERT WHAT YOU WANT TO DO TO EACH FILE (b is the last file) b.close() a.close()
Ich weiß, dass das nicht Stackoverfliow ist, aber nur so sehe ich das gut :)