EduInmigrante Posted August 10, 2020 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
Your Friendly A.I Overlord Posted August 10, 2020 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
EduInmigrante Posted August 10, 2020 Author 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
Your Friendly A.I Overlord Posted August 10, 2020 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
EduInmigrante Posted August 11, 2020 Author 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
Your Friendly A.I Overlord Posted August 11, 2020 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
EduInmigrante Posted August 11, 2020 Author 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
davecham Posted February 16, 2021 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
orphen92 Posted March 18, 2021 Posted March 18, 2021 I need this scipt too can you share with us? Quote
runeblade Posted June 26, 2022 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
rye74 Posted March 13, 2023 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 3 Quote
marcosgaming Posted Wednesday at 02:54 PM Posted Wednesday at 02:54 PM (edited) Hi guys, i would do a conversion massive for all my bin files games PS2 into ISO files. Please help me! The script .bat not works for me. Thanks. Edited Wednesday at 02:54 PM by marcosgaming Quote
C-Beats Posted Wednesday at 03:10 PM Posted Wednesday at 03:10 PM 15 minutes ago, marcosgaming said: Hi guys, i would do a conversion massive for all my bin files games PS2 into ISO files. Please help me! The script .bat not works for me. Thanks. This post is pretty old, unless you have some very specific reason you don't want to or can't your PS2 games should be converted into CHD files at this point, not ISO. 1 Quote
marcosgaming Posted Wednesday at 03:14 PM Posted Wednesday at 03:14 PM 2 minutes ago, C-Beats said: This post is pretty old, unless you have some very specific reason you don't want to or can't your PS2 games should be converted into CHD files at this point, not ISO. Really, on LaunchBox all works perfectly, but i would play PS2 Games too on my PS2 FAT with grimdoomer OPL on my Hard Disk of 6TB dedicated only for PS2 games. And i need to convert all into ISO files. But are a lot of games, i can't do it one by one. Thanks. Quote
C-Beats Posted Wednesday at 03:58 PM Posted Wednesday at 03:58 PM Got ya, so you have a need specifically for ISO Quote
JoeViking245 Posted Wednesday at 04:31 PM Posted Wednesday at 04:31 PM 1 hour ago, marcosgaming said: Hi guys, i would do a conversion massive for all my bin files games PS2 into ISO files. Please help me! The script .bat not works for me. Thanks. Are all your games 1 .cue file and 1 .bin file? Or do some have more than 1 .bin file? Are you using the batch file that rye74 posted? Did you save the file as .bat file (make sure it's not filename.bat.txt) Does anything happening when you run it? If so, what? Or the PowerShell script that runeblade posted? Did you change the path that the .bin files are located in? Does anything happening when you run it? if so, what? Do you have PowerISO installed in your C:\Program Files\PowerISO\ folder? If it's located somewhere else, did you change the path in the batch file (or script, depending on exactly which one you used)? Quote
marcosgaming Posted Wednesday at 04:50 PM Posted Wednesday at 04:50 PM Hi, 1. My Games are 1 cue and 1 bin (or anytimes more bin, but more rare) 2. Yes i use this code in my case : $files = gci C:\Users\PC Mark\Desktop\PS2 Test\*.bin foreach ($file in $files) { Write-Host $file.Name -ForegroundColor Green $file2 = $file.Name -replace ".bin",".iso" $folder = "C:\Users\PC Mark\Desktop\PS2 Test\PS2ISO\" $null = & 'C:\Program Files\PowerISO\piso.exe' convert $file.FullName -o "$folder$file2" } I'm sure i use .bat (not .txt), in C:\Users\PC Mark\Desktop\PS2 Test\ i have many folders games title and inside there are Bin and Cue files... When i launch .bat nothing happening....ZERO! 4. Yes it's right dir of PowerISO and it's full versione registered. Thanks Quote
JoeViking245 Posted Wednesday at 05:01 PM Posted Wednesday at 05:01 PM 5 minutes ago, marcosgaming said: Yes i use this code in my case : K, that's the PowerShell script (vs. a batch file script) and needs to be saved as a .ps1 (vs. .bat) file. Then needs to be ran from PowerShell. Depending on your computer, you might/should be able to right-click the .ps1 file and select Run with PowerShell. 1 Quote
marcosgaming Posted Wednesday at 05:05 PM Posted Wednesday at 05:05 PM Ah sorry, i have tried it too just now. File.ps1 and Launch with Powershell but always nothing happening.... At you works ? Quote
JoeViking245 Posted Wednesday at 05:30 PM Posted Wednesday at 05:30 PM 7 minutes ago, marcosgaming said: Ah sorry, i have tried it too just now. File.ps1 and Launch with Powershell but always nothing happening.... At you works ? Try the batch file solution that rye74 posted above. Put the one line of code they show into a text file and save it as a .bat file. Then as stated, "place it in a folder with your bin files and run it". If it doesn't work, edit the .bat file, add a 2nd line and put in pause. Save and close. This way when the process part of the batch file is complete, the Command Window will stay open and you'll be able to the process, and/or any errors. 1 Quote
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.