First post, by proguru
Hi. I'm looking for help using batch scripting in DOSBox.
I have an old DOS program that does data conversion on files. I have used a batch script to run the conversion command for all files in a folder:
FOR %%i in (*.DAT) DO PROGRAM.EXE %%i %%i.NEW
Now, when we have finally moved to Windows 7 (64bit) and old 16bit DOS programs don't work anymore, I thought that DOSBox could be the savior. Unfortunately, it seems DOSBox doesn't understand most of the DOS commands, e.g. FOR.
My old DOS program works in DOSBox, but how can I run a script to do something to all files?