I need to run 7-Zip from a batch file and perform a few tasks, I was wondering if it was possible. Here is my situation:
I have a folder "X:/Archived Backups/" that contains archives and sub-directories with archives.
Some of these archives also contain further archives.
I need to recursively scan the directory and sub-directories and 7-Zip to extract each archive to a folder by the same name (archive name).
I also need it to extract archives within archives within archives etc.
Finally, I need it to delete the archives when extracted (this includes the archives within archives) and only leave the extracted folders.
Is this possible? If so is it possible from the command line? How would I do it?
Many Thanks :)