Not sure...but just try this:
- Open "mGalaxy v7.5\Data\BaseSystems\BaseSystems.xml" file with a text editor.
- Find this group of lines:
<System type="Computer">
<Name ss="" em="Microsoft_Windows" tgdb="PC" gb="94|PC">Microsoft [Applications]</Name>
<Emu selected="Application shortcut">
<Cmd hidden="false" name="Application shortcut" value="/C "%path\%file%ext"" extensions=".lnk"/>
<Cmd hidden="false" name="Application shortcut (force foreground) [Script]" value="/C "%path\%file%ext"" extensions=".lnk"/>
</Emu>
</System>
and add a new line that way:
<System type="Computer">
<Name ss="" em="Microsoft_Windows" tgdb="PC" gb="94|PC">Microsoft [Applications]</Name>
<Emu selected="Application shortcut">
<Cmd hidden="false" name="Application shortcut" value="/C "%path\%file%ext"" extensions=".lnk"/>
<Cmd hidden="false" name="Application shortcut (force foreground) [Script]" value="/C "%path\%file%ext"" extensions=".lnk"/>
<Cmd hidden="false" name="Bat files" value=""%path\%file%ext"" extensions=".bat"/>
</Emu>
</System>
- Save the file
- Open mGalaxy Runway and add a new "Microsoft [Applications]" system
- You should now find "Bat files" in the dropdown (to the left of the "Enable" checkbox)
- Set the Executable path to cmd.exe (C:\WINDOWS\system32)
- Set the rom folder to the folder containing all your .bat files
- Save, test..and report
PS: the line to add could be (as posted):
<Cmd hidden="false" name="Bat files" value=""%path\%file%ext"" extensions=".bat"/>
(the """ code being actually the double quote sign that will surround the "path/file.ext" line...to tell you everything)
OR
<Cmd hidden="false" name="Bat files" value="%path\%file%ext" extensions=".bat"/>