EduInmigrante Posted August 10, 2020 Share Posted August 10, 2020 Hi guys, i have like 1500 PS2 games 1bin and 1cue file for each game. Im using the software WinBin2Iso to convert my games to iso format. The problem is, i only can do one by one at time... Is there some tool to help me convert all BINs to ISO at the same time, or one by one but automatic? Thanks Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted August 10, 2020 Share Posted August 10, 2020 (edited) I know nothing of WinBin2Iso but allot of such programs can be executed via a batchfile. But if you have that many games may I suggest compressing them. That will save you allot of space. I use maxcso and can bulk compress them via a batchfile . But if I remember correctly maxcso recuires iso's to begin with. Edited August 10, 2020 by Koroth Quote Link to comment Share on other sites More sharing options...
EduInmigrante Posted August 10, 2020 Author Share Posted August 10, 2020 3 hours ago, Koroth said: I know nothing of WinBin2Iso but allot of such programs can be executed via a batchfile. But if you have that many games may I suggest compressing them. That will save you allot of space. I use maxcso and can bulk compress them via a batchfile . But if I remember correctly maxcso recuires iso's to begin with. No no no, i dont want to compress.. I want to avoid loading screen and i have a LOT of free space And the WinBon2Iso dont work with command lines. u.u Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted August 10, 2020 Share Posted August 10, 2020 Indeed I also did a search for WinBin2Iso and saw no command-line options. But I'm curious. If you have 1500 PS2 games, are they all in bin/cue? Because it is my understanding dat cd based PS2 games can be bin/cue, but DVD based games are usually in ISO. Also you are wrong about compression. Modern compression formats have streaming decompression. That means that only data requested by the emulator during gameplay is decompressed on the fly. Not the entire file before playing. Formats with an extension like .gz for PS2 and .CHD (originally MAME) but adopted by other emulators as well. E.g. RetroArch. Quote Link to comment Share on other sites More sharing options...
EduInmigrante Posted August 11, 2020 Author Share Posted August 11, 2020 9 hours ago, Koroth said: Indeed I also did a search for WinBin2Iso and saw no command-line options. But I'm curious. If you have 1500 PS2 games, are they all in bin/cue? Because it is my understanding dat cd based PS2 games can be bin/cue, but DVD based games are usually in ISO. Also you are wrong about compression. Modern compression formats have streaming decompression. That means that only data requested by the emulator during gameplay is decompressed on the fly. Not the entire file before playing. Formats with an extension like .gz for PS2 and .CHD (originally MAME) but adopted by other emulators as well. E.g. RetroArch. I have 1500+ games. 800+ are in .bin/.cue format, the other half is all in .iso format. And i repeat: Hard Drive space is not a problem for me! I want it all decompressed in iso! Quote Link to comment Share on other sites More sharing options...
Your Friendly A.I Overlord Posted August 11, 2020 Share Posted August 11, 2020 It appears PowerISO supports command-line arguments. O.k. it is payware but mayby is does what you want? https://poweriso.com/tutorials/command-line-argus.htm Quote Link to comment Share on other sites More sharing options...
EduInmigrante Posted August 11, 2020 Author Share Posted August 11, 2020 (edited) 4 hours ago, Koroth said: It appears PowerISO supports command-line arguments. O.k. it is payware but mayby is does what you want? https://poweriso.com/tutorials/command-line-argus.htm Bat file done. wish me luck! EDIT: WORKING Edited August 11, 2020 by EduInmigrante 1 Quote Link to comment Share on other sites More sharing options...
davecham Posted February 16, 2021 Share Posted February 16, 2021 On 8/11/2020 at 2:03 PM, EduInmigrante said: Bat file done. wish me luck! EDIT: WORKING Hi EduInmigrante, This is awesome. I have powerISO installed and have a bunch of PS2 Bin/Cue files id like to automatically convert. Could you please help me out and advise me what I need to do to to make a bat file work. I have no idea about bat files what so ever. :) Quote Link to comment Share on other sites More sharing options...
orphen92 Posted March 18, 2021 Share Posted March 18, 2021 I need this scipt too can you share with us? Quote Link to comment Share on other sites More sharing options...
runeblade Posted June 26, 2022 Share Posted June 26, 2022 (edited) Simple PowerShell script to use would be this: $files = gci c:\temp\BIN *.bin foreach ($file in $files) { Write-Host $file.Name -ForegroundColor Green $file2 = $file.Name -replace ".bin",".iso" $folder = "C:\TEMP\PS2ISO\" $null = & 'C:\Program Files\PowerISO\piso.exe' convert $file.FullName -o "$folder$file2" } it's using the 64-bit version of powerISO, change to 32-bit accordingly if that's what you have installed. It will convert BIN files in the c:\temp\BIN to ISO files in the folder c:\temp\ISO Edited June 26, 2022 by runeblade 1 Quote Link to comment Share on other sites More sharing options...
rye74 Posted March 13, 2023 Share Posted March 13, 2023 (edited) i couldnt get that powershell script to work (granted i dont know powershell at all) . this is what i did. put this in a .bat file, place it in a folder with your bin files and run it. for %%f in (*.bin) do ("C:\Program Files\PowerISO\piso.exe" convert "%%f" -o "%%~nf.iso") Edited March 13, 2023 by rye74 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.