I tried to use the xiso to HDD script but it was just failing all the time on random games. I've had to give up on the idea of running xiso files directly off the Xbox. Plan B is to extract the xiso files but I can only do it one at a time. Is there a way to do it in a batch. If so how?
Thanks in advance.
Extract .xiso in batches
- Dan Dar3
- Posts: 1176
- Joined: Sun Jul 08, 2012 4:09 pm
- Has thanked: 273 times
- Been thanked: 257 times
- Contact:
Re: Extract .xiso in batches
I don't use xiso games but just trying to help if I can.
When you want to extract the xiso files in batch mode do you mean that you have a directory with a number of xiso's and you don't want to have to extract them manually one by one and you would like to have a script or command that extracts each of them in a directory with the same name?
Something like this (for Windows):
What it basically does is go to where you keep your archives, filter by extension and then call extract-iso tool to extract say "x.iso" into a "x" sub-directory.
When you want to extract the xiso files in batch mode do you mean that you have a directory with a number of xiso's and you don't want to have to extract them manually one by one and you would like to have a script or command that extracts each of them in a directory with the same name?
Something like this (for Windows):
Code: Select all
cd c:\xisos
for %i in (*.iso) do (
extract-xiso "%i" -d "%~ni"
)
- App(s): XBMC4Xbox Remote for Android | Plugin(s): XBMC4Xbox Installer
- Please donate to XBMC4Xbox project to keep it going, every little helps!
- Join us on TeamSpeak
Re: Extract .xiso in batches
Cheers mate. Really appreciate the help.Dan Dar3 wrote: ↑Tue May 24, 2022 12:15 pm I don't use xiso games but just trying to help if I can.
When you want to extract the xiso files in batch mode do you mean that you have a directory with a number of xiso's and you don't want to have to extract them manually one by one and you would like to have a script or command that extracts each of them in a directory with the same name?
Something like this (for Windows):What it basically does is go to where you keep your archives, filter by extension and then call extract-iso tool to extract say "x.iso" into a "x" sub-directory.Code: Select all
cd c:\xisos for %i in (*.iso) do ( extract-xiso "%i" -d "%~ni" )
- Dan Dar3
- Posts: 1176
- Joined: Sun Jul 08, 2012 4:09 pm
- Has thanked: 273 times
- Been thanked: 257 times
- Contact:
Re: Extract .xiso in batches
Great, glad it's what you needed
PS: That code should run unchanged if you want to paste it in a command line console.
But if you want to store that as a .bat / .cmd script keep in mind to double the percentage (%) signs everywhere, e.g. `%i` becomes `%%i`.

PS: That code should run unchanged if you want to paste it in a command line console.
But if you want to store that as a .bat / .cmd script keep in mind to double the percentage (%) signs everywhere, e.g. `%i` becomes `%%i`.
- App(s): XBMC4Xbox Remote for Android | Plugin(s): XBMC4Xbox Installer
- Please donate to XBMC4Xbox project to keep it going, every little helps!
- Join us on TeamSpeak