Advertisement
Nom1fan

Extract multiple muiti-part archives at once

Feb 4th, 2024 (edited)
1,114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. REM Copy all multi-part archive files in current dir into dest
  2. for /r %i in (*.rar *.r*) do copy "%i" "..\dest\"
  3. REM Then extract all of them at once
  4. for %i in (*.r00") do "C:\Program Files\WinRAR\unRAR.exe" x %i
  5.  
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement