Hi, I always get these big files that extract into 001,002 etc. then I have to extract them to get the original file. I am wondering if there is a way to avoid the middle step and have winrar extract the original file in one shot (basically doing the middle step of extracting 001 and 002s in a temp folder somewhere). Any ideas?
hahaha.. what is the middle file.. is it an iso by any chance.. because every time I see winrar installed it is wrongly associated with .iso files.
so it has been packed into a multi part archive twice?? that doesn't make much sense... Anyway I thought about your problem and I have a solution, but it doesn't save any work because you will have to edit the .bat file you create every time you have an archive which is named differently.. unless you get crafty.. Lets do it.. Open notepad (not word or wordpad) make a new file with these contents.. Code: start /b /wait cmd /c C:\path\to\winrar\winrar.exe *.*r > big.rar start /b /wait cmd /c C:\path\to\winrar\winrar.exe big.rar And then save and rename unrar.bat When you want to run it copy it into the directory containing your rar archive and double click on it. It should unpack a multi part rar archive then unpack the resulting big rar file created. Hope you know something about batch files... you need the full path to winrar.exe (usually C:\program files\winrar\winrar.exe) and my dos batch file building is a little rusty. I haven't done any batch file creation from scratch in more years than I care to think about Please note::.. I haven't ever done this with winrar.. only the dos version of rar.. so it may be buggy or not work at all.