Jump to content
LaunchBox Community Forums

Recommended Posts

Posted

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 :D

Posted (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 by Koroth
Posted
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

Posted

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.

Posted
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!

  • 6 months later...
Posted
On 8/11/2020 at 2:03 PM, EduInmigrante said:

image.thumb.png.95fe74ff4b3a33aeb4c0203c42c770ec.pngBat file done. wish me luck!

 

 

EDIT: WORKING :D
image.thumb.png.46c612473729fac16a11c4008e6750a4.png

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. :)

  • 1 month later...
  • 1 year later...
Posted (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 by runeblade
  • Like 1
  • 8 months later...
Posted (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 by rye74
  • Thanks 3
  • 2 years later...
Posted
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.

  • Thanks 1
Posted
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.

Posted
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.

  1. Are all your games 1 .cue file and 1 .bin file?  Or do some have more than 1 .bin file?
  2. Are you using the batch file that rye74 posted? 
    1. Did you save the file as .bat file (make sure it's not filename.bat.txt)
    2. Does anything happening when you run it?
    3. If so, what?
  3. Or the PowerShell script that runeblade posted?
    1. Did you change the path that the .bin files are located in?
    2. Does anything happening when you run it?
    3. if so, what?
  4. Do you have PowerISO installed in your C:\Program Files\PowerISO\ folder? 
    1. If it's located somewhere else, did you change the path in the batch file (or script, depending on exactly which one you used)?
Posted

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

 

Posted
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.

  • Thanks 1
Posted
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.

  • Like 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...