How would I Pipe in Skip or Overwrite All (Always) to the following code?
NB! the code recursively extracts archives with folders and sub-archives.
FOR /D /r %%F in ("*") DO (
pushd %CD%
cd %%F
FOR %%X in (*.rar *.zip) DO (
"C:\Program Files\7-zip\7z.exe" x "%%X"
)
popd
)
See below an example of the prompt: