I have multiple .zip files which I want to unzip by a script. After a short research. I have this script:
for /R "C:\root\folder" %%I in ("*.zip") do (
"%ProgramFiles(x86)%\7-Zip\7z.exe" x -y -o"%%~dpI" "%%~fI"
)
The problem is, that it only unzips the files into the same folder. I have a designated folder for the unzipped files, can't get the script to move the files into that folder. Anyone has an idea what I need to add to this script?